Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
80
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. public interface AppComponent extends AndroidInjector<DaggerApplication> {
  4.  
  5. @Override
  6. void inject(DaggerApplication instance);
  7.  
  8. @Component.Builder
  9. interface Builder {
  10.  
  11. @BindsInstance
  12. Builder application(Application application);
  13.  
  14. AppComponent build();
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement