'Connection to the server was unsuccessful' error when launching phonegap app on android emulator

后端 未结 3 2118
不知归路
不知归路 2021-02-08 06:33

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

3条回答
  •  醉话见心
    2021-02-08 07:19

    I have solved this by adding

    super.setIntegerProperty("loadUrlTimeoutValue", 10000);  
    

    to the com.mypackage.xxx.java file for 10 sec waiting time.ie,

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        super.loadUrl("file:///android_asset/www/home/index.html");
        super.setIntegerProperty("loadUrlTimeoutValue", 10000); 
    

提交回复
热议问题