I am working on PhoneGap, and when I launch my application, I received an error message. The channel is irreparably broken and will be deleted! , and my application closes. Here is my code:
public class DossiuerActivity extends DroidGap {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/menu.html");
}
}
Please tell me what I'm doing wrong.
source
share