SetupWizardLibrary/tools/gradle/android.properties
Maurice Lam b72f3fb459 Add test for LinkAccessibilityHelper
- For the AccessibilityDelegateCompat methods, add tests that the
  delegation is done correctly.
- Refactored LinkAccessibilityHelper to make the dependency direction
  clearer.

Test: ./gradlew connectedAndroidTest test
Change-Id: I6132c0820ee6de1b9cc71a2838bdf05a34d7d2af
2017-10-06 18:16:17 -07:00

16 lines
508 B
INI

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