Tuesday, October 20, 2015

Hướng dẫn thiết lập XCode để tự tăng số lần build cho ứng dụng trên iOS

Để tiện quản lý những bản build mình đã build ra để đưa cho khách hàng, bạn cần phải đánh số cho những bản build đó ngoài số version.

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:
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
Hiện tại mình chỉ tăng số build theo đế độ release.
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.