This is a temporal workaround I'm using in my Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "MessageKit"
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end
Yeah, still no Swift 4.2 support. I haven't had time to even finish a 2.0 release, to be honest. Things at work have not been stable for a couple months
I will work on a 4.2 update
Sent with GitHawk
This is a temporal workaround I'm using in my Podfile
post_install do |installer| installer.pods_project.targets.each do |target| if target.name == "MessageKit" target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.0' end end end end
Do you put this after the pod firebase or whatever pods you're using? or before.
Do you put this after the
pod firebaseor whatever pods you're using? or before.
Put this snippet in the end of your pod file, after you define pods for your project.
Use the development branch for now, 1.1 release onwards will be on Swift 4.2
Most helpful comment
I will work on a 4.2 update
Sent with GitHawk