aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 0b0647f71aacdee8cd4fc53b14bd145e8fab8bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// please leave this here, so this library builds on its own
buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
    }
}

apply plugin: 'com.android.library'

android {
    compileSdkVersion 21
    buildToolsVersion '21.1.1'
    
    // Do not abort build if lint finds errors
    lintOptions {
        abortOnError false
    }
}