File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,32 @@ plugins {
3
3
id ' maven-publish'
4
4
}
5
5
6
+ ext {
7
+ tools = [
8
+ minSdk : 21 ,
9
+ targetSdk : 34 ,
10
+ compileSdk : 34 ,
11
+ versionCode : 2 ,
12
+ versionName : ' 1.9.3'
13
+ ]
14
+ }
15
+
6
16
group " com.github.lion1988dev"
7
17
8
18
android {
9
19
namespace " com.shockwave.pdfium"
10
20
11
- compileSdk 34
21
+ compileSdk rootProject . tools . compileSdk
12
22
13
23
defaultConfig {
14
- minSdkVersion 21
15
- targetSdk 34
16
- versionCode 1
17
- versionName " 1.9.2"
24
+ minSdkVersion rootProject. tools. minSdkVersion
25
+ targetSdk rootProject. tools. targetSdk
26
+
27
+ versionCode rootProject. tools. versionCode
28
+ versionName " ${ rootProject.tools.versionName} "
29
+
18
30
buildConfigField ' String' , ' VERSION_NAME' , " \" ${ defaultConfig.versionName} \" "
31
+
19
32
externalNativeBuild {
20
33
cmake {
21
34
cppFlags " "
@@ -73,7 +86,7 @@ publishing {
73
86
release(MavenPublication ) {
74
87
groupId = ' com.github.lion1988dev'
75
88
artifactId = ' PdfiumAndroid'
76
- version = " 1.9.1 "
89
+ version = " 1.9.3 "
77
90
78
91
afterEvaluate {
79
92
from components. release
You can’t perform that action at this time.
0 commit comments