IOS: Facing issue when upgrading from cordova 2.2.0 to 2.3.0

I am developing an iOS application for telephony with cordova version 2.2.0. Now I want to upgrade to cordova 2.3.0 for some reason. To do this, I took the telephone documentation as a link, where they mentioned step by step.

I was able to do everything except the next step

Convert the Cordova.plist file to the config.xml file by running the script bin / cordova_plist_to_config_xml in the project file.

How to run this script and where should I run it. I ran this in the terminal but got the following error:

bash: no such file or directory was found

Please help me with this.

+4
source share
1 answer

This script is designed to convert your Cordova 2.2 Plist to cordova 2.3 XMLConfig ... In version 2.3 it requires xmlconfig for the corresponding normal plist..so we need to convert our plist to xmlconfig. The following script will do this.

The syntax for this script is

./cordova_plist_to_config_xml /Path to your Xcode project/ 

Example:

 ./cordova_plist_to_config_xml /Users/shabab/Desktop/Plancentral/Plancentral.xcodeproj 
0
source

All Articles