1

我从appybuilder制作了一个应用程序并将它发布到google play上,现在我想发布我使用android studio开发的更新。现在,我想我的签名与通过appybuilder生成密钥库的应用程序,但我得到的错误 -将项目从appybuilder移植到android studio时出现keystore错误

Error:Execution failed for task ':app:packageRelease'. 

> com.android.ide.common.signing.KeytoolException: Failed to read key 
keystore from store "E:\New folder\Work\android (2).keystore": Keystore was 
tampered with, or password was incorrect. 

帮我解决这个错误。 我知道如果没有以前版本的标志,我将无法发布它的更新。

,当我试图上传应用程序没有签署APK它给我的错误

Upload failed 
You uploaded a debuggable APK. For security reasons you need to disable 
debugging before it can be published in Google Play. Learn more about 
debuggable APKs. 
You uploaded an APK that is signed with a different certificate to your 
previous APKs. You must use the same certificate. Your existing APKs are 
signed with the certificate(s) with fingerprint(s): 
[ SHA1: ****(previous SHA1 key)**** ] 
and the certificate(s) used to sign the APK you uploaded have 
fingerprint(s): 
[ SHA1: 60:50:E5:C5:6F:DA:4C:13:4E:C4:99:65:E6:13:CA:08:37:BB:55:22 ] 

有什么办法来改变指纹所需的SHA1指纹?

+0

您的密钥存储区文件最有可能不存在您的密钥别名。 –

+0

我该如何解决这个问题? –

+0

把一些屏幕短或登录问题,以更好地undertad –

回答

0

最后我找到了解决方案。这是别名,密钥库密码和密钥密码的错误。当我使用它们的默认值为

key store password - android 

alias - androidkey 

key password - android 

希望它会帮助别人。谢谢大家。

相关问题