Android – cant get MD5 Fingerprint of the SDK Debug Certificate

android

I am using Ubuntu. I am developing apps with Google Maps. For that I am registering for an apikey. I followed the instruction in this following Link link text

from this instruction i got MD5 Fingerprint of Your Signing Certificate,also i have keystore ,But i cant able get MD5 Fingerprint of the SDK Debug Certificate, for this I followed the commend keytool -list -alias androiddebugkey \ -keystore .keystore \ -storepass android -keypass android.

I specified the path_to_debug_keystore location according to my application location. But wen i execute that commend

I get the "bash: my-release-key.keystore: Permission denied." I dont know which commend will i use to get this MD5 Fingerprint of the SDK Debug Certificate.can any one give me the solution for this.

Thanks in advance, regards, Lakshmanan.

Best Answer

Get rid of the backslashes if you are typing this all on one line. Hence, it should look like:

keytool -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android

(assuming you are running this in the directory where your debug keystore resides, which is ~/.android on Ubuntu)

Related Topic