Skip to content

Instantly share code, notes, and snippets.

@paulocns
Last active August 4, 2018 22:15
Show Gist options
  • Save paulocns/081b51a8768211ef3171e3ba44e968fa to your computer and use it in GitHub Desktop.
Save paulocns/081b51a8768211ef3171e3ba44e968fa to your computer and use it in GitHub Desktop.
@Module(subcomponents = arrayOf(ViewModelSubComponent::class))
class ApplicationModule() {
@Singleton
@Provides
internal fun provideViewModelFactory(
viewModelSubComponent: ViewModelSubComponent.Builder): ProjectViewModelFactory {
return ProjectViewModelFactory(viewModelSubComponent.build())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment