Skip to content Skip to sidebar Skip to footer

Error In Cmd Prompt For Getting Md5 Fingerprint

I want to get MD5 finger print in Android for google map, but when I try to run it in a command window it shows the message below. How do I overcome this problem? Command Line: C:

Solution 1:

Use

C:>cd C:\Program Files\Java\jre6\bin 

first and then from bin, execute the ketool.exe the command for it is:

keytool -list -alias androiddebugkey -key store C:\Documents and Settings\Saurabh.android\debug.keystore -storepass andro id -keypass android

Solution 2:

use this simple command keytool -list -keystore "C:\Documents and Settings\Saurabh.android\debug.keystore"..

Thats it.. Enter twice..

Solution 3:

Check whether the path C:\Documents and Settings\Saurabh contains a folder .android. If not, choose the path that contains .android ( if you dont know where, then if you are using eclipse, go to Window->Preferences->Android->Build and check Default debug keystore path and give that instead of C:\Documents and Settings\Saurabh.android\debug.keystore

running the following code should get you the MD5 fingerprint if you are giving the right debug keystore path... note that there is a '\' before .android which you had missed in the previous posts

C:\Program Files\Java\jre6\bin>keytool -list -alias androiddebugkey -keystore C:\Documents and Settings\Saurabh.android\debug.keystore -storepass andro id -keypass android

Post a Comment for "Error In Cmd Prompt For Getting Md5 Fingerprint"