aboutsummaryrefslogtreecommitdiffstats
path: root/openpgp-api/build.gradle
blob: 8b8c0904f345b0675a1ceb3f8c90b1b6a1d4411a (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 22
    buildToolsVersion '21.1.2'

    defaultConfig {
        versionCode 8
        versionName '10.0' // API-Version . minor
        minSdkVersion 9
        targetSdkVersion 22
    }

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

publish {
    userOrg = 'sufficientlysecure'
    groupId = 'org.sufficientlysecure'
    artifactId = 'openpgp-api'
    version = '10.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'
}