I have a .NET iOS App(previously Xamarin.iOS) and we recently updated the info.plist minimumosversion from 13.0 to 15.0. The problem is it is not allowing the app to run on devices with iOS 15.
Need advice on how we can restrict versions under iOS 15 but still get the iOS 15 devices to run the App
The MinimumOSVersion
property does exactly what it says, that is, it specifies the minimum OS release supported by your app. If you set it to 15.0
, your app will run on iOS 15.0.
Beyond that, it’s hard to say what’s going on here because you’re using third-party tools. In Xcode you don’t set this property directly; rather, you set the deployment target in your target settings and Xcode takes care of the rest. If you’re not using Xcode, I recommend that you escalate this via the support channel for your tools.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"