Guest User

Untitled

a guest
Nov 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @Singleton
  2. @Component(modules = arrayOf(
  3. AndroidInjectionModule::class,
  4. ActivityBuilder::class))
  5. interface AppComponent{
  6. @Component.Builder
  7. interface Builder {
  8. @BindsInstance
  9. fun application(application: Application): Builder
  10. fun build(): AppComponent
  11. }
  12.  
  13. fun inject(app: AndroidInjectorApp)
  14. }
Add Comment
Please, Sign In to add comment