Skip to content

Instantly share code, notes, and snippets.

@singhsegv
Created October 11, 2018 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save singhsegv/7350783bb7d9d1751c37f2e7f929d907 to your computer and use it in GitHub Desktop.
Save singhsegv/7350783bb7d9d1751c37f2e7f929d907 to your computer and use it in GitHub Desktop.
@Module
public abstract class DemoActivityModule {
@Binds
@PerActivity
abstract DemoContract.Presenter providesPresenter(DemoPresenter demoPresenter);
@Binds
@PerActivity
abstract DemoContract.View providesView(DemoActivity demoActivity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment