Upload new APK to Alpha - failed

后端 未结 8 1542
忘掉有多难
忘掉有多难 2020-12-04 12:01

Upload new APK to Alpha

Upload failed

You uploaded an APK with an invalid signature (learn more about signing). Error from

相关标签:
8条回答
  • 2020-12-04 12:15

    It worked, when selected only V1 (Jar Signature) :-)

    0 讨论(0)
  • 2020-12-04 12:17

    Many hints spread across the comments above but these steps are what (FINALLY) worked for my Android (Cordova) app as of 11/2019:

    1. Increment Android Build/Version Number in Manifest (if necessary)

    2. Run cordova build android

    3. Open project in Android Studio

    4. Run Build > Clean Project

    5. Run Build > Generated Signed Bundle / APK

    6. Fill out dialogs and ONLY check the "V1 JAR" sign checkbox - did not check the "V2 Full APK Signature" checkbox.

    7. Upload APK to Google Play Dashboard

    8. Cross your fingers

    0 讨论(0)
  • 2020-12-04 12:20
    1. Build -> Clean project
    2. Select the checkboxes for signature versions v1 and v2
    0 讨论(0)
  • 2020-12-04 12:20

    First remove your project's build folder, then generate apk or bundle again. This solution was fixed the issue for me.

    0 讨论(0)
  • 2020-12-04 12:24

    Make sure you're using the right certificate key file and follow these steps in Android Studio:

    1. Click Build -> Clean Project
    2. Click Build -> Generate Signed Bundle / APK
    3. Follow the steps and make sure you've selected both options in "Signature Versions" (V1 - Jar Signature and V2 - Full APK Signature)

    That should work!

    0 讨论(0)
  • 2020-12-04 12:27

    I think that you probably simply accepted the default configuration settings during the APK signup process in Android Studio. This is ok most of the time, but might generate a slight confusion if you use Android 7.0+ Indeed from version 7.0, Android intruduces the new V2 Signature Scheme in addition to the "old" V1. The new scheme is supposed to offer faster app install times and more protection against unauthorized alterations to APK files, and it is therefore the default scheme in Android Studio's "Generate Signed APK" dialog box.

    The problem is that Google Play in your case wants the V1 scheme to be applied, that is the JAR signing, rather than the APK signing as in V2. The Google Play documentation explicitly states that: "Although we recommend applying APK Signature Scheme v2 to your app, this new scheme is not mandatory. If your app doesn't build properly when using APK Signature Scheme v2, you can disable the new scheme.".

    The solution that I have found in those cases is to enable both, as shown in the screenshot below. Once you do that the signed APK should be accepted without problems by the Google Play versions management system.

    Generate Signed APK dialog box in Android Studio

    This is the complete procedure:

    1. in Android Studio, select "Build > Select build variants" and make sure that the "release" variant is selected
    2. select "Build > Generate Signed APK" and enter the information about your keystore. I suppose that you have already created a signed APK in your previous try so these fields should be already set to the latest values. Click [Next].
    3. the next screen is where you have to make sure to check both V1 and V2 as the signature versions, afterwards click [Finish] to generate the APK.
    0 讨论(0)
提交回复
热议问题