I am implementing webview application in android. When i am trying to load https url one or two times it finishes the activity. Agian tryin
Delete this string:
super.onReceivedSslError(view, handler, error);
and in this method
public boolean shouldOverrideUrlLoading(WebView view, String url) {
turn return to false like this:
return false;
It helped me