Signing an APK with an upload key provided by Google Play

前端 未结 5 1143
广开言路
广开言路 2020-11-30 19:33

I\'m trying to make sense of how to upload an app onto Google Play while using Google Play App Signing.

Here is what I did:

  1. Created an app
  2. Use
5条回答
  •  日久生厌
    2020-11-30 19:50

    I think you must have generated your keystore like this from your "java\bin" folder:

    keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
    

    When you want to update yout app you must have to use the same keystore that you have generated.

    1. Go to Build > Generate Signed APK.

    2. Select "Choose existing" and browse to your keystore path

    3. Enter "key store password"

    4. In key alias tap on "..." and check whether your key alias is same as the one you have provided while generating keystore

    5. If yes again provide "Key Password"

    6. Tap on "Next"

    Let me know in which step you are getting the problem, so I can guide you accordingly.

提交回复
热议问题