Unable to export signed APK in Android Studio

Sankalp Sharma picture Sankalp Sharma · Jul 27, 2014 · Viewed 7.2k times · Source

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!

Answer

Sankalp Sharma picture Sankalp Sharma · Jul 29, 2014

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)

  1. I used the keytool -keypasswd -alias <key_name> -keystore mykeystorek.jks command to change password for my key alias password.
  2. Since I suspected my original file had some issues, I thought it best to export the keys to another file. I did that using 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. :(