We are happy to announce that we have just released Cordova iOS 6.1.1
! This is Cordova's official platform for building iOS mobile applications.
To upgrade:
cordova platform remove ios
cordova platform add ios@6.1.1
Release Highlights
This release contains primarily a fix for deploying to devices, as well as an update to the cordova-common library which we hope will address several issues around Info.plist
modifications.
-
Resolve deploying to a connected device (since 6.0.0)
The Cordova iOS 6.0.0 release was unable to deploy apps to connected iPhone and iPad devices. Thanks to first-time contributor imgos for tracking down the source of the problem and providing a fix.
-
Fix for identifying the correct
Info.plist
fileThis has been a long-standing pain point for Cordova iOS users, particularly when plugins attempt to use
edit-config
orconfig-file
to add directives to theInfo.plist
file. In some cases, depending on which plugins and CocoaPods were installed, those config changes would end up in the wrong plist file.This issue was fixed in Cordova Common 4.0.2, and we've pulled that dependency into this release. More details can be found in the pull request and original bug ticket.
-
Append
startURL
to the initial URL when using custom schemes (since 6.0.0)When using a custom scheme in Cordova iOS 6.0.0 and a
config.xml
content
path that pointed to a subfolder ofwww
, that subfolder would be treated as the root of the custom scheme. While this is not a common situation, it turns out that is how the mobilespec test suite is implemented.The fix here is that the root of the custom scheme will always map to the
www
folder. More details can be found in the pull request.
Please report any issues you find at issues.cordova.io!