aboutsummaryrefslogtreecommitdiffstats
path: root/example/build.gradle
blob: c73848ca49d24663eaca8a95e3933f0a77f5d09d (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:22.2.1'
    compile project(':openpgp-api')
}

android {
    compileSdkVersion 22
    buildToolsVersion '21.1.2'

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

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