I created an Android WebView app on Android 4.3 which firstly opens a log in page and after that it should link me to a https page, but instead of opening the https page it says "Web page not available". I tried to open the same with the web browser and firstly opens "The site's security certificate is not trusted!" and after pressing to proceed the page opens.
Though I used:
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error)
{
handler.proceed();
}
the WebView still won't open the https page. Is there any possible way to open the https page in the webview? Could you please help me?