thunderbird-android/plugins/openpgp-api-lib/openpgp-api/build.gradle

31 lines
917 B
Groovy
Raw Normal View History

2015-12-12 15:03:40 +00:00
apply plugin: 'com.android.library'
// apply plugin: 'bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)
android {
2016-10-19 10:35:28 +00:00
compileSdkVersion androidCompileSdkVersion.toInteger()
buildToolsVersion androidBuildToolsVersion
2015-12-12 15:03:40 +00:00
defaultConfig {
versionCode 8
versionName '9.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 = '9.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'
}
*/