File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
4- ext. kotlin_version = ' 1.3.21'
4+ ext {
5+ kotlin_version = ' 1.3.41'
6+ kotlin_cotoutines_version = ' 1.2.1'
7+ }
58 ext. versions = [
69 ' compileSdk' : 28 ,
710 ' minSdk' : 21 ,
811 ' targetSdk' : 28 ,
9- ' appcompat' : ' 1.0.2 ' ,
12+ ' appcompat' : ' 1.1.0 ' ,
1013 ' constraintLayout' : ' 1.1.3'
1114 ]
1215 repositories {
1316 google()
1417 jcenter()
1518 }
1619 dependencies {
17- classpath ' com.android.tools.build:gradle:3.4.1 '
20+ classpath ' com.android.tools.build:gradle:3.4.2 '
1821 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1922 }
2023}
Original file line number Diff line number Diff line change @@ -41,9 +41,8 @@ dependencies {
4141 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
4242 implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
4343
44- def coroutines = " 1.1.1"
45- implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines "
46- implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines "
44+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_cotoutines_version "
45+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_cotoutines_version "
4746
4847 implementation ' androidx.annotation:annotation:1.1.0'
4948
You can’t perform that action at this time.
0 commit comments