Android Studio: cannot recover key

后端 未结 14 1449
闹比i
闹比i 2020-11-28 22:52

I have searched StackOverflow for a while, but I just wanted to make sure...

I wiped my laptop a while ago, and backed up all my files. I have my android.jks file ba

14条回答
  •  失恋的感觉
    2020-11-28 23:12

    I'm not surprised this didn't gain any traction, but here is what I did for anyone who stumbles onto this post.

    As I said, all of my files were backed up. I restored the android.jks file from an older backup. Then, I opened a Terminal window and typed in the following:

    keytool -storepasswd -new [insert new keystore password] -keystore [insert keystore file name]
    
    keytool -keypasswd -alias [insert alias] -new [insert new key password] -keystore [insert keystore file name]
    

    The keystore and key passwords have to be the same! This fixed my problem, and I hope it helps you too.

提交回复
热议问题