Skip to content

Instantly share code, notes, and snippets.

@soundmasteraj
Forked from singhsegv/DemoActivityModule.java
Created December 3, 2020 07:12
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 soundmasteraj/3814a329863b31b85c96910c85fae50c to your computer and use it in GitHub Desktop.
Save soundmasteraj/3814a329863b31b85c96910c85fae50c 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