Skip to content

Instantly share code, notes, and snippets.

@piotrmadry
Last active July 3, 2017 07:25
Show Gist options
  • Save piotrmadry/3cb59b8205e0f1a76cb07b6ff7750066 to your computer and use it in GitHub Desktop.
Save piotrmadry/3cb59b8205e0f1a76cb07b6ff7750066 to your computer and use it in GitHub Desktop.
@Override
public void onCreate() {
applicationComponent = initializeAppComponent();
applicationComponent.inject(this);
}
protected AppComponent initializeAppComponent() {
return DaggerAppComponent.builder()
.applicationModule(new ApplicationModule(this))
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment