Commit 6a77e808c2922242516c03b512729e3d03bd1a5a
Merge branch 'master' of http://bj.gitlab.cnlive.com/ios-team/CNLiveMateCode
Showing
1 changed file
with
11 additions
and
0 deletions
Podfile
| ... | ... | @@ -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 | ... | ... |