0

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

Kumar
  • 1,207
  • 2
  • 16
  • 50

1 Answers1

2

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:


My Old Apk Keystore was Wrong, So only solution Need to change the package name in New APK. then UnPublish the Old APK?

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)

Using that Keystore File can we generate SIgned Apk from any Other machine ?

  • yes, you can use that key store file on different machine. just choose that key store file whenever generate new APK.
Community
  • 1
  • 1
Dhaval Parmar
  • 18,175
  • 7
  • 77
  • 170
  • Thanks for your Answer! My Old Apk Keystore was Wrong, So only solution Need to change the package name in New APK. then UnPublish the Old APK? – Kumar Dec 01 '15 at 11:04
  • 2
    yes, 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) – Dhaval Parmar Dec 01 '15 at 11:12
  • Thank you friend. one more i want know ,Using that Keystore File can we generate SIgned Apk from any Other machine ? – Kumar Dec 01 '15 at 11:20
  • Thanks for Reply Friend :) – Kumar Dec 01 '15 at 12:02