aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/HtmlTextView/build.gradle
blob: a0b9b1bc6dcd0aece9ec6e28d5cb9a34d98fe027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
apply plugin: 'android-library'


android {
    compileSdkVersion 17
    buildToolsVersion '19.0.1'

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            res.srcDirs = ['res']
        }
    }
    
    // Do not abort build if lint finds errors
    lintOptions {
        abortOnError false
    }
}