
This is the code snippet I'm using
final WebView webVu=(WebView)findViewById(R.id.webView1);
webVu.loadUrl("someURL");
webVu.getSettings().setJavaScriptEnabled(true);
I have tried as many solutions as setting the correct date time and everything on AVD.
Manifest Internet Permissions
<uses-permission android:name="android.permission.INTERNET" />
But so far nothing has happened.
source
share