Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @Singleton
  2. @Component(
  3. modules = [
  4. AndroidSupportInjectionModule::class,
  5. AppModule::class
  6. ]
  7. )
  8. interface ApplicationComponent : AndroidInjector<CustomApplication> {
  9.  
  10. @Component.Builder
  11. abstract class Builder : AndroidInjector.Builder<CustomApplication>() {
  12.  
  13. abstract override fun build(): ApplicationComponent
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement