Skip to content

Commit b222a1d

Browse files
Update coroutines version to 1.3.9
1 parent 8d8eecf commit b222a1d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,13 @@ android {
4242
dependencies {
4343

4444
def lifecycle_version = "2.2.0"
45+
def coroutines_version = "1.3.9"
4546

4647
implementation fileTree(dir: 'libs', include: ['*.jar'])
4748
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
4849

49-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7"
50-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7"
50+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
51+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
5152

5253
implementation 'androidx.appcompat:appcompat:1.1.0'
5354
implementation 'com.google.android.material:material:1.1.0'
@@ -86,7 +87,7 @@ dependencies {
8687

8788
testImplementation 'junit:junit:4.12'
8889
testImplementation 'androidx.arch.core:core-testing:2.1.0'
89-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.4'
90+
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version"
9091
testImplementation 'com.squareup.retrofit2:retrofit-mock:2.7.1'
9192

9293
androidTestImplementation 'androidx.test.ext:junit:1.1.1'

0 commit comments

Comments
 (0)