Srinivasan
Srinivasan

Reputation: 3

Android apikey Not Supported for Google Map

I got a fingerprint

73:F9:85:F8:14:56:4A:E7:D1:D4:31:6F:23:AA:4D:38:EB:16:5C:EE 

but when i used to generate api Key using this link

http://code.google.com/android/maps-api-signup.html it shows
"The fingerprint you entered is not valid. Please press the Back button on your browser and enter a valid certificate fingerprint".

If i omit last four Character and use

73:F9:85:F8:14:56:4A:E7:D1:D4:31:6F:23:AA:4D:38 

it generate api key that not support to create Google map in android Application

Upvotes: 0

Views: 215

Answers (2)

pxp
pxp

Reputation: 87

Super easy with Eclipse Keytool addon-tool

You can use the android.debug key for debugging or your own key for using it on a device.

Upvotes: 0

Samir Mangroliya
Samir Mangroliya

Reputation: 40416

Set Your java Path in Command Prompt And also set debug.keystore path.

 C:\Program Files\Java\jdk1.7.0_02\bin >
 keytool -v -list -alias androiddebugkey -keystore "C:\Users\UserName\.android\debug.keystore" -storepass android -keypass android

And use MD5 fingerprint .....

Upvotes: 2

Related Questions