0

Regarding to this article article I'm trying to generate debug certificate.

keytool -exportcert -alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore

give a follow result: enter image description here

where expected is somthing like this:

Certificate fingerprint: SHA1: DA:39:A3:EE:5E:6B:4B:0D:32:55:BF:EF:95:60:18:90:AF:D8:07:09
Ilya Sulimanov
  • 7,636
  • 6
  • 47
  • 68

2 Answers2

0

Found the solution

keytool.exe -list -v -keystore "%USERPROFILE%.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android

Ilya Sulimanov
  • 7,636
  • 6
  • 47
  • 68
  • Here is another solution https://stackoverflow.com/questions/27609442/how-to-get-the-sha-1-fingerprint-certificate-in-android-studio-for-debug-mode – Vasudev Vyas Feb 28 '19 at 04:05
0

Hi Run this command you will get your sha-1 key.

keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
Vasudev Vyas
  • 726
  • 1
  • 10
  • 28