aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 59b1086cc11b97b73cfe5c3b7e1b498d6df3d2be (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
        classpath 'com.novoda:bintray-release:0.2.7'
    }
}

apply plugin: 'com.android.library'
apply plugin: 'bintray-release'

android {
    compileSdkVersion 21
    buildToolsVersion '21.1.2'
    
    defaultConfig {
        versionCode 1
        versionName '6.0' // API-Version . minor
        minSdkVersion 9
        targetSdkVersion 21
    }
    
    // Do not abort build if lint finds errors
    lintOptions {
        abortOnError false
    }
}

publish {
    userOrg = 'dschuermann'
    groupId = 'org.openintents.openpgp'
    artifactId = 'openpgp-api'
    version = '6.0'
    description = 'The OpenPGP API provides methods to execute OpenPGP operations, such as sign, encrypt, decrypt, verify, and more without user interaction from background threads'
    website = 'http://www.openkeychain.org/'
}