Skip to content

Instantly share code, notes, and snippets.

@maomaobug
Last active April 14, 2017 03:10
Show Gist options
  • Save maomaobug/565dffded87756bd317f1a3fbc09128c to your computer and use it in GitHub Desktop.
Save maomaobug/565dffded87756bd317f1a3fbc09128c to your computer and use it in GitHub Desktop.
@ActivityScope
@Module
public class LoginRegisterActivityModule {
private final LoginRegisterActivity mActivity;
LoginRegisterActivityModule(LoginRegisterActivity activity) {
mActivity = activity;
}
@ActivityScope
@Provides
LoginRegisterContract.Navigator provideLoginRegisterNavigator() {
return mActivity;
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment