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

解决方案

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

 

posted @ 2023-05-15 17:13  ZhangShengjie  阅读(137)  评论(0编辑  收藏  举报