美文网首页
pod 导入三方框架后报错Linker command fail

pod 导入三方框架后报错Linker command fail

作者: 天黑打老虎 | 来源:发表于2023-07-04 18:33 被阅读0次

    pod 倒入 老版本的三方框架后报错,比如 HandyJSON、MBProgressHUD

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

    Linker command failed with exit code 1 (use -v to see invocation)

    版本兼容问题,修改方法: 在Podfile文件中 target 'x x x' do 的上方 添加以下代码后,重新执行 pod install

    #编译兼容老版本  iOS11.0

    post_installdo|installer|

      installer.pods_project.targets.eachdo|target|

        target.build_configurations.eachdo|config|

          ifconfig.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f <11.0

            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] ='11.0'

          end

        end

      end

    end

    相关文章

      网友评论

          本文标题:pod 导入三方框架后报错Linker command fail

          本文链接:https://www.haomeiwen.com/subject/pfjhudtx.html