Created
February 1, 2026 17:25
-
-
Save CostaFot/24023a1bd898ec2756742ef9e6e72e3b 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
| @EntryPoint | |
| @InstallIn(ActivityComponent::class) | |
| interface CustomRetainedViewModelEntryPoint : RetainedViewModelEntryPoint<CustomRetainedViewModel> | |
| @RetainedEntryPoint(CustomRetainedViewModelEntryPoint::class) | |
| class CustomRetainedViewModel @Inject constructor( | |
| // ... | |
| ) : RetainedViewModel() { | |
| // ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment