I realized that it does not work in versions of Android version 4.3.
I have an android app that has a webview. When I try to download the URL " http://instagram.com " it does not work. It shows a blank page, but the facebook webpage is working. This is really important for me, please help.
WebView view = (WebView) findViewById(R.id.webView1);
view.getSettings().setJavaScriptEnabled(true);
view.loadUrl("http://www.instagram.com");
source
share