I am trying to create an MD5 fingerprint from a debug.keystore file using keytool.exe in my JDK in order to use Google Maps in my Android project. I found the keystore file and moved it to C:\android to simplify the task.
Then at the command prompt, type
c:\Program Files\Java\jdk1.5.0_13\bin>keytool -list -alias androiddebugkey -keystore "C:\android\debug.keystore" -storepass android -keypass android
And I get the error:
keytool error: java.lang.Exception: Keystore file does not exist: C:\android\debug.keystore
I also tried to enter the keystore from my original location, and not go to C:\android , but I still get the same error.
Does anyone know why this is happening? Also, is there any other way to get this MD5 fingerprint? Maybe some kind of program?
source share