“Too many symbol files” warning when submitting app

后端 未结 4 1000
礼貌的吻别
礼貌的吻别 2021-02-01 08:54

I submitted my app to the app store and received the following warning (not error):

Too many symbol files - These symbols have no corresponding slice in

4条回答
  •  不思量自难忘°
    2021-02-01 09:47

    Let's say you are targeting iOS 11 but your cocoapods frameworks have minimum deployment target less that iOS 11, then add this at the end of your podfile:

    post_install do |installer| 
        installer.pods_project.targets.each do |target|
            target.build_configurations.each do |config| 
                config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
            end
        end 
    end
    

    "Too many symbol files" warning is telling you that your project has more restrictive constraints than the cocopods frameworks.

提交回复
热议问题