Skip to content

Instantly share code, notes, and snippets.

@chiragthummar
Created March 13, 2025 10:07
Show Gist options
  • Save chiragthummar/94c712a87b61cfea18737c97d1651036 to your computer and use it in GitHub Desktop.
Save chiragthummar/94c712a87b61cfea18737c97d1651036 to your computer and use it in GitHub Desktop.
MyEventListener { _, event ->
when (event) {
Lifecycle.Event.ON_CREATE -> {
}
Lifecycle.Event.ON_START -> {
}
Lifecycle.Event.ON_RESUME -> {
}
Lifecycle.Event.ON_PAUSE -> {
}
Lifecycle.Event.ON_STOP -> {
}
Lifecycle.Event.ON_DESTROY -> {
}
else -> {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment