File not found: /Applications/Xc

2023-10-11  本文已影响0人  晴天ccc

前言

  • MacOS Ventura 13.4.1
  • Xcode Version 14.3.1 (14E300c)

问题

在编译代码的时候出现以下问题:

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

Podfile文件尾部增加以下即可:

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
        end
    end
end
上一篇下一篇

猜你喜欢

热点阅读