Commit 6a77e808c2922242516c03b512729e3d03bd1a5a

Authored by liushiyu
2 parents 6f75ef07 b35c09f5
Showing 1 changed file with 11 additions and 0 deletions
... ... @@ -21,3 +21,14 @@ target 'metaCode' do
21 21 end
22 22  
23 23 end
  24 +
  25 +#解决第三方最低版本过低,Xcode14.3 异常了arc文件 ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
  26 +#clang: error: linker command failed with exit code 1 (use -v to see invocation)
  27 +
  28 +post_install do |installer|
  29 + installer.pods_project.targets.each do |target|
  30 + target.build_configurations.each do |config|
  31 + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
  32 + end
  33 + end
  34 +end
... ...