美文网首页
M1电脑解决模拟器和真机release和debug同时支持跑项目

M1电脑解决模拟器和真机release和debug同时支持跑项目

作者: 羽化行云 | 来源:发表于2022-09-15 16:39 被阅读0次
    在工程的 Excluded Architectures 中添加Debug和Release下的 Any iOS Simulator SDK都改成 $(inherited),改好后会显示arm64,如图: 企业微信截图_2da251bf-e32f-4bf2-a204-ea4b778b5f0d.png

    再在Podfile文件添加

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

    这样就可以解决模拟器、真机和Debug、Release之前来回切换问题

    相关文章

      网友评论

          本文标题:M1电脑解决模拟器和真机release和debug同时支持跑项目

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