Anyone ran into issues with coroutines because of ...
# android
r
Anyone ran into issues with coroutines because of multidex? For some reason it cannot find a specific suspend fun in one of the dex files from a coroutine context.
s
There is a way to tell multidex certain classes to keep in the primary dex file. That'd fix your issue I think.
r
Tried that, but didn't help. Moved the class to the app module which fixed it.