iOS11应用程序提交:“符号文件太多”

我的目标是iOS11,现在提交应用程序后,我收到Apple发来的一封电子邮件,警告“太多符号文件”.

看起来CocoaPods框架包含在不需要的架构中.

任何人都可以显示正确的设置,以避免在iOS11上包含不需要的框架?

最佳答案 如果您将以下行放入podfile,则表示您没有收到警告:

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
        end
    end
end
点赞