Reputation: 979
I already published my application in Play store, Again i want to Upload new version apk, its getting Problem.
i want to delete previous version apk or i want replace with new APK.
Problem : 1.After 99% Loading its Showing error message as,
Upload new APK to Production Upload failed
You uploaded an APK that is signed with a different certificate to your previous APKs. You must use the same certificate. Your existing APKs are signed with the certificate(s) with fingerprint(s):
[ SHA1: 5B:68:A1:1E:89:F5:CD:B2:t1:6H:85:D1:8C:FD:01:]
and the certificate(s) used to sign the APK you uploaded have fingerprint(s):
[ SHA1: DB:BD:FE:53:2C:AA:JB:12:7L:BE:D6:6B:80:D6:E5: ]
Please any one help me to solve this problem.
else i want to delete previous version apk and i want replace with new APK
Upvotes: 0
Views: 3065
Reputation: 18978
when upload app on Google play we need signed APK file. check this at that time we have to use on key store file.
so, once upload signed APK on Google play with key store. we must have to use that same keystore file whenever generate signed apk, after that Google play accept new APK file.
so, your already uploaded APK file and new APK both are generated using different key store file. use same key store for new apk.
in case you lost key store file then you are not able to upload new APK on Google play, in that case you have to remove application from there and again upload app with different package name.
check my previous answer on this
Edit:
you must have to delete application on Google play not just apk. then add new application on google play, change package name of your app, generate new signed apk, upload on google play(this time just save key store file at safe place for future uses)
Upvotes: 2