Android Api 23. Webview How To Ignore Javascript Errors
Im using WebView to embed a third party website into an app. mWebView = (WebView) findViewById(R.id.activity_main_webview); WebSettings webSettings = mWebView.getSettings(); webSet
Solution 1:
Try to use setDomStorageEnabled(true)
WebSettings settings = webView.getSettings();
settings.setDomStorageEnabled(true);
Post a Comment for "Android Api 23. Webview How To Ignore Javascript Errors"