Last active
August 13, 2018 18:29
-
-
Save catalinghita8/8c060a73956e00488724ac891e2d23f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@AppScoped | |
@Component(modules = {ViewModelModule.class, | |
AppModule.class, | |
ActivityBindingModule.class, | |
AndroidSupportInjectionModule.class}) | |
public interface AppComponent extends AndroidInjector<Application> { | |
@Component.Builder | |
interface Builder { | |
@BindsInstance | |
AppComponent.Builder application(Application application); | |
AppComponent build(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment