Does Activity state affects LaunchedEffect's corou...
# compose-android
p
Does Activity state affects LaunchedEffect's coroutine suspend (at suspension points) until Activity become active? In other words, does LauncedEffect continue working while Activity is in background?
s
If you want to sync with the activity, then you need to follow its lifecycle
🙏 1