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 

希望它會幫助別人。謝謝大家。

相關問題