Got an email from Apple to bump the sdk version and in the email they say "This app was built with the iOS 16.1 SDK.".
However, in Xcode (15.2) I see that
- iOS Deployment Target = 14.0
- Minimum deployments (IOS) = 14.0
- Podfile
platform :ios, '14.0'
How is it building with 16.1
and not 14.0
?
Note: the app is built with React Native, but i don't think it should change anything.