Browse Source

Real name verification megrged

master
Preyea Regmi 5 years ago
parent
commit
905b513702
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 4
      app/build.gradle
  3. 5
      app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/presenter/SplashScreenPresenter.java

BIN
.idea/caches/build_file_checksums.ser

4
app/build.gradle

@ -21,8 +21,8 @@ android {
applicationId "com.gmeremit.online.gmeremittance_native" applicationId "com.gmeremit.online.gmeremittance_native"
minSdkVersion 18 minSdkVersion 18
targetSdkVersion 28 targetSdkVersion 28
versionCode 11
versionName "2.1.0"
versionCode 12
versionName "2.1.1"
multiDexEnabled true multiDexEnabled true
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true

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

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

Loading…
Cancel
Save