# https://github.com/CocoaPods/CocoaPods/issues/11402
post_install do |installer|
# Fix bitcode.
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
# Fix Xcode14 bundle need sign
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
XCode14 & iOS16 适配问题汇总1、不升级电脑系统与 Xcode,调试iOS 16 1、下载iOS16 Support文件[https://github.com/RayJiang16/iOSDeviceSu...