Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 443
Rahul Baradia Avatar asked Mar 14 '12 05:03

Rahul Baradia


People also ask

Can I get Google Maps API key without billing?

Yes you need to setup a billing account, there is no way around it these days.


1 Answers

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.

like image 168
Santhosh Avatar answered Oct 04 '22 04:10

Santhosh