Browse Source

Constraint layout updated to 2.0.0-beta3

master
Preyea Regmi 5 years ago
parent
commit
86587e6571
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 12
      .idea/modules.xml
  3. 8
      app/build.gradle
  4. 3
      app/src/main/java/com/gmeremit/online/gmeremittance_native/homeV2/presenter/HomeNotificationHandler.java
  5. 13
      app/src/main/res/layout/fragment_home_v3.xml

BIN
.idea/caches/build_file_checksums.ser

12
.idea/modules.xml

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/SpinnerDatePickerLib-release/SpinnerDatePickerLib-release.iml" filepath="$PROJECT_DIR$/SpinnerDatePickerLib-release/SpinnerDatePickerLib-release.iml" />
<module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />
<module fileurl="file://$PROJECT_DIR$/gme-android.iml" filepath="$PROJECT_DIR$/gme-android.iml" />
<module fileurl="file://$PROJECT_DIR$/httpclient-release/httpclient-release.iml" filepath="$PROJECT_DIR$/httpclient-release/httpclient-release.iml" />
<module fileurl="file://$PROJECT_DIR$/securitykeypad/securitykeypad.iml" filepath="$PROJECT_DIR$/securitykeypad/securitykeypad.iml" />
</modules>
</component>
</project>

8
app/build.gradle

@ -120,11 +120,11 @@ android {
dependencies { dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible //noinspection GradleCompatible
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.0.0' implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
// implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta3'
implementation 'androidx.vectordrawable:vectordrawable:1.0.0'
// implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta3'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.squareup.retrofit2:retrofit:2.4.0' implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0' implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

3
app/src/main/java/com/gmeremit/online/gmeremittance_native/homeV2/presenter/HomeNotificationHandler.java

@ -25,7 +25,8 @@ public class HomeNotificationHandler {
public HomeNotificationHandler(GmeApplication.StringExtractor stringExtractor, boolean kycSubmit, boolean isVerified, String pennyTestStatus, String redirectTo) { public HomeNotificationHandler(GmeApplication.StringExtractor stringExtractor, boolean kycSubmit, boolean isVerified, String pennyTestStatus, String redirectTo) {
this.kycSubmit = kycSubmit; this.kycSubmit = kycSubmit;
this.isVerified = isVerified; this.isVerified = isVerified;
this.redirectTo = redirectTo;
// this.redirectTo = redirectTo;
this.redirectTo = "autoDebit";
this.stringExtractor = stringExtractor; this.stringExtractor = stringExtractor;
this.pennyTestStatus = pennyTestStatus; this.pennyTestStatus = pennyTestStatus;
} }

13
app/src/main/res/layout/fragment_home_v3.xml

@ -103,23 +103,14 @@
android:textSize="12sp" android:textSize="12sp"
app:txtfontName="@string/semibold" app:txtfontName="@string/semibold"
android:visibility="visible" android:visibility="visible"
android:gravity="start"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/nameHeaderBarrier"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/dividerView" app:layout_constraintTop_toBottomOf="@id/dividerView"
app:layout_constraintEnd_toStartOf="@+id/lb_rewardpoint"
tools:text="Some very very very long text name goes here, the name is so long that it cannot be described. It is beyond the comprehension that such long name could also exist. Mind blown!!" /> tools:text="Some very very very long text name goes here, the name is so long that it cannot be described. It is beyond the comprehension that such long name could also exist. Mind blown!!" />
<androidx.constraintlayout.widget.Barrier
android:id="@+id/nameHeaderBarrier"
android:layout_width="1dp"
android:layout_height="0dp"
app:barrierDirection="start"
app:constraint_referenced_ids="tv_namelabel,lb_rewardpoint"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/lb_rewardpoint"
app:layout_constraintStart_toEndOf="@+id/tv_namelabel"
app:layout_constraintTop_toTopOf="parent" />
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView <com.gmeremit.online.gmeremittance_native.customwidgets.GmeTextView
android:layout_width="wrap_content" android:layout_width="wrap_content"

Loading…
Cancel
Save