Where should I run gradle commands?
Hereof, how do I run gradle?
1.1. If you press the run button in Android Studio, it triggers the corresponding Gradle task and starts the application. You can also run Gradle via the command line. To avoid unnecessary local installation, Gradle provides a wrapper script which allows you to run Gradle without any local installation.
Similarly one may ask, how do I run gradle from command prompt?
To run a Gradle command, you can simply use the gradlew script found in the root of your project (or gradlew. bat on Windows) followed by the name of the task you want to run. For instance, to build a debug version of your Android application, you can run ./gradlew assembleDebug from the root of your repository.
The Gradle command-line parser will add all non-option arguments as tasks to be executed to the build. So if we want to pass an extra argument to our build script via the command-line we must use the option -P or --project-prop . With this option we can set a project property and then use it in the build script.