SetupWizardLibrary/tools/gradle/android.properties
Maurice Lam e840c6ec69 Upgrade build tools to 25.0.0
Test: Builds and existing tests pass -- ./gradlew connectedAndroid
Change-Id: I10f5ea5f8e0dfb26bdf2cf2ce8c49c274b0e1ec9
2017-01-06 00:56:11 +00:00

16 lines
508 B
INI

// Set the default SDK and build tools version for all apps
compileSdkVersion 25
buildToolsVersion = '25.0.0'
// enable Java7
compileOptions.sourceCompatibility JavaVersion.VERSION_1_7
compileOptions.targetCompatibility JavaVersion.VERSION_1_7
// Don't build tests for android-library or android plugin
// unless explicitly enabled
buildTests = false
// There are so many lint errors at the time being (even in the support libs)
// that we need to disable them here for now
lintOptions.abortOnError false