Xcode: Increment build number
问题 We use a script that creates a time stamp and replaces the apps build number. #!/bin/bash echo "Update Build Number to Timestamp" echo "--------------------------------" # fail on error set -e agvtool new-version -all $(date +%Y%m%d%H%M%S) This changes the build number to something like this: 201703241425 . We introduced an in-house framework to our Project. The command above also replaces the frameworks Build number and Current Library Version . However, the builds fail with the following