“Too many symbol files” after successfully submitting my apps

后端 未结 10 2147
忘了有多久
忘了有多久 2020-12-02 04:00

I downloaded Xcode 6 GM and submitted two Swift apps to the app store today. Both passed all pre-upload verification and all the other stuff they had to pass and were succe

10条回答
  •  失恋的感觉
    2020-12-02 04:29

    If you encountered this problem while using CocoaPods, add this to your 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
    

    It will set Debug Information Format to DWARF only for all your Pod targets only (not the main app target)

提交回复
热议问题