Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created September 22, 2020 04:55
Show Gist options
  • Save ch8n/a0a1cbc76aa4125b8f177608905c2b23 to your computer and use it in GitHub Desktop.
Save ch8n/a0a1cbc76aa4125b8f177608905c2b23 to your computer and use it in GitHub Desktop.
for medium article
// you can remove `detailViewModel()` from injector and add it into a scoped e
// DI packag inside of your feature.
object MovieDetailInjector {
fun detailViewModel(activity: AppCompatActivity) : MovieDetailViewModel {
return ViewModelResolver.provideDetailViewModel(
Injector.detailViewModelFactory, activity
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment