[Solved] Upgrade Xcode 7.3.1 Project to Xcode 8.0
The final answer of above question is: add the code snippet in your podfile post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings[‘SWIFT_VERSION’] = ‘3.0’ end end end then check swift legacy in build settings and set it to NO for swift 3 or you can set Yes for swift 2.3 (if you are … Read more