Hello i am developing an Android app based on phonegap, i am using cordova 2.0, when i try to load the index file from sd card it shows A Netwrok Error Occurred and does not load the file, but this only happens with ICS but it's working on 3.0 and lower
when i load the file from assets it works fine but the problem is when i load it from sd card
here is my code `public class ApplicationView extends DroidGap { WebView appWebView;
@Override
public void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
String destDirectory = Environment.getExternalStorageDirectory()
+ "/DroidLibrary/leftbankappunzipped/www/LeftBankInt/index.html";
String url = "file:///" + destDirectory;
super.init();
super.clearCache();
super.clearHistory();
super.loadUrl(url,10000);
}`