How to Add Xcode Bot Integration Number Into Build Script(如何将 Xcode Bot 集成编号添加到构建脚本中)
问题描述
我正在使用 Settings.bundle 文件创建一个 iPad 应用程序.我正在编写构建脚本来显示应用程序版本号和 xcode bot 集成号(不是捆绑构建号).我在网上搜索并找不到任何解决方案.这是我得到的:
I'm creating an iPad application with a Settings.bundle file. I'm writing build scripts to display the application version number and the xcode bot integration number (not the bundle build number). I've searched the web and couldn't find any solution. Here's what I got yet:
-- Add the app version number
cd $PROJECT_DIR
cd "$BUILT_PRODUCTS_DIR/$PRODUCT_NAME.app"
RELEASE_VERSION=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" Info.plist)
/usr/libexec/PlistBuddy -c "Set :PreferenceSpecifiers:1:DefaultValue $RELEASE_VERSION" Settings.bundle/Root.plist
-- Add the build version number
BUILD_NUMBER=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" Info.plist)
/usr/libexec/PlistBuddy -c "Set :PreferenceSpecifiers:2:DefaultValue $BUILD_NUMBER" Settings.bundle/Root.plist
在构建版本号中,我想将 CFBundleVersion 替换为 xcode bot 集成号.
In the build version number, I would like to replace the CFBundleVersion with the xcode bot Integration number.
推荐答案
我在我的 Xcode 项目中使用 Shell 脚本构建阶段 实现了这个.在我的例子中,我使用集成号来设置我构建产品的内部版本.我的脚本如下所示:
I implemented this using a Shell Script Build Phase in my Xcode project. In my case, I used the integration number to set the internal version of my built product. My script looks like this:
if [ "the$XCS_INTEGRATION_NUMBER" == "the" ]; then
echo "Not an integration build…"
xcrun agvtool new-version "10.13"
else
echo "Setting integration build number: $XCS_INTEGRATION_NUMBER"
xcrun agvtool new-version "$XCS_INTEGRATION_NUMBER"
fi
注意 XCS_INTEGRATION_NUMBER
默认存在于 Xcode Server 构建环境中.如果您想模拟集成构建(出于此脚本的目的),您只需将其作为自定义变量添加到构建设置中即可.
Note that XCS_INTEGRATION_NUMBER
exists by default in the Xcode Server build environment. If you want to simulate an integration build (for the purposes of this script), you can simply add it to your build settings as a custom variable.
这篇关于如何将 Xcode Bot 集成编号添加到构建脚本中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Xcode Bot 集成编号添加到构建脚本中
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01