File tree Expand file tree Collapse file tree 2 files changed +5
-22
lines changed
Expand file tree Collapse file tree 2 files changed +5
-22
lines changed Original file line number Diff line number Diff line change 11buildscript {
22 // Buildscript is evaluated before everything else so we can't use getExtOrDefault
33 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'
165 }
176 repositories {
187 google()
@@ -28,8 +17,7 @@ buildscript {
2817
2918repositories {
3019 google()
31-
32- jcenter()
20+ mavenCentral()
3321}
3422
3523apply plugin : " com.android.library"
@@ -63,6 +51,6 @@ dependencies {
6351 implementation " com.facebook.react:react-native:+"
6452 implementation " com.linecorp.linesdk:linesdk:5.8.0"
6553 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 "
6856}
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