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

浙公网安备 33010602011771号