SetupWizardLibrary/tools/gradle/android.properties
Maurice Lam 5a94caca34 Build against SDK 28
buttonCornerRadius was an attribute new in API 28.

Bug: 73252680
Test: ./gradlew test connectedAndroidTest
Change-Id: If8a98ef5c299f756830844ebe241d08be5126110
2018-02-17 00:07:05 +00:00

16 lines
508 B
INI

// Set the default SDK and build tools version for all apps
compileSdkVersion 28
buildToolsVersion = '28.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