Reputation: 39881
According to this tutorial you need to run this command to generate key hash:
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64
When I do that it asks for a password. What password it needs?
Upvotes: 0
Views: 58
Reputation: 682
Presumably it's asking for the password to the debug.keystore specified in the keytool command. which should be defaulted to android
If you've manually changed the password of the keystore, then you'll obviously need to enter the password that you changed it to.
Upvotes: 2