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/52da9b3e6604d0650f751265c9745164 to your computer and use it in GitHub Desktop.
Save soundmasteraj/52da9b3e6604d0650f751265c9745164 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