You can increase the timeout value, see link
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
Update
In the example, I replaced my old code with this snippet, and it works:
I added import org.apache.cordova.* And I put super.loadUrl(Config.getStartUrl()) instead of the url method
import org.apache.cordova.*; import android.os.Bundle; public class MyApp extends DroidGap { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.loadUrl(Config.getStartUrl()); }
bleuscyther
source share