File tree 2 files changed +5
-22
lines changed
2 files changed +5
-22
lines changed Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
3
3
ext {
4
- kotlinVersion = rootProject. ext. has(' kotlinVersion' )
5
- ? rootProject. ext. get(' kotlinVersion' )
6
- : project. properties[' ReactNativeLine_kotlinVersion' ]
7
-
8
- buildToolsVersion = project. properties[' ReactNativeLine_buildToolsVersion' ]
9
- minSdkVersion = project. properties[' ReactNativeLine_minSdkVersion' ]
10
- compileSdkVersion = project. properties[' ReactNativeLine_compileSdkVersion' ]
11
- targetSdkVersion = project. properties[' ReactNativeLine_targetSdkVersion' ]
12
- coroutinesAndroidVersion = " 1.0.1"
13
- coroutinesCoreVersion = " 1.0.1"
14
- gsonVersion = " 2.8.6"
15
- linesdkVersion = project. properties[' ReactNativeLine_lineSdkVersion' ]
4
+ kotlinVersion = ' 1.7.21'
16
5
}
17
6
repositories {
18
7
google()
@@ -28,8 +17,7 @@ buildscript {
28
17
29
18
repositories {
30
19
google()
31
-
32
- jcenter()
20
+ mavenCentral()
33
21
}
34
22
35
23
apply plugin : " com.android.library"
@@ -63,6 +51,6 @@ dependencies {
63
51
implementation " com.facebook.react:react-native:+"
64
52
implementation " com.linecorp.linesdk:linesdk:5.8.0"
65
53
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion "
66
- implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:$c oroutinesAndroidVersion "
67
- implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$c oroutinesCoreVersion "
54
+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.1 "
55
+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1 "
68
56
}
Original file line number Diff line number Diff line change 1
- ReactNativeLine_kotlinVersion =1.7.21
2
- ReactNativeLine_compileSdkVersion =28
3
- ReactNativeLine_minSdkVersion =21
4
- ReactNativeLine_buildToolsVersion =30.0.2
5
- ReactNativeLine_targetSdkVersion =30
6
- ReactNativeLine_lineSdkVersion =5.8.0
1
+ android.useAndroidX =true
You can’t perform that action at this time.
0 commit comments