-
-
Save soundmasteraj/8e709fe23cd2498e0d6a20e4a1380f7d to your computer and use it in GitHub Desktop.
This file contains 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