How To Recover Password For Jks File Which Is Already Available In Play Store?
Solution 1:
If you have source code of your apk then you can easily get alias and password. follow these steps to recover your keystore original password without bruteforce. Make sure you don't try to crate a new keystore with that source code otherwise it will store your new password and alias. try this with your original keystore source code
Select your list of view
as project
and open directory and select .gradle > taskHistory
like this
Now just open taskHistory.bin
file and search
in file storePassword
or try to find keyAlias�TestApp�signingConfig.storePassword
and for alias
just search keyAlias
and you will get it
you will find your password here like:
test@123
is my password you can find yours , you can find it in next lines maybe it's not found in first line. so try to found at the bottom of page
Hope it's help for you, let me know if it's works for you.
Post a Comment for "How To Recover Password For Jks File Which Is Already Available In Play Store?"