After updating to Xcode 12, I've got lots of warnings for SPM dependencies (including RxSwift and Facebook).
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.
Can I suppress these warnings somehow, or is the only way to wait till the creators of appropriate frameworks fixed it?
SWIFT_SUPPRESS_WARNINGS
toYES
works. There might be a similar thing for SPM or a build script perhaps. Try this link: https://mcmap.net/q/392195/-suppress-warnings-from-dependencies-with-swift-package-manager – Rapier