Tomas Kormanak
08/26/2021, 7:40 AMclass App : Application(), CoroutineScope by CoroutineScope(Dispatchers.Default)
Why App implements CoroutineScope? Is is just a shortcut to be able use launch
inside class? It actually expose scope api outside the class.
What about having the scope as a property, like this:
val scope = CoroutineScope(Dispatchers.Default)