aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/keychain-api-library/build.gradle
blob: f9da72cb8bc65757f70b2a319ef09d77446d6f9e (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:0.8.0'
    }
}

apply plugin: 'android-library'

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