How to reset Keystore password for android. I can't update application on play store. How to resolve this problem? When I tried to update the application with the new key then play store rejected it. I have the old Keystore file but the password is not accepting.
-
https://stackoverflow.com/questions/11614407/how-to-reset-keystores-when-you-do-not-know-their-password – Tara Dec 08 '17 at 04:45
-
1Possible duplicate of [Android - Forgot keystore password. Can I decrypt keystore file?](https://stackoverflow.com/questions/8894987/android-forgot-keystore-password-can-i-decrypt-keystore-file) – Zoe Dec 08 '17 at 15:25
-
https://www.npmjs.com/package/keystore-password-recovery – vmontanheiro Oct 24 '19 at 11:18
3 Answers
Faced the same problem
You can create a new keystore, but the Android Market wont allow you to upload the APK as an update - worse still, if you try uploading the apk as a new app it will not allow it either as it knows there is a 'different' version of the same apk already in the market even if you delete your previous version from the play store.
Generally, the only advise that exists on keystores: "always back it up!"
Or you may try this.

- 3,358
- 2
- 19
- 31
I use this one for bruteforce at the moment: Android keystore password recover
There are 3 Methods to recover your keystore password:
- Simply Bruteforce - Dictionary Attack - Smart Wordlist Attack
Useful links:
http://www.icaninfotech.com/android-keystore-password-recovery/
https://discuss.kotlinlang.org/t/forgot-android-alias-key-password/1873
https://www.codeproject.com/Questions/1094759/Reset-keystore-password-without-entering-old-passw
Hope this works.

- 12,279
- 5
- 36
- 59

- 2,115
- 5
- 21
- 40
One trick is here you can get your password from android studio.I windows go to
C:\Users\yourUser\.Android2.2\system\log\idea.log.1
where Android2.2 is the studio version , you have to go to your version name folder. The password is shown just below the first ***** part . Search in file **** or android.injected.signing.store word. you will find your password.
Hope it helps to you.

- 1,313
- 10
- 21