美文网首页
xcode12 模拟器无法编译

xcode12 模拟器无法编译

作者: sfandy | 来源:发表于2020-12-13 18:58 被阅读0次

    标签:xcode12 模拟器无法编译
    标签:Bugly.framework/Bugly(libBugly.a-arm64-master.o), building for iOS Simulator

    第一步:
    在主项目和pod项目的PROJECT的Build Settings中,搜索Excluded Architecture ,在debug下点击+添加 Any iOS Simulator SDK,value填入 arm64.
    主项目和pod中必须同时配置,否则会导致无法索引到pod中的库

    第二步:

    防止pod update 之后,clear下,pod 中的配置丢失

    在podfile中,尾部添加以下代码:

       post_install do |installer|
       installer.pods_project.build_configurations.each do |config|
            config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] ="arm64"
            end
      end

    相关文章

      网友评论

          本文标题:xcode12 模拟器无法编译

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