Hi,
We had the same issue. After studying logswith logcatWe found out that the cause is the problem permissions.
just add
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE">
to AndroidManifest.xml
If it still does not work, add an extra permission
<uses-permission android:name="android.permission.INTERNET" />
Good luck
PS
(if you find a way to add those in config.xml, I will be glad to hear about it :)
source
share