You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tldr; Add this to your Podfile to change to iPhoneOS Deployment Target to 9.0
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
Please execute pod install in the ios folder of your project after adding this snippet.
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
![Screen Shot 2020-09-09 at 11 53 54 PM](https://user-images.githubusercontent.com/34857385/92638402-d86baa80-f2f7-11ea-801c-990bb630d66d.png)
The text was updated successfully, but these errors were encountered: