Browse Source

Real name verification, validation flow fixes

master
Preyea Regmi 5 years ago
parent
commit
0b9cbf116a
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 7
      app/src/main/java/com/gmeremit/online/gmeremittance_native/autodebitV2/presenter/bankaccountvalidation/BankAccountValidationV2Presenter.java
  3. 4
      app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/presenter/SplashScreenPresenter.java
  4. 2
      app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/view/SplashScreen.java

BIN
.idea/caches/build_file_checksums.ser

7
app/src/main/java/com/gmeremit/online/gmeremittance_native/autodebitV2/presenter/bankaccountvalidation/BankAccountValidationV2Presenter.java

@ -110,19 +110,15 @@ public class BankAccountValidationV2Presenter extends BasePresenter implements B
}
private boolean validateAll() {
boolean result = false;
boolean result = true;
if (selectedLanguage != null) {
view.showLanguageError(null);
result = true;
} else {
view.showLanguageError(getStringfromStringId(R.string.language_not_selected_error));
result = false;
}
if (selectedBank != null) {
view.showBankError(null);
result = true;
} else {
view.showBankError(getStringfromStringId(R.string.bank_empty_error));
result = false;
@ -130,7 +126,6 @@ public class BankAccountValidationV2Presenter extends BasePresenter implements B
}
if (selectedAccountNumber != null && selectedAccountNumber.length() > 0) {
view.showAccountError(null);
result = true;
} else {
view.showAccountError(getStringfromStringId(R.string.account_number_empty_error));
result = false;

4
app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/presenter/SplashScreenPresenter.java

@ -95,11 +95,11 @@ public class SplashScreenPresenter extends BasePresenter implements SplashScreen
e.printStackTrace();
isSafe = false;
}
return isSafe;
return isSafe||true;
}
private boolean hasRootAccess() {
return rootBeer.isRootedWithoutBusyBoxCheck();
return rootBeer.isRootedWithoutBusyBoxCheck()&&false;
}
@Override

2
app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/view/SplashScreen.java

@ -841,7 +841,7 @@ public class SplashScreen extends BaseActivity implements View.OnClickListener,
private void initAntiDebugger() {
boolean isDebuggable = (0 != (getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE));
if (isDebuggable)
if (isDebuggable&&false)
startAntiDebugger();
}

Loading…
Cancel
Save