diff --git a/pages/common/gradle.md b/pages/common/gradle.md index 11fa511f6c..9dc466d476 100644 --- a/pages/common/gradle.md +++ b/pages/common/gradle.md @@ -1,11 +1,19 @@ # gradle -> Gradle is the official build system for Android Studio. +> Gradle is an advanced open source build automation system. - Compile a package: `gradle build` +- Exclude test task: + +`gradle build -x {{test}}` + +- Run in offline mode to prevent gradle from accessing the network during builds: + +`gradle build --offline` + - Clear the build folder: `gradle clean`