Created
December 18, 2017 07:10
-
-
Save iammert/9da932c018b418e6a90c5045c8f7c445 to your computer and use it in GitHub Desktop.
AppComponent.java
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
@Component(modules = { | |
AndroidInjectionModule.class, | |
AppModule.class, | |
ActivityBuilder.class}) | |
public interface AppComponent { | |
@Component.Builder | |
interface Builder { | |
@BindsInstance Builder application(Application application); | |
AppComponent build(); | |
} | |
void inject(AndroidSampleApp app); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment