|
|
@@ -1,6 +1,7 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.couponmall;
|
|
|
|
|
|
import android.annotation.SuppressLint;
|
|
|
+import android.content.pm.ApplicationInfo;
|
|
|
import android.net.http.SslError;
|
|
|
import android.os.Bundle;
|
|
|
import android.support.annotation.NonNull;
|
|
|
@@ -68,6 +69,9 @@ public class CouponMallFragment extends FragmentBase<CouponMallPresenter> implem
|
|
|
|
|
|
webView.addJavascriptInterface(this, WebConstant.OBJECT_ID);
|
|
|
|
|
|
+ if (AppUtil.isDebug() && 0 != (getContext().getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE)) {
|
|
|
+ WebView.setWebContentsDebuggingEnabled(true);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@JavascriptInterface
|