aboutsummaryrefslogtreecommitdiffstats
path: root/example/build.gradle
blob: d605ac43db8d8241fc19c15ed5ecbe866426fc16 (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
apply plugin: 'com.android.application'

dependencies {
    compile 'com.android.support:support-v4:23.3.0'
    compile project(':openpgp-api')
}

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.2'

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 23
        applicationId 'org.openintents.openpgp.example'
        versionCode 6
        versionName '7.0'
    }

    // Do not abort build if lint finds errors
    lintOptions {
        abortOnError false
    }
}