yehunhun
yehunhun
  • 发布:2015-04-14 09:48
  • 更新:2016-07-03 21:26
  • 阅读:3363

Android 云端打包keystore配置问题

分类:HBuilder

我在使用云端打包Android项目时,使用的是自有证书,但是HBuilder的打包配置界面只有appid、证书别名、私钥密码三项,无法配置keystore密钥,导致打包时总是提示密码错误

2015-04-14 09:48 负责人:无 分享
已邀请:
BirdZhang

BirdZhang

刚刚解决了

Solution: The KeyStore password and The Key password should be the same.

Changing both passwords using keytool

Change KeyStore password

keytool -storepasswd -new %newpassword% -keystore %YourKeyStore%.jks
replace %newpassword% with your actual password, same with YourKeyStore

Change Alias key Password

keytool -keypasswd -alias %MyKeyAlias% -new %newpassword% -keystore KeyStore.jks
Note: supply old password for both keystore and alias when asked for

BirdZhang

BirdZhang

请问楼主解决了吗?
我的是提示要我输入别名密码

该问题目前已经被锁定, 无法添加新回复