guys, do we still have to add this dependency to ...
# multiplatform
r
guys, do we still have to add this dependency to androidMain:
Copy code
api("org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutines")
in a kotlin multiplatform project where
Copy code
api("org.jetbrains.kotlinx:kotlinx-coroutines-core")
is inside commonMain ?
l
The host Android app needs it.
e
if you don't use
Dispatchers.Main
then you may not need it, but you probably do need it
l
Dispatchers.Main is also used for calls to delay, even those happening in another dispatcher now.