`创建了一个新密钥(android/app/upload-keystore.jks),我应该怎么做才能在Google Play控制台中更改它?
因为我丢失了新密钥(不小心删除了),所以没有副本........
终端:
flutter build appbundle --no-tree-shake-icons
字符串
Play Console where you need to download appbudne(new release):Android App Bundle is signed with a wrong key. Select correct key and try again. App Bundle must be signed with a digital fingerprint certificate SHA1:2B:54:9 F:A5.......然而,下载的App Bundle使用数字指纹证书SHA1:9 B:54:85:D9.....
keytool -list -v -keystore upload-keystore.jks -alias upload
型
SHA1:9B:54:85:D9.
Play Console where you need to download appbudne:Android App Bundle is signed with a wrong key. Select correct key and try again. App Bundle must be signed with a digital fingerprint certificate SHA1:2B:54:9 F:A5.......然而,下载的App Bundle使用数字指纹证书SHA1:9 B:54:85:D9.....
验证码:
第一个月
android {signingConfigs {release {keyAlias keystoreProperties['keyAlias']keyPassword keystoreProperties['keyPassword']storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : nullstorePassword keystoreProperties['storePassword']}}
buildTypes {release {signingConfig signingConfigs.release}}
storePassword=<password-from-previous-step>
keyPassword=<password-from-previous-step>
keyAlias=uploadstoreFile=<keystore-file-location>`
./android/key.properties(这里是密钥upload-keystore.jks的数据)
1条答案
按热度按时间gojuced71#
请求在应用程序完整性部分中更改密钥