Skip to content

Commit

Permalink
Revert "Bump Coroutines Native multithread dependency version"
Browse files Browse the repository at this point in the history
This reverts commit 46c30fa.

Coroutines 1.4.1-native-mt has a regression that makes MutableStateFlow unusable on Native.
See Kotlin/kotlinx.coroutines#2138.
  • Loading branch information
twyatt committed Nov 22, 2020
1 parent 46c30fa commit 58b0aeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api(coroutines("core", version = "1.4.1-native-mt"))
api(coroutines("core", version = "1.3.9-native-mt-2"))
api(uuid())
}
}
Expand All @@ -40,7 +40,7 @@ kotlin {

val macosX64Main by getting {
dependencies {
implementation(coroutines("core", version = "1.4.1-native-mt!!"))
implementation(coroutines("core", version = "1.3.9-native-mt-2!!"))
implementation(stately("isolate-macosx64"))
}
}
Expand Down

0 comments on commit 58b0aeb

Please sign in to comment.