Skip to content

Instantly share code, notes, and snippets.

@anandgaurav10
Last active August 24, 2017 19:01
Show Gist options
  • Save anandgaurav10/3f86c41add938a73b19bf8a0cec64f7d to your computer and use it in GitHub Desktop.
Save anandgaurav10/3f86c41add938a73b19bf8a0cec64f7d to your computer and use it in GitHub Desktop.
public class SplashPresenter<V extends SplashMvpView> extends BasePresenter<V> implements SplashMvpPresenter<V> {
public SplashPresenter(DataManager dataManager) {
super(dataManager);
}
@Override
public void decideNextActivity() {
if (getDataManager().getLoggedInMode()) {
getMvpView().openMainActivity();
} else {
getMvpView().openLoginActivity();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment