Retrieve key from the Keystore to upload an APK to Google Play

1

I am currently working on some modifications for an Android application. The application was not made by me, someone else made it.

I had never worked in a development for Android, then I realize that you have to generate a signed APK. At the root of the project there is a file called NAME_APP.keystore .

When trying to generate the APK, I am asked for other fields that are: Key store password, Key alias and Key password . I do not have those data, is there any way to obtain them, from Google Play Console for example? Or if you can not get them, you can not update the application?

    
asked by Vicente Gutiérrez 04.12.2017 в 23:36
source

1 answer

-1

It is essential to keep the Keystore in a safe place as well as its Key store password and Key Password and its with which the applications that are uploaded to Google Play are signed.

otherwise you will not be able to upload an update to your application!

You can review this information on our site:

Recover key publication Android application

I made a serious mistake with my Android App: I lost the certificate file and now I can not upload updates to the Play Store

If you have the Keystore but do not have the password, you can try as an option : link

  

I am currently working on some modifications for a   Android application. The application was not made by me, it was done by another   person.

The person who made the application had to leave the Keystore with which the application was signed as well as the passwords.

  

I had never worked on a development for Android, so I give myself   account that you have to generate a signed APK. At the root of the project   There is a file called APPLICATION_NAME.keystore.

This is probably the Keystore with which the application was signed because when you create a project, a Keystore file is not created automatically. When you test your application it uses the development Keystore, which is not to upload the application to Google Play, this file is located in:

C:\Users\<USUARIO>\.android\android.keystore
  

When trying to generate the APK, I am asked for other fields that are: Key   store password, Key alias and Key password. I do not have those data,   Is there any way to get them, from Google Play Console for example? or in   If you can not get them, you can not update the application?

If you do not get them, unfortunately you will not be able to update the application, you will have to upload a new application.

    
answered by 05.12.2017 / 00:20
source