When you launch coroutine you need to give it an e...
# coroutines
e
When you launch coroutine you need to give it an execution context (dispatcher). That is what
context
does here (just inherit main thread dispatcher). You can replace it with
CommonPool
or another dispatcher of your liking (Android
MainThread
, for example). Couple of previous sections in the doc covered that.