美文网首页
xcode 14.3及以上报错

xcode 14.3及以上报错

作者: 独孤流 | 来源:发表于2023-08-07 22:08 被阅读0次

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

    image.png

    解决方案:
    参考:https://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3

    # 进入Xcode提示的位置
    cd /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/
    # 创建文件夹
    sudo mkdir arc
    # 进入文件夹
    cd  arc
    # 下载缺少的文件
    sudo git clone https://github.com/kamyarelyasi/Libarclite-Files.git .
    # 授权
    sudo chmod +x *
    

    如果能运行,但是不能archive打包,设置下Pod里的文件
    Pods → Target Support Files → xxxx → xxxx-frameworks.sh
    找到内容: source="$(readlink "${source}")"
    替换为: source="$(readlink -f "${source}")"

    image.png

    Xcode14.3打包出来的ipa,在iOS 13.x的系统下直接运行不了,安装好后点击就闪退
    解决方案:升级Xcode14.3.1就能解决


    Xcode高版本pod install时提示版本不兼容,设置下项目改成低版本就可以


    image.png

    相关文章

      网友评论

          本文标题:xcode 14.3及以上报错

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