• <bdo id='KCAt1'></bdo><ul id='KCAt1'></ul>

    1. <i id='KCAt1'><tr id='KCAt1'><dt id='KCAt1'><q id='KCAt1'><span id='KCAt1'><b id='KCAt1'><form id='KCAt1'><ins id='KCAt1'></ins><ul id='KCAt1'></ul><sub id='KCAt1'></sub></form><legend id='KCAt1'></legend><bdo id='KCAt1'><pre id='KCAt1'><center id='KCAt1'></center></pre></bdo></b><th id='KCAt1'></th></span></q></dt></tr></i><div id='KCAt1'><tfoot id='KCAt1'></tfoot><dl id='KCAt1'><fieldset id='KCAt1'></fieldset></dl></div>
        <tfoot id='KCAt1'></tfoot>

        <legend id='KCAt1'><style id='KCAt1'><dir id='KCAt1'><q id='KCAt1'></q></dir></style></legend>

      1. <small id='KCAt1'></small><noframes id='KCAt1'>

      2. 您的 Android App Bundle 使用错误的密钥进行签名.确保您的 app bundle 使用正确的签名密钥进

        时间:2023-11-09
        <tfoot id='nuswR'></tfoot>

          <i id='nuswR'><tr id='nuswR'><dt id='nuswR'><q id='nuswR'><span id='nuswR'><b id='nuswR'><form id='nuswR'><ins id='nuswR'></ins><ul id='nuswR'></ul><sub id='nuswR'></sub></form><legend id='nuswR'></legend><bdo id='nuswR'><pre id='nuswR'><center id='nuswR'></center></pre></bdo></b><th id='nuswR'></th></span></q></dt></tr></i><div id='nuswR'><tfoot id='nuswR'></tfoot><dl id='nuswR'><fieldset id='nuswR'></fieldset></dl></div>
          • <bdo id='nuswR'></bdo><ul id='nuswR'></ul>

                <small id='nuswR'></small><noframes id='nuswR'>

                  <tbody id='nuswR'></tbody>
                <legend id='nuswR'><style id='nuswR'><dir id='nuswR'><q id='nuswR'></q></dir></style></legend>
                1. 本文介绍了您的 Android App Bundle 使用错误的密钥进行签名.确保您的 app bundle 使用正确的签名密钥进行签名,然后重试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何使用正确的签名密钥签署我的 android app bundle?

                  How do I sign my android app bundle with the correct signing key?

                  推荐答案

                  我尝试在这里使用多个答案 &在这个问题中,但不知何故我收到了这个错误,因为我有我的 android/app/build.gradleandroid/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:

                  1. android/gradle.propertiesandroid/app/build.gradle 中,确保您的 keystore 变量完全匹配.
                    • android/gradle.properties 中,你可能有这样的东西:
                  1. In android/gradle.properties and android/app/build.gradle, make sure your keystore variables match exactly.
                    • In android/gradle.properties, you probably have something like this:
                  MYAPP_RELEASE_STORE_FILE=<>
                  MYAPP_RELEASE_KEY_ALIAS=<>
                  MYAPP_RELEASE_STORE_PASSWORD=<>
                  MYAPP_RELEASE_KEY_PASSWORD=<>
                  

                2. 确保这些变量名称完全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
                              }
                          }
                      }
                  }
                  

                3. android {
                      ...
                      buildTypes {
                          debug ...
                          release {
                              signingConfig signingConfigs.release
                          }
                      }
                  }
                  

                  这篇关于您的 Android App Bundle 使用错误的密钥进行签名.确保您的 app bundle 使用正确的签名密钥进行签名,然后重试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Google Play 安全警报 - 您的应用正在使用不安全的 HostnameVerifier 实现 下一篇:如何通知用户有关 Android 应用程序更新?

                  相关文章

                4. <legend id='wBEVc'><style id='wBEVc'><dir id='wBEVc'><q id='wBEVc'></q></dir></style></legend>
                5. <tfoot id='wBEVc'></tfoot>

                    <i id='wBEVc'><tr id='wBEVc'><dt id='wBEVc'><q id='wBEVc'><span id='wBEVc'><b id='wBEVc'><form id='wBEVc'><ins id='wBEVc'></ins><ul id='wBEVc'></ul><sub id='wBEVc'></sub></form><legend id='wBEVc'></legend><bdo id='wBEVc'><pre id='wBEVc'><center id='wBEVc'></center></pre></bdo></b><th id='wBEVc'></th></span></q></dt></tr></i><div id='wBEVc'><tfoot id='wBEVc'></tfoot><dl id='wBEVc'><fieldset id='wBEVc'></fieldset></dl></div>
                    • <bdo id='wBEVc'></bdo><ul id='wBEVc'></ul>
                    1. <small id='wBEVc'></small><noframes id='wBEVc'>