Skip to content

Instantly share code, notes, and snippets.

@svinouze
Last active December 27, 2021 12:55
Show Gist options
  • Save svinouze/6ad0781080fb820ddbf9fbae65bee7e3 to your computer and use it in GitHub Desktop.
Save svinouze/6ad0781080fb820ddbf9fbae65bee7e3 to your computer and use it in GitHub Desktop.
@HiltViewModel
class MyViewModel @Inject constructor(
private val repository: Repository,
private val savedStateHandle: SavedStateHandle,
) : ViewModel()
@AndroidEntryPoint
class MyActivity : AppCompatActivity() {
private val viewModel: MyViewModel by viewModels()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment