File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.3.21'
4
+ ext {
5
+ kotlin_version = ' 1.3.41'
6
+ kotlin_cotoutines_version = ' 1.2.1'
7
+ }
5
8
ext. versions = [
6
9
' compileSdk' : 28 ,
7
10
' minSdk' : 21 ,
8
11
' targetSdk' : 28 ,
9
- ' appcompat' : ' 1.0.2 ' ,
12
+ ' appcompat' : ' 1.1.0 ' ,
10
13
' constraintLayout' : ' 1.1.3'
11
14
]
12
15
repositories {
13
16
google()
14
17
jcenter()
15
18
}
16
19
dependencies {
17
- classpath ' com.android.tools.build:gradle:3.4.1 '
20
+ classpath ' com.android.tools.build:gradle:3.4.2 '
18
21
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
19
22
}
20
23
}
Original file line number Diff line number Diff line change @@ -41,9 +41,8 @@ dependencies {
41
41
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
42
42
implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
43
43
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 "
47
46
48
47
implementation ' androidx.annotation:annotation:1.1.0'
49
48
You can’t perform that action at this time.
0 commit comments