Showing
3 changed files
with
3 additions
and
2 deletions
... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' | ... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' |
2 | 2 | ||
3 | ext { | 3 | ext { |
4 | PUBLISH_GROUP_ID = 'ly.warp' | 4 | PUBLISH_GROUP_ID = 'ly.warp' |
5 | - PUBLISH_VERSION = '4.5.5.4r25' | 5 | + PUBLISH_VERSION = '4.5.5.4r26' |
6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
7 | } | 7 | } |
8 | 8 | ... | ... |
... | @@ -523,7 +523,7 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener | ... | @@ -523,7 +523,7 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener |
523 | 523 | ||
524 | SortTileModel tileBoxCoupons = new SortTileModel(); | 524 | SortTileModel tileBoxCoupons = new SortTileModel(); |
525 | if (WarplyManagerHelper.getActiveBoxCoupons() != null && WarplyManagerHelper.getActiveBoxCoupons().size() > 0) { | 525 | if (WarplyManagerHelper.getActiveBoxCoupons() != null && WarplyManagerHelper.getActiveBoxCoupons().size() > 0) { |
526 | - tileBoxCoupons.setCount(WarplyManagerHelper.getActiveBoxCoupons().size()); | 526 | + tileBoxCoupons.setCount(0); //WarplyManagerHelper.getActiveBoxCoupons().size() |
527 | tileBoxCoupons.setWeight(0); | 527 | tileBoxCoupons.setWeight(0); |
528 | } else { | 528 | } else { |
529 | tileBoxCoupons.setCount(0); | 529 | tileBoxCoupons.setCount(0); | ... | ... |
... | @@ -69,6 +69,7 @@ | ... | @@ -69,6 +69,7 @@ |
69 | android:gravity="center" | 69 | android:gravity="center" |
70 | android:orientation="vertical" | 70 | android:orientation="vertical" |
71 | android:translationZ="2dp" | 71 | android:translationZ="2dp" |
72 | + android:visibility="gone" | ||
72 | app:layout_constraintEnd_toEndOf="parent" | 73 | app:layout_constraintEnd_toEndOf="parent" |
73 | app:layout_constraintTop_toTopOf="parent"> | 74 | app:layout_constraintTop_toTopOf="parent"> |
74 | 75 | ... | ... |
-
Please register or login to post a comment