Hong
Hong

Reputation: 18501

Documentation for Gradle tasks in Android Studio

The Gradle tasks pane on the right side of Android Studio has a long list of tasks as shown in the following screenshot. Where can I find the documentation for them? enter image description here

Upvotes: 2

Views: 304

Answers (1)

aga
aga

Reputation: 29426

If you want to see the list of commands which can be executed from the current project, you can type gradle -q tasks in the console while being in the project directory. This command also has parameter --all which prints all available commands and more details on them: gradle -q tasks --all.

Upvotes: 3

Related Questions