How to find signature of apk file?

前端 未结 4 500
长发绾君心
长发绾君心 2021-02-08 09:31

What\'s the easiest way to find signature of an apk file? Please note that I\'m not asking about code. I just want to find it from my pc. Signature like this one 975yYkKAQF+KST7

4条回答
  •  悲哀的现实
    2021-02-08 10:06

    You can use Java 7’s Key and Certificate Management Tool ( keytool) to get the signature of app. Run bellow command

    keytool -printcert -jarfile app-release.apk
    

    You can also get Signature of a Keystore please check this post: How we can check SHA1 or Signature of APK and Keystore file

提交回复
热议问题