Any difference between MD5 and SHA1 to get the MAP API?

I get the following results:

C: \ Program Files \ Java \ jdk1.7.0 \ bin> keytool -list -alias androiddebugkey -keystor e "C: \ Documents and Settings \ Administrator .android \ debug.keystore" -build a ndroid -keypass android androiddebugkey, May 27 2011, PrivateKeyEntry, Certificate imprint (SHA1): "Some code"

But after entering this parameter in http://code.google.com/android/maps-api-signup.html to get the MAP API the wrong fingerprint is displayed.

Can you please direct me, this is the fingerprint that I have, correct or not. Because I get it as SHA1, not MD5. How can I get the API key?

+3
source share
2 answers

keytool -v -list -alias alias_name -keystore my-release-key.keystore

With JDK 1.7 installed, keytool displays the default SHA1 fingerprint, not MD5. Adding the -v option also lets you see MD5.

Please refresh the page with this information, many developers have problems obtaining a card key.

http://code.google.com/p/android/issues/detail?id=19035

+8
source

After entering the add key; and the name of your application for example. sha1 code blablabla; com.example and then generate the key.

Happy coding ....

also check this tutorial and recheck the steps you followed, it worked for me ....

0
source

All Articles