August 2017
Beginner to intermediate
220 pages
4h 50m
English
As the reader will have seen, Gradle scripts generally have a single project (or root) file and one or more module level files:

We are told not to edit this file in comments in the root script; unless we have configuration options common to all modules, this is best left as-is.
Module-level scripts are of far more interest to us and the following is a breakdown of a typical one.
The first line simply declares the use of the Gradle plugin:
apply plugin: 'com.android.application'
Next, Android-targeted API level and build tools versions are declared:
android { compileSdkVersion 27 buildToolsVersion ...Read now
Unlock full access