Hi folks, can I ask if using coroutines with `nati...
# coroutines
k
Hi folks, can I ask if using coroutines with
native-mt
makes a difference when used in a standard kotlin android project? We see
native-mt
bumps occasionally like (kotlinCoroutinesVersion from 1.4.1 to 1.4.2-native-mt) and as I understand it,
native-mt
enables multithreaded coroutine support on Kotlin native projects only. One to ignore in our use case? Thanks in advance.
n
You're right, it's specifically for the native concurrency model. You can ignore it for jvm & Android
k
Thank you very much @nrobi !