How do I find out which keystore was used to sign an app?

前端 未结 6 2049
无人及你
无人及你 2020-11-22 15:47

I have an app which is signed and several keystore files. I\'d like to update the app, so I need to find out which one of keys was used.

How can I match which keysto

6条回答
  •  一整个雨季
    2020-11-22 16:25

    Much easier way to view the signing certificate:

    jarsigner.exe -verbose -verify -certs myapk.apk
    

    This will only show the DN, so if you have two certs with the same DN, you might have to compare by fingerprint.

提交回复
热议问题