aboutsummaryrefslogtreecommitdiffstats
path: root/openpgp-api/build.gradle
blob: 8ce368b4853ed80e1022d6a359ea4ed4969ecfab (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
apply plugin: 'com.android.library'
apply plugin: 'bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.3'

    defaultConfig {
        versionCode 9
        versionName '11.0' // API-Version . minor
        minSdkVersion 9
        targetSdkVersion 23
    }

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

publish {
    userOrg = 'sufficientlysecure'
    groupId = 'org.sufficientlysecure'
    artifactId = 'openpgp-api'
    version = '11.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 = 'https://github.com/open-keychain/openpgp-api'
}