Cannot get MD5 debug SDK certificate fingerprint

I am using Ubuntu. I am developing applications using Google Maps. For this, I register for apiki. I followed the instructions in the following link link text

from this instruction, I got the MD5 fingerprint of your signature certificate, I also have a keystore, but I can’t get the MD5 fingerprint of the SDK debug certificate, for this I followed the command keytool -list -alias androiddebugkey \ -keystore.keystore \ -storepass android -keypass android.

I have indicated the location of path_to_debug_keystore according to my application location. But wen i fulfill that commend

I get the message bash: my-release-key.keystore: Permission denied. "I don’t know which community I will use to get this MD5 fingerprint from the Debug Certificate.can SDK, anyone can give me a solution for this.

Thanks, hello Lakshman.

+3
source share
3 answers

Get rid of backslashes if you type it all on the same line. Therefore, it should look like this:

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

(assuming you run this in the directory where the debug repository located ~/.androidon Ubuntu is located )

+7
source

-v jdk 1.7. Android SDK 1.0, API Google, Google Maps Android. , , . Google http://code.google.com/Android/toolbox/apis/mapkey.html.

-, Android, SDK, "C:\Documents and Settings\\Local Settings\Application Data\Android". debug.keystore. Android debug.keystore . , .

(debug.keystore) C:\(, "C:\Android" ).

, MD5 Keytool.exe, JDK. , Google. Keytool.exe "C:\Program Files\Java\\bin".

, MD5.

C:\Program Files\Java\\bin > keytool.exe -list -alias androiddebugkey -keystore "C:\Android\debug.keystore" -storepass android -keypass android

-v jdk 1.7

C:\Program Files\Java\\bin > keytool.exe -v -list -alias androiddebugkey -keystore "C:\Android\debug.keystore" -storepass android -keypass android


+5
  • jdk/bin
  • keytool -v -list -alias androiddebugkey -keystore "C:\Users\Akshay Taru\.android\debug.keystore" -storepass android -keypass android

Note: 1. Change "C: \ Users \ Akshay Taru.android \ debug.keystore" to your .keystore
      2. Do not forget double quotes when specifying the path.

0
source

Source: https://habr.com/ru/post/1770512/


All Articles