I get this error. What should I do?
The path is valid and I've checked it. And I've made a clean and rebuilt the app again, and so forth. I really don't know what to do next!
In my activity class I have the following code:
import android.app.Activity;
import android.os.Bundle;
import org.apache.cordova.*;
public class TestPhoneGapActivity extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// setContentView(R.layout.main);
String url = "file:///assets/www/index.html";
super.loadUrl(url);
}
}