Missing file libarclite_iphoneos.a (Xcode 14.3) 或者archive 失败 run custom shell script[CP] Embed P...

   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.a (Xcode 14.3) 或者archive 失败 run custom shell script[CP] Embed P...)