Reputation: 51
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
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
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.
Then Click Apply Then Close The window and press Sync Project With Gradle Files .
Walla!! Here You GO!! Result
Upvotes: 1
Reputation: 156
Go to android view on android studio, and type
gradlew signingReport
Upvotes: 1
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