How can I retrieve a saved keystore password from Android Studio?

后端 未结 6 1513
逝去的感伤
逝去的感伤 2020-12-24 12:00

The new Android Studio allows us to save keystore passwords for later use. Where are these passwords stored on my computer (OSX), and is there a way to retrieve the saved v

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-24 12:38

    look for the log file from the date which you had signed your apk and you can find your key info there like below.

    -Pandroid.injected.signing.store.password=[store_password], 
    -Pandroid.injected.signing.key.alias=[alias], 
    -Pandroid.injected.signing.key.password=[key_password]
    

    you can find your log files under

    C:\Users\username.AndroidStudio[versionNum]\system\log\

提交回复
热议问题