1 // Set the default SDK and build tools version for all apps 2 compileSdkVersion 23 3 buildToolsVersion = '23.0.2' 4 5 // enable Java7 6 compileOptions.sourceCompatibility JavaVersion.VERSION_1_7 7 compileOptions.targetCompatibility JavaVersion.VERSION_1_7 8 9 // Don't build tests for android-library or android plugin 10 // unless explicitly enabled 11 buildTests = 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 15 lintOptions.abortOnError false 16