Home > front end >  Your Android App Bundle is signed with the wrong key. This is an existing games developer in Unity
Your Android App Bundle is signed with the wrong key. This is an existing games developer in Unity

Time:12-07

I have an existing games app in google play store and I am going to release a anew version of that app. When I create a new release it shows the error like

Your Android App Bundle is signed with the wrong key. Ensure that your App Bundle is signed with the correct signing key and try again. Your App Bundle is expected to be signed with the certificate with fingerprint:

SHA1: 15:48:F3:41:.......................... but the certificate used to sign the App Bundle you uploaded has fingerprint: SHA1: 61:B2:02:................................

Any suggestion what should I do now?

CodePudding user response:

Are you sure that using the same key? If no, try to fill this form from Google help.

https://support.google.com/googleplay/android-developer/contact/key?hl=en

CodePudding user response:

It sounds like you are trying to upload an Android App Bundle (AAB) to the Google Play Store, but the AAB is signed with the wrong key. To fix this, you will need to sign the AAB with the correct key and try again.

Here are the steps you can follow to sign your AAB with the correct key:

Make sure you have the correct signing key (e.g. the key with fingerprint SHA1: 15:48:F3:41:...) If you don't have the correct key, you will need to generate a new key and use that to sign your AAB. Once you have the correct key, you can use it to sign your AAB using the jarsigner tool. You can find instructions on how to use this tool here: https://developer.android.com/studio/publish/app-signing#sign-manually After signing your AAB with the correct key, try uploading it to the Google Play Store again.

  • Related