Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. @Singleton
  2. @Component(modules = {ApplicationModule.class,
  3. ActivityBindingModule.class,
  4. AndroidSupportInjectionModule.class})
  5. public interface AppComponent extends AndroidInjector<DaggerApplication> {
  6.  
  7. @Override
  8. void inject(DaggerApplication instance);
  9.  
  10. @Component.Builder
  11. interface Builder {
  12.  
  13. @BindsInstance
  14. Builder application(Application application);
  15.  
  16. AppComponent build();
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement