I've got a simple android app with an embeded browser. Here it is:
WebView webview = new WebView(this);
setContentView(webview);
webview.loadUrl("192.168.1.106");
I'm running a web server on '192.168.1.106'. This server is alive and well and accessible through the web browser on the phone. When I start the app I get a 'Web Page not Available'. If I change the app to:
webview.loadUrl("http://google.com");
everything works. Am I missing something?