Reputation: 18501
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?
Upvotes: 2
Views: 304
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