I am developing an Android application which requires me to load a third-party website https://mmmoffice.com/. I am using webview to load this URL and the problem i'm facing is that, the captcha image from this webpage is not showing. If i open the same URL from the normal android browser, or google chrome browser, or firefox browser or UC browser, they all work well and the captcha image is shown. But its not showing in my webview. Please i need help.
I have read lots of article on stackoverflow and google, but none helped. Below is my code:
WebView webView = (WebView)findViewById(R.id.webMain);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("https://mmmoffice.com");