edenman
06/11/2020, 1:49 AMUnresolved reference: MutableStateFlow
compile error in my kmp module. Anybody else seen this? The IDE resolves it no problemimport kotlinx.coroutines.flow.MutableStateFlow
is the import statement, which looks right afaictcommonMain
deps implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$coroutinesVersion")
org.jetbrains.kotlinx:kotlinx-coroutines-core
, ktor was bringing in 1.3.4 transitively 😞commonMain
but the ktor dep was in androidMain
so that got picked up first