Xcode 编译提示 Missing file libarclite_iphoneos.a错误的解决办法

2024年10月16日

Xcode编译的时候提示

File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

这样的错误

解决办法:

在你的Podfile里加入如下内容,13.0 根据你项目的最小IOS编译版本来,可以是11.0 12.0等等。

 

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'] = '13.0'
           end
       end
   end
end

如果是fultter项目

 

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'] = '13.0'
           end
       end
   end
   installer.pods_project.targets.each do |target|
       flutter_additional_ios_build_settings(target)
   end
end

 

 

© 1987 - 2023 张晓刚 版权所有

浙ICP备16002143号-1