skip to Main Content

I am creating bundle of my first app. I have followed a youtube tutorial in which they haven’t added .jks extension to there keystore file while creating it and i have created my aab bundle using same instructions.

here is link to that tutorial
https://www.youtube.com/watch?v=4MXvMrbCTwA&t=766s

Now my question is will that keystore(without .jks extension) file work when i update my application. As i have seen in other tutorials that people used to save it with .jks extension.

2

Answers


  1. When you go to Build > Generate Signed Bundle/APK. the .jks extension is added by default.
    The extension does not have to be given manually by you. You can also use it as many times you want to update your app

    Java Keystores (.jks or .keystore) are binary files that serve as repositories of certificates and private keys.

    A public key certificate (.der or .pem files), also known as a digital
    certificate or an identity certificate, contains the public key of a
    public/private key pair, as well as some other metadata identifying
    the owner (for example, name and location) who holds the
    corresponding private key.

    Ref: Sign your app

    Login or Signup to reply.
  2. .JKS extension to keystore file is not necessary, and yes, it will work with out any issue. You can signed APK/aab bundle to Play Store as many times as you want to upload to Play Store.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search