Bước 1: Thêm file setting.bundle vào project:
với nội dung như sau:
Bước 2: Thêm vào đoạn script với nội dung sau vào setting:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "${CONFIGURATION}" = "Release" ]; then | |
#!/bin/bash | |
#get path to the BUILT .plist, NOT the packaged one! this fixes the off-by-one bug | |
builtInfoPlistPath=${TARGET_BUILD_DIR}/${INFOPLIST_PATH} | |
echo "using plist at $builtInfoPlistPath" | |
#increment the build number when to archieve new build | |
buildNumber=$(/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" "$builtInfoPlistPath") | |
echo "retrieved current build number: $buildNumber" | |
buildNumber=$(($buildNumber + 1)) | |
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$builtInfoPlistPath" | |
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$INFOPLIST_FILE" | |
#compose the version number string | |
versionString=$(/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" "$builtInfoPlistPath") | |
versionString+=" (" | |
versionString+=$(/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" "$builtInfoPlistPath") | |
versionString+=")" | |
#write the version number string to the settings bundle | |
#IMPORTANT: this assumes the version number is the second property in the settings bundle! | |
/usr/libexec/PlistBuddy -c "Set :PreferenceSpecifiers:1:DefaultValue $versionString" "Settings.bundle/Root.plist" | |
fi |
Bước 3: Mỗi khi bạn Archive hoặc build theo chế độ release chúng sẽ tự động tăng số lần build. Mỗi khi ứng dụng cài thành công, bạn có thể kiểm tra chúng trong setting của hệ thống.
Chúc các bạn thành công.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.