1.7 KiB
Auto increasing build numbers
The recommended way to do versioning of your app versions is as follows:
- Each version gets an ongoing
build
number which increases by1
for every version asCFBundleVersion
inInfo.plist
- Additionally
CFBundleShortVersionString
inInfo.plist
will contain you target public version number as a string like1.0.0
This ensures that each app version is uniquely identifiable, and that live and beta version numbers never ever collide.
This is how to set it up with Xcode 4:
-
Pick
File | New
, chooseOther
andConfiguration Settings File
, this gets you a new .xcconfig file. -
Name it
buildnumber.xcconfig
-
Add one line with this content:
BUILD_NUMBER = 1
-
Then click on the project on the upper left in the file browser (the same place where you get to build settings), click on the project again in the second-to-left panel, and click on the Info tab at the top of the inner panel.
-
There, you can choose
Based on Configuration File
for each of your targets for each of your configurations (debug, release, etc.) -
Select your target
-
Select the
Summary
tab -
For
Build
enter the value:${BUILD_NUMBER}
-
Select the
Build Phases
tab -
Select
Add Build Phase
-
Choose
Add Run Script
-
Add the following content:
if [ "$CONFIGURATION" == "AdHoc_Distribution" ] then /usr/bin/perl -pe 's/(BUILD_NUMBER = )(\d+)/$1.($2+1)/eg' -i buildnumber.xcconfig fi
-
Change
AdHoc_Distribution
to the actual name of the Xcode configuration(s) you wnat the build number to be increased.Note: Configuration names should not contain spaces!
-
If you want to increase the build number before the build actuallry starts, just drag it up