ERROR: Failed to read the key from store:... Cannot recover key on Android Studio when generating Signed APK -


i trying generate release apk new game. though updated 1 of other app 3 days ago keystore had no problem @ all. absolutely sure remember passwords correctly. because when give wrong passwords says password or username incorrect.

here's i'm doing:

enter image description here

and here's i'm getting:

enter image description here

please me doing wrong here? android studio updated 2 days ago. think cause problem? should do? appreciated...

i had read post android studio: cannot recover key before post question. tried shown in answer though faced prompt: "file tampered or password incorrect". know password absolutely correct. i'm afraid i'll never able update apps again.

i recommend run smart word list attack on alias password using tool here:

http://maxcamillo.github.io/android-keystore-password-recover/

  1. download jar file project using url above.

  2. create text file called wordlist.txt words , strings make password, in order think appear. put each string think part of password on separate line. not leave blank lines in between each string. may need tinker wordlist.txt several times in process crack password. may try variations of think password can possible think of.

  3. save wordlist.txt same folder jar file.

  4. from command line, navigate directory contains wordlist.txt , jar file.

  5. at command line type: java -jar androidkeystorebrute_v1.06.jar -k "full path keystore.jks" -d wordlist.txt see available options. may want try , use different options used in testing.

  6. run java -jar androidkeystorebrute_v1.06.jar -m 3 -k "full path keystore.jks" -d wordlist.txt

the -m option specifies method used crack password: 1 = brute force attack (could take weeks, months or longer) 2 = dictionary attack (your password must in dictionary) 3 = smart word list attack (strings specified in wordlist.txt)

i tested own alias password many times , many different variations in wordlist.txt, , either cracked password in less 1 second or didn't find password @ all. since believe alias password same key store password, procedure should find both passwords.

of course know password knew strings put in work. since remember password, smart word list attack should find password if close variation of remember.

good luck!!

in future may want store password in password manager, , copy , paste passwords. human memory great remembering general ideas, , unreliable remembering exact items or details.


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -