Skip to content

Instantly share code, notes, and snippets.

View ErrorxCode's full-sized avatar
👋
Open for freelancing

Rahil ErrorxCode

👋
Open for freelancing
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;