keystore相关指令

  • 进入AndroidStudio的Terminal
  • 进入签名文件所在的根目录
keystore相关指令_第1张图片
  • 查询keystore内容 sha1值之类的
    keytool –list –v –keystore xxxx.keystore
  • 修改keystore别名信息
    keytool -changealias -keystore xxxx.keystore -alias my_name -destalias new_name
  • 修改keystore别名密码
    keytool -keypasswd -keystore xxxx.keystore -alias androiddebugkey
  • 刪除keystore內的其中一个别名
    keytool –delete –alias xxx –keystore xxxx.keystore
  • 修改keystore密码
    keytool -storepasswd -new newPassword -keystore keystore.jks

你可能感兴趣的:(keystore相关指令)