Post

Replies

Boosts

Views

Activity

Reply to dyld: Symbol not found: swift34swift50override_conformsToProtocol
In my case, in Podfile I have code that replaces IPHONEOS_DEPLOYMENT_TARGET for all pod targets with 'some' min version. Originally I had a '13.0' version. When I changed '13.0' to '9.0', did pod update, clean the project, and build & run again, the error didn't appear again. Below is a piece of that code I have now: post_install do |installer|   installer.pods_project.targets.each do |target|     target.build_configurations.each do |config|       if Gem::Version.new(config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']) < Gem::Version.new('9.0')         config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'       end     end   end end Hope my answer will help somebody and save time.
Apr ’22