Commit b35c09f535a5ca2ed3df49542ebeadc62f3913af
1 parent
0461360c
修改最低支持
Showing
1 changed file
with
11 additions
and
0 deletions
Podfile
| @@ -21,3 +21,14 @@ target 'metaCode' do | @@ -21,3 +21,14 @@ target 'metaCode' do | ||
| 21 | end | 21 | end |
| 22 | 22 | ||
| 23 | end | 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 |