Android webview crash "Fatal signal 5 (SIGTRAP)" Android webview crash "Fatal signal 5 (SIGTRAP)" java java

Android webview crash "Fatal signal 5 (SIGTRAP)"


Try this....

First add this

webView.setWebViewClient(new MyBrowser());

and then add this

public class MyBrowser extends WebViewClient {        @Override        public boolean shouldOverrideUrlLoading(WebView view, String url) {            // TODO Auto-generated method stub            if (url.equals(""YOUR URL)) {                Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));                startActivity(intent);                return true;            } else {                return false;            }        }    }