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(您的 Android App Bundle 使用错误的密钥进行签名.确保您的 app bundle 使用正确的签名密钥进行签名,然后重试)
问题描述
如何使用正确的签名密钥签署我的 android app bundle?
How do I sign my android app bundle with the correct signing key?
推荐答案
我尝试在这里使用多个答案 &在这个问题中,但不知何故我收到了这个错误,因为我有我的 android/app/build.gradle
和 android/gradle.properties
文件存在一些问题.
I tried using the multiple answers here & in this question, but somehow I was getting this error because I had some issues with my android/app/build.gradle
and android/gradle.properties
files.
您应该检查的两件事(除了这里的其他解决方案)是:
Two things you should check (in addition to the other solutions here) are:
- 在
android/gradle.properties
和android/app/build.gradle
中,确保您的keystore
变量完全匹配.- 在
android/gradle.properties
中,你可能有这样的东西:
- 在
- In
android/gradle.properties
andandroid/app/build.gradle
, make sure yourkeystore
variables match exactly.- In
android/gradle.properties
, you probably have something like this:
- In
MYAPP_RELEASE_STORE_FILE=<>
MYAPP_RELEASE_KEY_ALIAS=<>
MYAPP_RELEASE_STORE_PASSWORD=<>
MYAPP_RELEASE_KEY_PASSWORD=<>
android/app/build.gradle
中的名称匹配:
android {
...
signingConfigs {
release {
if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
storeFile file(MYAPP_RELEASE_STORE_FILE)
storePassword MYAPP_RELEASE_STORE_PASSWORD
keyAlias MYAPP_RELEASE_KEY_ALIAS
keyPassword MYAPP_RELEASE_KEY_PASSWORD
}
}
}
}
android {
...
buildTypes {
debug ...
release {
signingConfig signingConfigs.release
}
}
}
这篇关于您的 Android App Bundle 使用错误的密钥进行签名.确保您的 app bundle 使用正确的签名密钥进行签名,然后重试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您的 Android App Bundle 使用错误的密钥进行签名.确保您的 app bundle 使用正确的签名密钥进行签名,然后重试


基础教程推荐
- 在 iOS 上默认是 char 签名还是 unsigned? 2022-01-01
- Android文本颜色不会改变颜色 2022-01-01
- Android ViewPager:在 ViewPager 中更新屏幕外但缓存的片段 2022-01-01
- LocationClient 与 LocationManager 2022-01-01
- 固定小数的Android Money Input 2022-01-01
- 使用 Ryzen 处理器同时运行 WSL2 和 Android Studio 2022-01-01
- :hover 状态不会在 iOS 上结束 2022-01-01
- 如何使 UINavigationBar 背景透明? 2022-01-01
- 如何使用 YouTube API V3? 2022-01-01
- “让"到底是怎么回事?关键字在 Swift 中的作用? 2022-01-01