I\'m a complete noob to Android and this is just a simple test. Based it on this tutorial.
Here goes the HelloWebApp.java
package com.company.somethi
As discussed in https://stackoverflow.com/a/7561674/1818089,
along with
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.setWebChromeClient(new WebChromeClient());
you need to enable DOM storage
WebSettings webSettings = webView.getSettings();
webSettings.setDomStorageEnabled(true);