App Dies On Startup (connection to the server was unsuccessful)
I have an Android application that I\'m writing using PhoneGap BUILD. The app was working fine earli
Here is the working solution
create a new page main.html
example:
tittle
change the following in mainactivity.java
super.loadUrl("file:///android_asset/www/index.html");
to
super.loadUrl("file:///android_asset/www/main.html");
Now build your application and it works on any slow connection
refernce.
NOTE: This is a workaround I found in 2013.