Skip to content

Commit

Permalink
Add workaround for missing atomicfu cinterop
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed Dec 18, 2023
1 parent ad8dd3a commit e60d924
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions kmp-nativecoroutines-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,11 @@ kotlin {
implementation(libs.kotlinx.coroutines.test)
}
}
nativeMain {
dependencies {
// TODO: Remove workaround for https://github.com/Kotlin/kotlinx.coroutines/issues/3968
implementation("org.jetbrains.kotlinx:atomicfu:0.23.1")
}
}
}
}

0 comments on commit e60d924

Please sign in to comment.