1.
使用Cocoapods的,在profile文件结尾加上
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
end
在项目文件夹打开终端 pod install 一次
2.
在项目的文件列表找到 Pods — Targets Support Files — Pods-你的项目名 — Pods-你的项目名-frameworks.sh(有些是 Pods-你的项目名-resources.sh)
或
点进去Command + F 搜索
source="$(readlink "${source}")
大概都在代码的44行,将其更改为
source="$(readlink -f "${source}
3.
大功告成,可以愉快的打包了!