Reputation:
I generated md5 fingerprint correctly
C:\Program Files\Java\jdk1.6.0_19\bin>keytool.exe -list -ali
as androiddebugkey -keystore "C:\android\debug.keystore" -st
orepass android -keypass android
androiddebugkey, Nov 11, 2012, PrivateKeyEntry,
Certificate fingerprint (MD5): **:**:**:**:**:**:**:**:**:**
:**:**:**:**:**:**
C:\Program Files\Java\jdk1.6.0_19\bin>
but when I put it on https://developers.google.com/android/maps-api-signup.html
then it shows,
The fingerprint that you entered is not valid. Please press the Back button on your browser and enter a valid certificate fingerprint.
Upvotes: 6
Views: 653
Reputation: 8734
In map API v2+ you need SHA1 fingerprint not md5
You can discover the SHA1 fingerprint of your developer certificate using the following command: keytool -list -v -keystore mystore.keystore
Upvotes: 1