Android keystore 调试

以下以window为例,其他平台相应修改。

默认debug.keystore位置:

C:\Users\[username]\.android\debug.keystore

默认密码为:android

alias为:androiddebugkey

alias密码为:android

 

故需要将正式签名的keysore复制一份做为debug.keystore,并将密码和别名修改为与debug.keystore一致,Eclipse就能识别了。

keytool命令位置:(加到环境变量就可以在cmd中使用)

JAVA_HOME\bin\keytool.exe

 

查看签名

keytool -list -keystore xxx.keystore

修改别名

keytool -changealias -keystore xxx.keystore -alias [原别名] -destalias androiddebugkey 

修改别名密码:

keytool -keypasswd -keystore  xxx.keystore -alias androiddebugkey

修改默认密码:

keytool -storepasswd -keystore  xxx.keystore

最后配置Eclipse:

Window->Preferences->Android->Build->Custom debug keystore

Android keystore 调试_第1张图片

 

你可能感兴趣的:(Android keystore 调试)