Skip to content

Commit

Permalink
add coroutines dependency explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameri11 committed Aug 4, 2023
1 parent 19b1f90 commit 976297e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ afterEvaluate { project ->
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation libs.kotlin.stdlib
implementation libs.kotlinx.coroutines.core
implementation libs.kotlin.reflect

implementation libs.androidx.appcompat
implementation libs.androidx.constraintlayout
Expand All @@ -166,5 +168,4 @@ dependencies {
classifier = "sources"
}
}
implementation libs.kotlin.reflect
}
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dgis-sdk = "7.2.1"
appcompat = "1.6.1"
constraintlayout = "2.1.4"
core = "1.10.1"
coroutines = "1.7.3"
fragment = "1.6.1"
legacySupport = "1.0.0"
# Temporarily can't use version >20 because of breaking changes in v21.
Expand Down Expand Up @@ -39,6 +40,7 @@ androidx-legacySupport = { module = "androidx.legacy:legacy-support-v4", version

kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" }
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }

gms-locations = { module = "com.google.android.gms:play-services-location", version.ref = 'gms-location' }
material = { module = "com.google.android.material:material", version.ref = "material" }
Expand Down

0 comments on commit 976297e

Please sign in to comment.