Browse Source

Logout fixes

master
preyearegmi 6 years ago
parent
commit
44911a1c0c
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 5
      app/src/main/java/com/gmeremit/online/gmeremittance_native/homeV2/view/HomeActivityV2.java

BIN
.idea/caches/build_file_checksums.ser

5
app/src/main/java/com/gmeremit/online/gmeremittance_native/homeV2/view/HomeActivityV2.java

@ -347,9 +347,10 @@ public class HomeActivityV2 extends BaseActivity implements HomeParentViewContra
@Override @Override
public void performLogout() { public void performLogout() {
presenter.clearAllData(); presenter.clearAllData();
startActivity(new Intent(HomeActivityV2.this, SplashScreen.class));
Intent intent=new Intent(HomeActivityV2.this, SplashScreen.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
finish();
} }
public void setWalletNo(TextView controlNo, String walletNumber, String bankName) { public void setWalletNo(TextView controlNo, String walletNumber, String bankName) {

Loading…
Cancel
Save