-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99. #6533
Comments
I found a few problems with this issue:
|
@smamczak Thanks for the report. This is an Xcode 12 issue for libraries that support an earlier version than is supported by that Xcode version. We'll address for Firebase in the next breaking change release coming in the next few months. See #6517. In the meantime, a workaround is a Podfile post_install script. See details at CocoaPods/CocoaPods#9884 (comment) The issue has been filed to Apple at FB8683743. |
Me also having the same warning, kindly refer this |
+1 |
I solve it with this code, thanks! Add it at the end of the PodFile post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end |
This solved it for me: |
I get a lot of warnings when building my app
The text was updated successfully, but these errors were encountered: