I just received the following TWO warnings when submitting an app update. Note there is a difference in wording:
MinimumOSVersion too low. This app has a MinimumOSVersion of 11.0. Starting later this year, all iOS apps must have a MinimumOSVersion of 13.0 or later in order to be uploaded to App Store Connect or submitted for distribution. (90068)
MinimumOSVersion too low. This app has a MinimumOSVersion of 11.0. Starting in Spring 2027, all iOS apps must have a MinimumOSVersion of 15.0 or later in order to be uploaded to App Store Connect or submitted for distribution. (90068)
The bold was added by me for clarity. I got both warnings on submitting one build.
The way to fix this is add the following to your build.settings:
iphone = {
plist =
{
MinimumOSVersion = "13.0",
}
}
Note that the quotation marks are needed. You will then get only one warning that iOS 15.0 minimum is coming next year. If you want your app to be available to the widest audience, then it’s up to you as to when you bump the min version, before Apple forces you to.
Cheers!