I have an iOS project that I am building in XCode/Cocoa Pods. When I run the pod install
commands I get a lot of warnings for many (if not all) of my pods:
"[!] The platform of the target
myapp
(iOS 11.0) may not be compatible with<the-name-and-version-of-the-pod-here>
which has a minimum requirement of iOS 12.4."
What setting in Xcode or my Podfile can I change to "upgrade" my "target platform" so that it meets the minimal version requirement of all these pods (which across the board are "12.4")?
Under Target > Build Settings/General tabs in Xcode, everything is currently set to 13.0, so I'm not sure why Cocoa Pods is thinking I am targeting version 11 of anything.