Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @Singleton
  2. @Component(
  3. modules = [
  4. AndroidInjectionModule::class,
  5. ApplicationModule::class
  6. ]
  7. )
  8. interface ApplicationComponent : AndroidInjector<TodoApplication> {
  9. @Component.Factory
  10. interface Factory {
  11. fun create(@BindsInstance applicationContext: Context): ApplicationComponent
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement