Skip to content

Instantly share code, notes, and snippets.

View shubhamp98's full-sized avatar
🏠
Working from home

Shubham Pandey shubhamp98

🏠
Working from home
View GitHub Profile
@shubhamp98
shubhamp98 / AppSignatureHelper.java
Created October 7, 2021 15:49
Helper class in Java to Generate hash signature for Android Project Package
import android.content.Context;
import android.content.ContextWrapper;
import android.content.pm.PackageManager;
import android.content.pm.Signature;
import android.os.Build;
import android.util.Base64;
import android.util.Log;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;