Answers for "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"

4

flutter You uploaded an APK or Android App Bundle that was signed in debug mode

buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig signingConfigs.release
        }
    }
    // FLUTTER CLEAN AFTER THE EDIT
Posted by: Guest on March-07-2020
0

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

This option can be updated only at time of app creation and first realease 
1. Firstly you need to change the "App signing preference"
2. Select "Export and upload key from java keystore"
3. Follow steps mentioned there and get keystore.zip
4. after uploading this zip and try again. Now key will be accepted!

Some links helped:
https://stackoverflow.com/questions/54314838/googleplay-wrong-signing-key-for-app-bundle
https://confluence.atlassian.com/doc/setting-the-java_home-variable-in-windows-8895.html
https://medium.com/@the_manifest/how-to-publish-an-app-on-google-play-a-step-by-step-guide-80f9f533e370
Posted by: Guest on May-19-2021
0

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:

Keystore name: "debug.keystore"
Keystore password: "android"
Key alias: "androiddebugkey"
Key password: "android"
CN: "CN=Android Debug,O=Android,C=US"
Posted by: Guest on September-07-2021

Code answers related to "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"

Browse Popular Code Answers by Language