https://kotlinlang.org logo
Title
u

user

07/11/2022, 9:11 PM
Question about launchWhenX and repeatOnLifecycle I have the following code and a few questions that need to be answered: override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) lifecycleScope.launchWhenResumed { delay(2000) Log.d("LifeCycleAware", "launchWhenStarted: before calling") val result = differentDispatcher() Log.d("LifeCycleAware", "launchWhenStarted: after calling $result") } } private suspend fun...