Skip to content

Instantly share code, notes, and snippets.

@iammert
Created June 15, 2017 12:56
Show Gist options
  • Save iammert/4dd3a3ccfc3d6ad7b04d3f39d21b52bd to your computer and use it in GitHub Desktop.
Save iammert/4dd3a3ccfc3d6ad7b04d3f39d21b52bd to your computer and use it in GitHub Desktop.
MainActivityModule.java
@Module
public class MainActivityModule {
@Provides
MainView provideMainView(MainActivity mainActivity){
return mainActivity;
}
@Provides
MainPresenter provideMainPresenter(MainView mainView, ApiService apiService){
return new MainPresenterImpl(mainView, apiService);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment