简体   繁体   中英

Generate signed apk android studio - Error with key

I am trying to generate signed apk with an exiting keystore but i have following problem

Error:org.gradle.tooling.BuildException: Failed to read key MedicalAssistanceKey from store "D:\MedicalAsError:com.android.ide.common.signing.KeytoolException: Failed to read key MedicalAssistanceKey from store

 "D:\MedicalAss_download\MyKey.jks": Cannot recover keys_download\MyKey.jks": Cannot recover key

Error:java.security.UnrecoverableKeyException: Cannot recover key

I am sure the password and key are correct

The keystore and key passwords have to be the same. You could use commands to modify passwork as below:

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]

Or if you like GUI, download from http://keystore-explorer.org/

Note: keytool.exe exists in jdk/bin folder or jre/bin folder.

if you have special characters in your passwords use this tool to change it:

http://keystore-explorer.org/

special characters like Ç

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM