Aaron Waller
05/29/2021, 11:52 AMno such module 'shared'
I tried rebuilding the project but nothing helps.
When I create a new project it works fine at first.
I also tried to run pod update
but nothing helps. P.S I'm pretty new to KMM and IOS
EDIT
I fixed it by removing
implementation("io.ktor:ktor-client-ios:1.5.4")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-ios:1.5.0-native-mt")
from the iosMain module.
What is the right dependency for using coroutines or something for concurrency?John O'Reilly
05/29/2021, 12:22 PMcommonMain
section
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.kotlinCoroutines}") {
isForce = true
}
Arkadii Ivanov
05/29/2021, 10:32 PM