I discovered yesterday that Cordova doesn’t play too nicely when you upgrade XCode to 5.1 so you can deploy to iOS 7.1 devices.
That said there are several steps that you need to follow in order to get Cordova working again in 5.1 prior to the Cordova 3.5.0 update being released:
- Update your local version of cordova using:
npm install -g cordova
(this should upgrade you to 3.4 if you were on a previous release, which I was on 3.3.0) - You then need to upgrade your version of Cordova for your projects by issuing
cordova platform upgrade [ios | android]
(do each separately and any other platform you may be using) - Once upgraded, you’ll want to add the diffs from this post. They’re basically patches for the time being until Cordova 3.5.0 is released. Thanks much to @shazron for these!
- After that you can follow these directions from Shazron to ensure you have XCode configured properly. It’s very important you remove ALL these extra settings (e.g. Any iOS SDK, etc.) under Architectures->Debug (and Release) and add “arm64″ to Valid Architectures for your CordovaLib project settings (then target) as follows:
- To get it working in Android you have to re-add the platforms/android/CordovaLib directory to be sure the new JAR is introduced into your project. I use IntelliJ so all you have to do is remove the old one under Project Structure and add the new lib. Then add the resulting lib to your Android project and move it up to the top in your dependency list.
Hopefully this gets you up and running quickly again!
