Lost keystore alias but have file and password used for alias

前端 未结 4 1205
一向
一向 2020-12-29 05:16

recently I added a new alias to my keystore to sign my app.

Now I lost the new generated file with the alias, but remember the password and the alias name and have a

4条回答
  •  礼貌的吻别
    2020-12-29 06:16

    You can list the contents of your keystore with the command:

    keytool -list -keystore 
    

    To do this, you will need to provide the keystore password (not the alias password). This will tell you the aliases in the file, which are self-contained, allowing you to sign. If you wish, you could also extract keys using other options / tools.

提交回复
热议问题