Skip to content

Instantly share code, notes, and snippets.

@iammert
Created June 15, 2017 11:59
Show Gist options
  • Save iammert/19f30fc6173ce006154695c17590f669 to your computer and use it in GitHub Desktop.
Save iammert/19f30fc6173ce006154695c17590f669 to your computer and use it in GitHub Desktop.
AppModule.java
@Module(subcomponents = {
MainActivityComponent.class,
DetailActivityComponent.class})
public class AppModule {
@Provides
@Singleton
Context provideContext(Application application) {
return application;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment