Smth like (I’m probably simplifying the true Andro...
# coroutines
e
Smth like (I’m probably simplifying the true Android lifecycle):
Copy code
fun onCreate() { createJob = launch { create() } }
fun onStart() { startJob = launch { createJob.await(); start() } }
fun onResume() { resumeJob = launch { startJob.await(); resume() } }
fun onPause() { resumeJob.cancel() }
fun onStop() { startJob.cancel() }
fun onDestroy() { createJob.cancel() }
👍🏽 1