When I use
keytool -list -keystore /path/to/keyfile.jks
and give my password, I'm able to see the entry there, but when I use the same password while trying to Generate signed APK using the same password, I get the error
Cannot load key store: Keystore was tampered with, or password was incorrect
Please help!
Got the answer after 20 hours of tireless searching. Apparently there is some issue with the character '&' in passwords as mentioned here https://code.google.com/p/android/issues/detail?id=36350 Although in my case, the character was '@'.
For anyone who gets stuck, here is what I did (and what should work for them too)
keytool -keypasswd -alias <key_name> -keystore mykeystorek.jks
command to change password for my key alias password.keytool -importkeystore -srckeystore my.keystore.jks -destkeystore new.keystore -deststoretype pkcs12
followed by keytool -importkeystore -srckeystore new.keystore -srcstoretype pkcs12 -destkeystore final.keystore -deststoretype jks
. What this does is, export the original keystore values in PKCS12 format, and then back to Java Keystore format in the filename final.keystore. In all these commands, the prompt asked for new destination password, which I carefully chose, avoiding @
and &
.
And it works now! As indicated in the link shared above,this seems to be due to some update pushed in SDK Tools 20. I know it's bad. The other app owners seem pretty pissed at Google too. :(