Skip to content

Commit cced527

Browse files
committed
AndroidStudio 3.4.2
1 parent 7f7262a commit cced527

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
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
}

studyplus-android-sdk/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)