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
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.
Until CocoaPods is updated to fix this, the workaround is to either change the pod's deployment target, or have CocoaPods remove the deployment target from the pod entirely by adding the following to 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
What did you do?
Built my app using Xcode 12 beta.
What did you expect to happen?
No new warnings.
What happened instead?
I got this warning:
Charts Environment
Charts version/Branch/Commit Number:
Xcode version: 12.0 beta 3 (12A8169g)
Swift version: 5
Platform(s) running Charts: iOS
macOS version running Xcode: 10.15.6 (19G73)
Demo Project
The text was updated successfully, but these errors were encountered: