File tree Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Original file line number Diff line number Diff line change 1
1
2
2
buildscript {
3
+ ext {
4
+ buildToolsVersion = " 28.0.3"
5
+ minSdkVersion = 16
6
+ compileSdkVersion = 28
7
+ targetSdkVersion = 28
8
+ supportLibVersion = " 28.0.0"
9
+ }
3
10
repositories {
11
+ google()
4
12
jcenter()
5
13
}
6
-
7
14
dependencies {
8
- classpath ' com.android.tools.build:gradle:1.3.1'
15
+ classpath ' com.android.tools.build:gradle:3.3.1'
16
+
17
+ // NOTE: Do not place your application dependencies here; they belong
18
+ // in the individual module build.gradle files
9
19
}
10
20
}
11
21
12
22
13
23
apply plugin : ' com.android.library'
14
24
15
25
android {
16
- compileSdkVersion 25
17
- buildToolsVersion " 25.0.1"
26
+ compileSdkVersion rootProject. ext. compileSdkVersion
27
+ compileOptions {
28
+ sourceCompatibility JavaVersion . VERSION_1_8
29
+ targetCompatibility JavaVersion . VERSION_1_8
30
+ }
31
+
32
+ compileSdkVersion 26
33
+ compileSdkVersion rootProject. ext. compileSdkVersion
18
34
19
35
defaultConfig {
20
- minSdkVersion 16
21
- targetSdkVersion 22
36
+ minSdkVersion rootProject . ext . minSdkVersion
37
+ targetSdkVersion rootProject . ext . targetSdkVersion
22
38
versionCode 1
23
39
versionName " 1.0"
24
40
ndk {
@@ -33,6 +49,6 @@ repositories {
33
49
34
50
35
51
dependencies {
36
- compile ' com.tom_roush:pdfbox-android:1.8.10.0'
37
- compile ' com.facebook.react:react-native:+'
52
+ implementation ' com.tom_roush:pdfbox-android:1.8.10.0'
53
+ implementation ' com.facebook.react:react-native:+'
38
54
}
You can’t perform that action at this time.
0 commit comments