Skip to content

Commit 7de0aff

Browse files
committed
chore(build.gradle.kts): add kotlinx-coroutines-core dependency
Add the kotlinx-coroutines-core library version 1.8.1 to the build file's dependencies. This commit ensures the project has access to the coroutine framework for asynchronous programming.
1 parent 6d5ca70 commit 7de0aff

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ allprojects {
212212

213213
dependencies {
214214
compileOnly(kotlin("stdlib-jdk8"))
215+
216+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
217+
215218
testOutput(sourceSets.getByName("test").output.classesDirs)
216219
}
217220
}

0 commit comments

Comments
 (0)