Android:Google Maps API Key Signup : MD5 certification key
how to get MD5 fingerprint key .
I am using this command :
C:\Program Files\Java\jdk1.7.0_04\bin>keytool.exe -list -alias androiddebugkey -keystore "C:\Documents and Settings\IBM\.android\debug.keystore" -storepass android -keypass android `
but unable to get MD5 key, but I am getting Certificate fingerprint (SHA1) key
androiddebugkey, Jan 16, 2012, PrivateKeyEntry,Certificate fingerprint (SHA1):A4:9E:8F:FA:1A:B2:A0:79:3D:D3:95:41:82:3B:F6:DA:78:40:DD:DE
I want MD5 certification key.
Many Thanks.
C:\Program Files\Java\jdk1.7.0_04\bin>keytool.exe -V -list -alias androiddebugkey -keystore "C:\Documents and Settings\IBM\.android\debug.keystore" -storepass android -keypass android
Consider your jdk-bin path
in the first path
place and your home user directory
in the second path
. For windows 7
it is likeC:\Users\username\.android\debug.keystore
Use the above command you will get all the keys.
The google API key is here.
for windows
step1: start --> run-->
type
C:\Documents and Settings\ashish\.android
hear you should be pass your current user
and find debug.keystore
now get the path of debug.keystore
C:\Documents and Settings\ashish\.android\debug.keystore
now the command for getting MD5
keytool -list -alias androiddebugkey -keystore <path_to_debug_keystore>.keystore -storepass android -keypass android
so now we pass the path of dedug.keystore
the full command is
keytool -list -alias androiddebugkey -keystore "C:\Documents and Settings\ashish\.android\debug.keystore" -storepass android -keypass android
step 2: start--> run-->
type cmd and change directory to android sdk's platform-tools and past the following command press enter
now you are getting MD5 now how to use it..... now Go to https://developers.google.com/android/maps-api-signup
after that press button It will give you map api
http://mobiforge.com/developing/story/using-google-maps-android refer this link.
Use JDK version 1.6 instead of 1.7 because 1.7 generates the fingerprint with SHA1 by default.