美文网首页
keystore相关指令

keystore相关指令

作者: V1tas | 来源:发表于2017-03-21 13:58 被阅读0次
    • 进入AndroidStudio的Terminal
    • 进入签名文件所在的根目录
    • 查询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相关指令

          本文链接:https://www.haomeiwen.com/subject/apqgnttx.html