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

后端 未结 11 1920
清歌不尽
清歌不尽 2020-12-01 23:20

How do I sign my android app bundle with the correct signing key?

11条回答
  •  死守一世寂寞
    2020-12-02 00:04

    For those who have released apk without a manually generated keystore and facing this issue when trying to release the apk or bundle from a different machine, follow the below steps:

    1. Copy debug.keystore (C:\Users\username\.android\debug.keystore) from the machine which used to build the first version of the App

    2. Select Build > Generate Signed Bundle/APK

    3. Provide the Key store path to the debug.keystore file

    4. Fill the other fields with the default values mentioned below and build

    Keystore name: "debug.keystore"
    Keystore password: "android"
    Key alias: "androiddebugkey"
    Key password: "android"
    CN: "CN=Android Debug,O=Android,C=US"
    

提交回复
热议问题