Reputation: 856
I am trying to push an update to my app, but when I am trying to build the APK, I get
Failed to read key from store: Keystore was tampered with, or password was incorrect
I am certain that the Key Alias and password are correct. Is there a way to fix this without having to generate a whole new keystore? From my understanding, if I generate a new keystore I can't push updates to the app that is already in the playstore
Upvotes: 0
Views: 329
Reputation: 5611
If this is an issue of forgetting the alias you used for your keystore, you can list the aliases for your keystore using the following command:
keytool -v -list -keystore .keystore
Upvotes: 2