can anyone clarify me that is it possible to recover keystore alias key? i am in big trouble my app is already on playstore and update is ready,and stuck at this point
Here is link bruteforce using from last two days,nothing works for me..
can anyone clarify me that is it possible to recover keystore alias key? i am in big trouble my app is already on playstore and update is ready,and stuck at this point
Here is link bruteforce using from last two days,nothing works for me..
You can try and find the password in one of the gradle files if you still have the source code and were using Android Studio to develop the app. Try looking for:
..Project\.gradle\2.4\taskArtifacts\taskArtifacts.bin
Alternatively, you can create new keystore and set new password for it with the keytool command below. You don't need original keystore password for it:
keytool -importkeystore -srckeystore path/to/keystore/with/forgotten/pw \
-destkeystore path/to/my/new.keystore
When prompted, create password for your new.keystore and for source keystore password (which you lost) just hit Enter. You will get warning about integrity not checked, and you will get your new.keystore identical to original with newly set password.
The reason this works is keystore password is only used to provide integrity of the keystore, it does not encrypt data with it, in contrast to private key password, which actually keeps your private key encrypted.