美文网首页
xcode15无法运行模拟器

xcode15无法运行模拟器

作者: 简繁之间_来去自然 | 来源:发表于2024-08-11 10:05 被阅读0次

1 设置Excluded Architectures


img1.jpg

2 podfile内增加配置项后执行pod install

config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"

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

相关文章

网友评论

      本文标题:xcode15无法运行模拟器

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