summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/lintCustomLocalAndPublishRules/library-local-only/build.gradle
blob: 9300b407499074af045a201fbbaa109d6d84ead5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
apply plugin: 'com.android.library'

android {
    namespace "com.example.library"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 24

    }

    lintOptions {
        textReport true
        textOutput file("library-lint-results.txt")
        checkOnly 'UnitTestLintCheck'
        checkOnly 'UnitTestLintCheck2'
        absolutePaths false
    }
}

dependencies {
    lintChecks project(':lint')
}