Which approach is recommended when calling multiple suspend functions inside an activity or fragment? (Some functions require the result of another operation)
- Call every function inside one
lifecycleScope.launchlambda - Use multiple
lifecycleScope.launchfunctions for every suspend function
Does the behavior change?