美文网首页
Missing file libarclite_iphoneos

Missing file libarclite_iphoneos

作者: 三三哥 | 来源:发表于2023-06-07 10:39 被阅读0次

       Missing file libarclite_iphoneos.a (Xcode 14.3) 解决:   

    Podfile 里面增加 :

      post_installdo|installer_representation|

        installer_representation.pods_project.targets.eachdo|target|

          target.build_configurations.eachdo|config|

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

            end

        end

      end

    强行把pod 集成的所有库提升到10.0 , 原因是 xcode 14.3 之后 ,最小版本要到11.0 但是实际测试 10.0也可以.

    archive 失败 run custom shell script[CP] Embed Pods Frameworks 报错

    终端 pod --version 

    Cocoapods 版本 <= 1.11.2, 2个方法:

    1、升级cocoapods 至最新版本 即可解决。

    2、怕麻烦想解决当下问题:

    图文结合:

    1 2

    修改下  Targets Support Fules/ Pods-项目名称/ Pods-项目名称-frameworks.sh , 搜索 source=“$(readlink “$(source)”)” 修改为 source=“$(readlink  -f “$(source)”)”  然后在archive.   然后你就会开开心心下班回家。

    相关文章

      网友评论

          本文标题:Missing file libarclite_iphoneos

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