karan ahir
karan ahir

Reputation: 51

Unable to find signing report in the new android studio update

I updated my android studio to the latest version day before yesterday and now I can't find the signing report which used to be under Tasks in the Gradle section on the right hand side.

Upvotes: 5

Views: 4145

Answers (4)

Andy Essien
Andy Essien

Reputation: 131

In newer android studio versions alot of components had been updated and some name and options have also changed so to solve this problem in updated android studio version ?

go to settings -> experimental -> now check the box configure all Gradle task during Gradle sync (this can make Gradle sync slower) then click apply and rebuild project, now it should show up in the tasks folder.

Upvotes: 1

Ayan Shaikh
Ayan Shaikh

Reputation: 23

Just Go In Settings

Ctrl + Alt + S or File --> Settings 

Then Go To Experimental and uncheck Do not Build Gradle Task list during Gradle sync.

First Set Of Instructions

Then Click Apply Then Close The window and press Sync Project With Gradle Files .

Second Set Of Instructions

Walla!! Here You GO!! Result

Upvotes: 1

Amimul Ihsan
Amimul Ihsan

Reputation: 156

Go to android view on android studio, and type

gradlew signingReport

Upvotes: 1

daan_cover
daan_cover

Reputation: 31

I have the same "issue" (maybe it's a new feature, idk). But as a workaround, you can also use the command ./gradlew signingReport in the terminal.

Upvotes: 3

Related Questions