Panagiotis Triantafyllou

feedback fixes

...@@ -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.4r26' 5 + PUBLISH_VERSION = '4.5.5.4r27'
6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk' 6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
7 } 7 }
8 8
......
...@@ -167,6 +167,10 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener ...@@ -167,6 +167,10 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener
167 mSecondEnd.setVisibility(View.GONE); 167 mSecondEnd.setVisibility(View.GONE);
168 } 168 }
169 }); 169 });
170 +
171 + if (WarpUtils.getUserNonTelco(getContext())) {
172 + nonTelcoDialog();
173 + }
170 } 174 }
171 175
172 @Override 176 @Override
...@@ -643,9 +647,9 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener ...@@ -643,9 +647,9 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener
643 } 647 }
644 648
645 private void initViews() { 649 private void initViews() {
646 - if (WarpUtils.getUserNonTelco(getContext())) { 650 +// if (WarpUtils.getUserNonTelco(getContext())) {
647 - nonTelcoDialog(); 651 +// nonTelcoDialog();
648 - } 652 +// }
649 653
650 /** Deals Badge */ 654 /** Deals Badge */
651 if (WarplyManagerHelper.getActiveDFYCoupons() != null && WarplyManagerHelper.getActiveDFYCoupons().size() > 0) 655 if (WarplyManagerHelper.getActiveDFYCoupons() != null && WarplyManagerHelper.getActiveDFYCoupons().size() > 0)
......
...@@ -198,11 +198,6 @@ public class WarpView extends WebView implements DefaultLifecycleObserver { ...@@ -198,11 +198,6 @@ public class WarpView extends WebView implements DefaultLifecycleObserver {
198 setBackgroundColor(ContextCompat.getColor(getContext(), android.R.color.transparent)); 198 setBackgroundColor(ContextCompat.getColor(getContext(), android.R.color.transparent));
199 setWebViewClient(new WarplyWebViewClient()); 199 setWebViewClient(new WarplyWebViewClient());
200 setWebChromeClient(new WarplyWebChromeClient()); 200 setWebChromeClient(new WarplyWebChromeClient());
201 - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
202 - if (0 != (getContext().getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE)) {
203 - WebView.setWebContentsDebuggingEnabled(true);
204 - }
205 - }
206 initCustomActionHandler(); 201 initCustomActionHandler();
207 } 202 }
208 203
......