1

Earlier it was working fine by choosing Gradle--> signing report For reference Get Sha1 fingerprint

but in the latest stable version(2.2) its not generating by this process. Please guide.

Thanks

Community
  • 1
  • 1
Deepak Gupta
  • 552
  • 7
  • 22

3 Answers3

1

Alternate method:

Generate SHA1 in terminal by the following command

keytool -list -v -keystore c:\users\your_user_name\.android\debug.keystore -alias androiddebugkey -storepass android 

Link

Community
  • 1
  • 1
abdul khan
  • 843
  • 2
  • 7
  • 24
1

Aftre a research I found my answer i.e need to toggle task execution/text mode. For more clarification see the image :enter image description here

Deepak Gupta
  • 552
  • 7
  • 22
0

This got me too - it's the Gradle Console you're looking for!

Mine was in the bottom right - yours could be somewhere else

Mine was in the bottom right - yours could be somewhere else

UPDATE:

I also notice that you can view it in the Run console by selecting the "Toggle task executions/text mode" - this will take you from the output that tells you about the gradle execution process to the actual outputs and logs from that process.

To all the people telling him to use keytool - he is looking for a way to do it within the IDE, not the first result you got when you googled..!

Saik Caskey
  • 500
  • 4
  • 18