Where Do I Change version number in xcode Where Do I Change version number in xcode xcode xcode

Where Do I Change version number in xcode


The version and build number is present on info.plist. If you open this file, you'll see two entries related to versioning

  • Bundle version string (short)
  • Bundle version

Another option is to click on the root on xcode project navigator, you'll see two text boxes to edit the same information (Version, Build)

enter image description here

For sure Cordova IDE offers another way to do it.


Instead of changing it on the Xcode project, try changing it in the config.xml file.

<widget id="com.test" version="1.3" ios-CFBundleVersion="1.200001111" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"></widget>

version sets the CFBundleShortVersionString (release version), and ios-CFBundleVersion sets the CFBundleVersion (build version)

Then run cordova prepare