Created
October 15, 2018 12:46
-
-
Save singhsegv/c78f9d431b3359194b9d62769ffb6d9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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