Browse Source

App restart way changed

master
preyearegmi 6 years ago
parent
commit
ca47c3f763
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 16
      app/src/main/java/com/gmeremit/online/gmeremittance_native/recipientV2/view/recipientlisting/RecipientListingV2Activity.java
  3. 1
      app/src/main/java/com/gmeremit/online/gmeremittance_native/settings/view/SettingsView.java

BIN
.idea/caches/build_file_checksums.ser

16
app/src/main/java/com/gmeremit/online/gmeremittance_native/recipientV2/view/recipientlisting/RecipientListingV2Activity.java

@ -169,16 +169,16 @@ public class RecipientListingV2Activity extends BaseActivity implements Recipien
this.recipientListingV2PresenterInterface.saveSelectedRecipientInfomation(recipientInfoModel);
//Proceed to send money
// this.recipientListingV2PresenterInterface.getAllAutoDebitAccounts();
this.recipientListingV2PresenterInterface.getAllAutoDebitAccounts();
//TODO payment through wallet only
AutoDebitAccount selectedAccount=new AutoDebitAccount();
selectedAccount.setType("Wallet");
selectedAccount.setKftcAccountId("");
SendMoneyRequiredData sendMoneyRequiredData=recipientListingV2PresenterInterface.getSendMoneyRequiredData(selectedAccount);
Intent intent = new Intent(RecipientListingV2Activity.this, SendMoneyV2Activity.class);
intent.putExtra(RecipientAddV2Activity.RECIPIENT_INFO_BUNDLE_KEY, sendMoneyRequiredData);
startActivity(intent);
// AutoDebitAccount selectedAccount=new AutoDebitAccount();
// selectedAccount.setType("Wallet");
// selectedAccount.setKftcAccountId("");
// SendMoneyRequiredData sendMoneyRequiredData=recipientListingV2PresenterInterface.getSendMoneyRequiredData(selectedAccount);
// Intent intent = new Intent(RecipientListingV2Activity.this, SendMoneyV2Activity.class);
// intent.putExtra(RecipientAddV2Activity.RECIPIENT_INFO_BUNDLE_KEY, sendMoneyRequiredData);
// startActivity(intent);
}

1
app/src/main/java/com/gmeremit/online/gmeremittance_native/settings/view/SettingsView.java

@ -75,7 +75,6 @@ public class SettingsView extends BaseActivity {
private void changeLocale(String localeCode) {
GmeApplication.getStorage().edit().putString(USER_PREFERRED_LOCALE, localeCode).apply();
logout();
restartApp();
}

Loading…
Cancel
Save