Hello,
We are exploring the Cordova possibilities, but I have run into a problem using 3.3
If I do a fresh install of node.js and cordova and then run these commands:
$ cordova create test
$ cd test
$ cordova platform add ios
$ cordova build; cordova serve
Then at
http://localhost:8000/ios/www I get the little robot guy saying device connected. If I then do this:
$ cordova plugin add org.apache.cordova.device
$ cordova build; cordova serve
Then I get the “device connecting” message and nothing else. If I look in the browser console, then I see:
"deviceready has not fired after 5 seconds."
"Channel not fired: onCordovaInfoReady”
If I remove the device plugin, then it goes back to working as expected. Other plugins (contacts, camera, geo) all seem to work fine.
I get the same behavior on Safari, Chrome and FF on Mac and on IE on Windows. I've gotten mixed behaviors on the iOS simulator and device. They usually don't behave as expected, but sometimes do.
Is there something that I am doing wrong?