Skip to content

Instantly share code, notes, and snippets.

@singhsegv
Created October 15, 2018 12:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save singhsegv/c78f9d431b3359194b9d62769ffb6d9d to your computer and use it in GitHub Desktop.
Save singhsegv/c78f9d431b3359194b9d62769ffb6d9d to your computer and use it in GitHub Desktop.
package ${packageName};
@Module
public abstract class ${className}ActivityModule {
@Binds
@PerActivity
abstract ${className}Contract.Presenter providesPresenter(${className}Presenter presenter);
@Binds
@PerActivity
abstract ${className}Contract.View providesView(${className}Activity activity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment