Created
March 13, 2025 10:07
-
-
Save chiragthummar/94c712a87b61cfea18737c97d1651036 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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