Hi there, I have a question about coroutines, I us...
# android
n
Hi there, I have a question about coroutines, I used to inject parent Job inside every
launch
call, and call
job.cancel
in ViewModel's
onCleared
method. Now, I'm updating my code to use
CoroutineScope
and don't know what to do if I am not the one who is controlling the scope. Example with Paging library, this is how I used to do: