标签: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
网友评论