更新播放商店中显示Upload错误的react本机应用程序时



我正在尝试更新应用商店中的react本机应用程序,我收到了错误。

Upload failed
You uploaded an APK that is not signed with the upload certificate. You must use the same certificate. The upload certificate has fingerprint:
[ SHA1: EC:FB:46:37:C6:31:90:55:65:F6:46:E4:61:8E:EA:5A:88:0D:72:02 ]
and the certificate used to sign the APK you uploaded have fingerprint:
[ SHA1: 5A:4B:97:7A:BA:FD:B5:E5:C0:A5:4A:16:BF:78:E3:9E:EB:2F:8D:CC ]

Screnshot 错误

此错误是因为您使用了错误的密钥库。

我认为在你的情况下,你第一次使用第一密钥库签署apk,并尝试将其上传到商店。

第二次,当您签署apk时,您将使用先前使用的另一个密钥库(新密钥库(。

这就是出现此错误的原因。

要解决这个问题,您必须使用您在生成sign-apk时第一次使用的keystore。

相关内容

最新更新