Invalid fingerprint to create Google map key for Android application

I successfully generated a fingerprint certificate for a google map key with this command

keytool -list -alias androiddebugkey -keystore "C:\Users\pc\.android \debug.keystore" -storepass android -keypass android 

and I got this result

 androiddebugkey, Aug 25, 2012, PrivateKeyEntry, Certificate fingerprint (SHA1): 68:1F:B8:80:C0:B9:96:D1:6E:95:86:69:CD:DB:0E:28:DC:9E:89:51 

when I try to register a certificate thumbprint on this site https://developers.google.com/android/maps-api-signup

The page answered me. The fingerprint you entered is invalid. Click the back button in the browser and enter the correct certificate thumbprint

where is the problem please help.

+4
source share
2 answers

I find that solving my problem just changed the command to

 keytool -list -v -alias androiddebugkey -keystore C:\Users\<user>\.android\debug.keystore -storepass android -keypass android 
+7
source

If you have problems finding the debugging path or don’t want to use adb, you can get a fingerprint in the eclipse:

go to window β†’ settings and find the Android section. Choose build setup.

enter image description here

for a production fingerprint, when you export a signed application using ADT right before clicking, the hash will end. just copy it.

+3
source

All Articles