Android Error Building Signed APK: keystore.jks not found for signing config 'externalOverride'

后端 未结 10 1936
南旧
南旧 2021-02-01 00:18

I get this error when I try to Build Signed APK. I recently upgraded to API 23 but Generated APK:s successfully after that. Im confused. Asking for help and advise how to solve

10条回答
  •  温柔的废话
    2021-02-01 00:56

    For people that have tried above,try generating the key with the -keypass and -storepass options as I was only inputting one of the passwords when running it like the React Native docs have you. This caused it to error out when trying to build.

    keytool -keypass PASSWORD1 -storepass PASSWORD2 -genkeypair -v -keystore release2.keystore -alias release2 -keyalg RSA -keysize 2048 -validity 10000

提交回复
热议问题