blob: 3238250b7505ab8e62196c8d7d78662ae0fae870 [file] [log] [blame]
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.latestCompileSdk
buildToolsVersion = rootProject.buildToolsVersion
defaultConfig {
minSdkVersion 16
targetSdkVersion 24
}
lintOptions {
textReport true
textOutput file("library-lint-results.txt")
check 'UnitTestLintCheck'
check 'UnitTestLintCheck2'
absolutePaths false
}
}
dependencies {
lintChecks project(':lint')
}