Skip to content

Instantly share code, notes, and snippets.

@oznus
Last active July 18, 2017 04:23
Show Gist options
  • Save oznus/914886cb8373300c36ce59f8ca42afff to your computer and use it in GitHub Desktop.
Save oznus/914886cb8373300c36ce59f8ca42afff to your computer and use it in GitHub Desktop.
Mocking UI Application
public class MyAppApplication extends Application {
MyAppComponent myAppComponent;
@Override
public void onCreate() {
super.onCreate();
myAppComponent = DaggerMyAppComponent.builder()
.myAppModule(new MyAppModule())
.build();
}
public void setMyAppComponent(MyAppComponent myAppComponent) {
this.myAppComponent = myAppComponent;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment