Reputation: 332
i've a problem with android certificate. We have published a build to one organisation with the debug certificate using jenkins. Now im facing the following issues:
Please help.
Upvotes: 0
Views: 184
Reputation: 926
1,
There is CERT.RSA
file in APK's META-INF
folder, unzip it, and use keytool to check the fingerprint of the certificate:
keytool -printcert -file your-path\CERT.RSA
Every keystore has it's own fingerprint, so it can used to distinguish keystores.
keytool is included in JDK.
2, Upgrade a package with different certificate is definitely not allowed by Android.
Upvotes: 1
Reputation: 2664
You can not do that - upgrade is only possible if certificates match.
Upvotes: 1