Skip to content

Instantly share code, notes, and snippets.

@CostaFot
Created February 1, 2026 17:25
Show Gist options
  • Select an option

  • Save CostaFot/24023a1bd898ec2756742ef9e6e72e3b to your computer and use it in GitHub Desktop.

Select an option

Save CostaFot/24023a1bd898ec2756742ef9e6e72e3b to your computer and use it in GitHub Desktop.
@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