'connection To The Server Was Unsuccessful' Error When Launching Phonegap App On Android Emulator
I am using PhoneGap to build an Android application, the application is a combination of phonegap + jquery mobile. The application successfully launches in the emulator and I was
Solution 1:
This seems to be a phonegap 0.9.3 issue, as other people have reported the same problem (see here or here)
The problem might be solved by changing the loadUrlTimeoutValue
this.setIntegerProperty("loadUrlTimeoutValue", 70000);
Solution 2:
Use bigger value then 60sec, emulator can be extremely slow.
super.setIntegerProperty("loadUrlTimeoutValue", 360000);
and you can refer this also.. Check this!
Solution 3:
I have solved this by adding
super.setIntegerProperty("loadUrlTimeoutValue", 10000);
to the com.mypackage.xxx.java file for 10 sec waiting time.ie,
@OverridepublicvoidonCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/home/index.html");
super.setIntegerProperty("loadUrlTimeoutValue", 10000);
Post a Comment for "'connection To The Server Was Unsuccessful' Error When Launching Phonegap App On Android Emulator"