报错:link command failed with exit code 1(use -v to see invocaiton)
原因:新版本Xcode删除了特定目录下的一些文件文章来源:https://www.toymoban.com/news/detail-518799.html
解决:文章来源地址https://www.toymoban.com/news/detail-518799.html
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# xcode 14.3 不再支持iOS11以下版本
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 11.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
end
end
到了这里,关于升级Xcode14.3,项目无法运行解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!