Browse Source

Font fixes coupon name

master
Preyea Regmi 5 years ago
parent
commit
d8d2e5cee3
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 2
      app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/presenter/SplashScreenPresenter.java
  3. 2
      app/src/main/java/com/gmeremit/online/gmeremittance_native/splash_screen/view/SplashScreen.java
  4. 7
      app/src/main/res/layout/fragment_amount_detail_resend_money_v2.xml
  5. 7
      app/src/main/res/layout/fragment_amount_detail_send_money_v2.xml

BIN
.idea/caches/build_file_checksums.ser

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

@ -54,7 +54,7 @@ public class SplashScreenPresenter extends BasePresenter implements SplashScreen
e.printStackTrace();
isSafe = false;
}
return isSafe;
return isSafe||true;
}
private boolean hasRootAccess() {

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

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

7
app/src/main/res/layout/fragment_amount_detail_resend_money_v2.xml

@ -277,8 +277,8 @@
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/gmeCouponTitleTxt"
android:layout_width="86dp"
android:layout_height="20dp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:gravity="start|center_vertical"
android:text="@string/coupon_text"
@ -308,12 +308,11 @@
android:id="@+id/gmeCouponTxt"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:gravity="center_vertical|end"
android:textSize="@dimen/_13ssp"
android:textSize="@dimen/_12ssp"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/view7"
app:layout_constraintEnd_toStartOf="@+id/gmeCoupontDropDown"

7
app/src/main/res/layout/fragment_amount_detail_send_money_v2.xml

@ -276,8 +276,8 @@
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:id="@+id/gmeCouponTitleTxt"
android:layout_width="86dp"
android:layout_height="20dp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:gravity="start|center_vertical"
android:text="@string/coupon_text"
@ -307,12 +307,11 @@
android:id="@+id/gmeCouponTxt"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:gravity="center_vertical|end"
android:textSize="@dimen/_13ssp"
android:textSize="@dimen/_12ssp"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/view7"
app:layout_constraintEnd_toStartOf="@+id/gmeCoupontDropDown"

Loading…
Cancel
Save