-
-
Notifications
You must be signed in to change notification settings - Fork 651
/
Copy pathbuild.gradle
39 lines (33 loc) · 1008 Bytes
/
build.gradle
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
apply plugin: 'com.android.library'
//apply plugin: 'bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)
android {
namespace 'org.openintents.openpgp'
defaultConfig {
compileSdk 34
minSdkVersion 21
targetSdkVersion 34
versionCode 9
versionName '12.0' // API-Version . minor
}
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
}
buildTypes {
release {
}
debug {
}
}
buildFeatures {
aidl true
}
}
//publish {
// userOrg = 'sufficientlysecure'
// groupId = 'org.sufficientlysecure'
// artifactId = 'openpgp-api'
// version = '12.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'
//}