Android Studio 4.2 doesn't show signing report in the Gradle bar

17,219

Solution 1

  1. Click on right hand side gradle icon

enter image description here

  1. Type gradle signingReport in the terminal

enter image description here

then you get the desired SHA fingerprint.

Solution 2

in terminal type

gradle signingReport

and must pres Ctrl+enter keys enter image description here

enter image description here

Solution 3

I struggled with this too. The latest update (Currently: Android Studio 4.2.1) didn't have the Tasks options under Gradle > app

Instead, go to the terminal and type gradlew signingReport

Solution 4

Unchecked the 'Do not build gradle task list during gradle sync' and click 'OK'.

enter image description here

Now press the gradle button again and you will see the options

enter image description here

Now press signing report to get SHA1

Solution 5

Step 1: open setting click on the "Experimental" option
step 2: uncheck---> "do not build Gradle task list during Gradle sync"
step 3: sync your project again
now u can see the signing report in the Gradle tab

Share:
17,219
Admin
Author by

Admin

Updated on August 05, 2022

Comments

  • Admin
    Admin almost 2 years

    I'm starting a new project using Firebase and I have to get an SHA1 key from my project. Recently I've updated Android Studio to version 4.2 and the signing report tab disappeared from the Gradle bar.

    Follow the image :

    enter image description here

    How can I get SHA1 easily in android studio 4.2?