I want to open the following link in WebView
https://hrms.onlinesbi.com/irj/portal
I am using following settings on webview to do that
WebSettings webSettings = mBrowserView.getSettings();
webSettings.setJavaScriptEnabled(true);
//enable zoom control
webSettings.setSupportZoom(true);
webSettings.setDisplayZoomControls(false);
webSettings.setBuiltInZoomControls(true);
webSettings.setDomStorageEnabled(true);
//TODO : just for test
webSettings.setPluginState(WebSettings.PluginState.ON);
webSettings.setAllowFileAccess(true);
but not able to open this website in webview, unable to understand what is the issue with this website bcus others websites working without any issue. How can I fix this problem?