在使用“新构建系统”之前,我们有一个这样的构建阶段脚本:
infoplist="$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH"
builddate=`date`
/usr/libexec/PlistBuddy -c "Set :BuildDateString $builddate" "${infoplist}"
这种方式的意义在于在运行时写入 plist,而不会弄脏项目并且不必存储更改。使用“旧版构建系统”时,这仍然运行良好且完美。
在“新构建系统”上,此脚本不起作用。目录变量和写入 plist 将起作用,但更改会以某种方式被覆盖。
有没有办法通过构建阶段脚本写入构建的 plist?如果没有,有没有办法实现只在应用程序运行时才写入信息而不弄脏本地 repo 的目标。
Best Answer-推荐答案 strong>
看起来有时,在“新构建系统”下,Process Info.plist 步骤在所有 Run custom scripts 步骤之后。
所以我使用脚本在 bundle 中生成另一个 custom.plist
#!/usr/bin/env ruby
require 'cfpropertylist'
require 'pathname'
build_info = {
'Time' => Time.now.to_s,
'CommitHash' => `git log --pretty="%h" | head -n1`.rstrip
}
plist = CFPropertyList:ist.new
plist.value = CFPropertyList.guess(build_info)
plist_path = Pathname.new(ENV['BUILT_PRODUCTS_DIR']) / ENV['CONTENTS_FOLDER_PATH'] / 'build_info.plist'
plist.save(plist_path, CFPropertyList:ist::FORMAT_XML)
关于ios - 使用 Xcode 的 "New Build System"写入构建目录 info.plist,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/52613024/
|