Skip to content

Instantly share code, notes, and snippets.

@svinouze
Last active December 27, 2021 12:55
Show Gist options
  • Save svinouze/a633370cbe8d31aeaf3f0e893ea4f0a0 to your computer and use it in GitHub Desktop.
Save svinouze/a633370cbe8d31aeaf3f0e893ea4f0a0 to your computer and use it in GitHub Desktop.
class MyActivity : AppCompatActivity() {
@Inject
lateinit var viewModelFactory: SavedStateViewModelFactory.Factory
private val viewModel: MyViewModel by lazy {
ViewModelProvider(this, viewModelFactory.create(this, intent.extras))
.get(MyViewModel::class.java)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment