Xcode 14.3 编译报错 file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeD

ZhangShengjie / 2023-05-15 / 原文

解决方案

podfile 最后添加如下代码 

post_install do |installer|
    installer.generated_projects.each do |project|
          project.targets.each do |target|
              target.build_configurations.each do |config|
                  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
               end
          end
   end
en