1// Set the default SDK and build tools version for all apps
2compileSdkVersion 28
3buildToolsVersion = '28.0.0'
4
5// enable Java7
6compileOptions.sourceCompatibility JavaVersion.VERSION_1_7
7compileOptions.targetCompatibility JavaVersion.VERSION_1_7
8
9// Don't build tests for android-library or android plugin
10// unless explicitly enabled
11buildTests = false
12
13// There are so many lint errors at the time being (even in the support libs)
14// that we need to disable them here for now
15lintOptions.abortOnError false
16