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
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.