Check SHA1 from Google android APK

Aneh Thakur
TrinityTuts
Published in
1 min readOct 14, 2020

Here is a simple and most useful technique to check the SHA1 key of your signed APK or you can also check the Signature of your Keystore file using keytool of JAVA.

Check Signature of signed or debug APK

keytool -printcert -jarfile app-release.apk

Check Signature of Keytool

keytool -list -v -keystore {my-app.keystore} -alias {my-app}

You can read the complete post on:- How to get SHA1 of signed APK

Thanks.

--

--