Orbit
Orbit

Reputation: 2395

keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect, Android keystore

I'm trying to access my keystore because I need to get the SHA1 fingerprint to generate a release Google Maps Api key: google map docs

When trying to enter my key on the command line (or copying and pasting it), I'm getting the following:

keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect

Now, if I go inside Android Studio and select "Generate a Signed APK", it asks for my keystore password, and if I enter it, (along with the alias and alias pass) I can click finish and it begins to build a release APK (though of course it fails because as mentioned above, I need a Google Maps release key instead of a debug one.)

So because of that I know it has to be the correct password, and yet I'm still getting this error. Has anyone else experienced this? What is the possible cause and what is the solution?

Upvotes: 3

Views: 18152

Answers (3)

Shailender Ahuja
Shailender Ahuja

Reputation: 312

Better we use this format, it will give you much easier approach

RUN THIS

keytool -list -v -keystore D:\Shelivery\SHelivery.keystore

THEN

enter Password re-enter Password

And you will see all the possible things.

i don't like posting typical working solution where it is not necessary to invest time.

Upvotes: 1

Rafael Carlos
Rafael Carlos

Reputation: 86

The Password is default : android

Upvotes: 2

user207421
user207421

Reputation: 311050

  1. Obviously you are still getting the password wrong, whatever you may think.
  2. You don't need the password to get the SHA1 fingerprint. Just hit the ENTER key.

Upvotes: 6

Related Questions