当前位置: 首页 > 知识库问答 >
问题:

如何修复“你的安卓App捆绑包用错误的密钥签名”?

彭成天
2023-03-14

我正试图上传我的appbundle,但我一直得到这个错误“您的Android App Bundle是用错误的密钥签名的”。我已经用谷歌重新设置了我的密钥,等待了48小时,但我还是得到了错误。我在我的key.properties上使用了新的keystore.jks文件,我将这个文件作为pem文件发送给Google。

下面是我的key.properties:

storePassword=******
keyPassword=******
keyAlias=key
storeFile=/Users/ricardooscarkanitz/Projects/Apps/e_ai_casimiro_key/keystore.jks

和我的build.gradle:

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
  localPropertiesFile.withReader('UTF-8') { reader ->
    localProperties.load(reader)
  }
}

def  flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
     throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in  
the local.properties file.")    
   }

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
   flutterVersionCode = '2'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '2.0'
}

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

 }



 android {
  compileSdkVersion 29

  sourceSets {
    main.java.srcDirs += 'src/main/kotlin'
 }

  lintOptions {
    disable 'InvalidPackage'
 }

 defaultConfig {
    // TODO: Specify your own unique Application ID     
    (https://developer.android.com/studio/build/application-id.html).
    applicationId "br.com.kanitzdev.e_ai_casimiro"
    minSdkVersion 16
    targetSdkVersion 29
    versionCode flutterVersionCode.toInteger()
    versionName flutterVersionName
    multiDexEnabled true
 }

   signingConfigs {
   release {
       keyAlias keystoreProperties['keyAlias']
       keyPassword keystoreProperties['keyPassword']
       storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) :   
  null
       storePassword keystoreProperties['storePassword']
   }
 }


 buildTypes {
         release {
            signingConfig signingConfigs.debug
      }
    }
 }

 flutter {
     source '../..'
  }

dependencies {
     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

}

apply plugin: 'com.google.gms.google-services'

我已经尝试上载了我第一次从keytool获得的key.jks文件,但它显示了相同的错误。你们知道怎么修好它吗?

共有1个答案

笪德华
2023-03-14

您仍在尝试通过调试模式生成应用程序包。

而不是:signingconfig signingconfigs.debug

请尝试以下操作:SigningConfig SigningConfigs.Release

 类似资料:
  • 我刚刚开始使用应用程序包。我已经在仪表板的部分设置了两个证书(签名证书和上载证书)。 我已经构建了一个应用程序包,并用上传证书签名,但是当我在下上传包时(这实际上是我切换到应用程序包的原因),它说:

  • 我想用一个新的应用程序包更新我在Play Store上的应用程序(以前我上传APK)。但是当我试图用我用来签名APK的密钥生成签名应用程序包时,Android Studio给我的消息Keystore被篡改,或密码不正确。如何生成签名的应用程序包,以便将其上传到播放控制台? 我表演了清洁 用我用来上传APK的现有密钥生成应用程序捆绑包时,会出现以下错误: 使用此堆栈跟踪: 我如何解决这个问题,我遗漏

  • 我需要一些帮助。。。 我一直在遵循这些指示:https://www.redmine.org/account/activate?token=2375a89a6b6f6a04b05bc941e93cb3ea82c15a89 我对这一步有一个问题:使用Gem bundler安装依赖项¶这一步将查看在Gem file:%cd /var/www/redmine%bundle install中指定的依赖项 当

  • 当我跑的时候

  • 我正在将我的spring-java项目转移到OSGi。 我有一些依赖项,这些依赖项在spring ebr repo或maven repo中不能作为包提供。处理它们的最佳方法是什么? null

  • 我已经安装了Java,并且正在尝试在我的Windows10上安装NetBeans 11.3,但是在我运行了EXE之后。安装程序,弹出一条错误消息: 线程主java.lang.NoClassDeffounderRror java/util/jar/pack200中发生意外异常