Click here to Skip to main content
15,896,269 members

Comments by Member 14124862 (Top 1 by date)

Member 14124862 28-Jan-19 5:14am View    
The normal way to verify the signature.

PackageManager pm = ctx.getPackageManager();
(PackageInfo packageInfo = pm.getPackageInfo(ctx.getPackageName(),
PackageManager.GET_SIGNATURES);)

in case of APK is not working as it returns only the application's signature and not the signature I signed my library with. Is there a way to do this?