Skip to content

Commit f91db6b

Browse files
committed
Update for AGP 7.4.2
1 parent 8bc98b4 commit f91db6b

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

openpgp-api/build.gradle

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,27 @@ apply plugin: 'com.android.library'
22
apply plugin: 'maven-publish'
33

44
android {
5-
compileSdkVersion 28
6-
75
defaultConfig {
8-
versionCode 9
9-
versionName '13.1' // API-Version . minor
6+
versionCode 10
7+
versionName '14.0' // API-Version . minor
108
minSdkVersion 9
11-
targetSdkVersion 28
9+
namespace 'org.openintents.openpgp'
10+
if (project.hasProperty('compileSdkVersion')) {
11+
compileSdk rootProject.ext.compileSdkVersion
12+
} else {
13+
compileSdk 28
14+
}
1215
}
1316

1417
lintOptions {
1518
abortOnError false
1619
}
20+
buildFeatures {
21+
aidl true
22+
}
1723
}
1824

25+
/*
1926
// https://developer.android.com/studio/build/maven-publish-plugin
2027
afterEvaluate {
2128
publishing {
@@ -45,3 +52,4 @@ afterEvaluate {
4552
}
4653
}
4754
}
55+
*/

0 commit comments

Comments
 (0)