Skip to content

Instantly share code, notes, and snippets.

@aqua30
Created November 8, 2022 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aqua30/81a85807d8ee6cad19a14138e7b4c58c to your computer and use it in GitHub Desktop.
Save aqua30/81a85807d8ee6cad19a14138e7b4c58c to your computer and use it in GitHub Desktop.
public class SheroesApplication extends Application {
SheroesAppComponent mSheroesAppComponent;
@Override
public void onCreate() {
super.onCreate();
mSheroesAppComponent = DaggerSheroesAppComponent.builder()
.sheroesAppModule(
new SheroesAppModule(this, this)
)
.build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment