Friday 28 April 2017

android - Deleted debug.keystore file. How do I generate it again?





I had deleted debug.keystore file as I had forgotten the password to access it using keytool. How do I retrieve it or generate it again?



If I create a new keystore file using keytool then the eclipse crashes if I add it in the preferences.


Answer



The same mechanism as for an expired debug key should work, see here https://stackoverflow.com/a/2196397/1127492



No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...