Last active
November 21, 2024 21:35
-
-
Save hujunfeng/8d609ec97c2403fd740d to your computer and use it in GitHub Desktop.
Add version in Settings.bundle for iOS apps
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PreferenceSpecifiers</key> | |
<array> | |
<dict> | |
<key>DefaultValue</key> | |
<string></string> | |
<key>Key</key> | |
<string>SNAppVersion</string> | |
<key>Title</key> | |
<string>Version</string> | |
<key>Type</key> | |
<string>PSTitleValueSpecifier</string> | |
</dict> | |
</array> | |
<key>StringsTable</key> | |
<string>Root</string> | |
</dict> | |
</plist> |
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
#!/bin/bash | |
# Add a Run Script in Build Phase and put in the content of this script | |
PLISTBUDDY="/usr/libexec/PlistBuddy" | |
INFO_PLIST="$CODESIGNING_FOLDER_PATH/Info.plist" | |
SETTINGS_PLIST="$CODESIGNING_FOLDER_PATH/Settings.bundle/Root.plist" | |
VERSION_NUMBER="`$PLISTBUDDY -c \"Print CFBundleShortVersionString\" \"$INFO_PLIST\"`" | |
BUILD_NUMBER="`$PLISTBUDDY -c \"Print CFBundleVersion\" \"$INFO_PLIST\"`" | |
VERSION="$VERSION_NUMBER ($BUILD_NUMBER)" | |
$PLISTBUDDY -c "Set :PreferenceSpecifiers:0:DefaultValue '$VERSION'" "$SETTINGS_PLIST" |
A simplified version of the build phase
PLISTBUDDY="/usr/libexec/PlistBuddy"
SETTINGS_PLIST="${CODESIGNING_FOLDER_PATH}/Settings.bundle/Root.plist"
VERSION="$MARKETING_VERSION ($CURRENT_PROJECT_VERSION)"
$PLISTBUDDY -c "Set :PreferenceSpecifiers:0:DefaultValue '$VERSION'" "$SETTINGS_PLIST"
Reference: https://stackoverflow.com/a/58552727/396949
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! Work great. Just keep in mind that the
update_version_settings_bundle.sh
assumes the Version preference is the first preference (Set :PreferenceSpecifiers:0:DefaultValue ...
)