Recently I was working on loading url in WebView, the url loads fine without any issue on Android 4.2 but when I run the same code on android 2.2 it throws error, to track the error I override the method in my WebViewClient
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler,
SslError error) {
super.onReceivedSslError(view, handler, error);
handler.proceed();
}
To check if there is issue in my code, I pasted same url in Android 4.2 browser, worked fine but when I paste it in android 2.2 browser it shows error dialogue ( See the image ), any help appreciated