Here is my code to the Supplement to the App.java
package com.phonegap.gameworld;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class App extends Activity {
npb@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WebView webview = new WebView(this);
webview.loadUrl("file:///android_asset/www/index.html");
setContentView(webview);
}
}