Back to Home

Gradle Helper

Categories

Select a category to view commands

Build

Click on any command to copy it to clipboard

Build Project

Build the project

./gradlew build

Example: ./gradlew clean build

Assemble Project

Assemble the project without running tests

./gradlew assemble

Example: ./gradlew clean assemble

Run Tests

Run all tests

./gradlew test

Example: ./gradlew clean test

Run Checks

Run all checks including tests

./gradlew check

Example: ./gradlew clean check

Clean Build

Clean build artifacts

./gradlew clean

Example: ./gradlew clean build