Panagiotis Triantafyllou

feedback fixes

......@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'ly.warp'
PUBLISH_VERSION = '4.5.5.4r26'
PUBLISH_VERSION = '4.5.5.4r27'
PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
}
......
......@@ -167,6 +167,10 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener
mSecondEnd.setVisibility(View.GONE);
}
});
if (WarpUtils.getUserNonTelco(getContext())) {
nonTelcoDialog();
}
}
@Override
......@@ -643,9 +647,9 @@ public class MyRewardsFragment extends Fragment implements View.OnClickListener
}
private void initViews() {
if (WarpUtils.getUserNonTelco(getContext())) {
nonTelcoDialog();
}
// if (WarpUtils.getUserNonTelco(getContext())) {
// nonTelcoDialog();
// }
/** Deals Badge */
if (WarplyManagerHelper.getActiveDFYCoupons() != null && WarplyManagerHelper.getActiveDFYCoupons().size() > 0)
......
......@@ -198,11 +198,6 @@ public class WarpView extends WebView implements DefaultLifecycleObserver {
setBackgroundColor(ContextCompat.getColor(getContext(), android.R.color.transparent));
setWebViewClient(new WarplyWebViewClient());
setWebChromeClient(new WarplyWebChromeClient());
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
if (0 != (getContext().getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE)) {
WebView.setWebContentsDebuggingEnabled(true);
}
}
initCustomActionHandler();
}
......