Since the last iOS and Visual Studio Mac update, I'm getting the following error when trying to build:
Error Xamarin.iOS 11.4.0 does not support a deployment target of 11.2 for iOS (the maximum is 11.1). Please select an older deployment target in your project's Info.plist or upgrade to a newer version of Xamarin.iOS.
My iPhone and iPhone simulators are all on 11.2, and the only SDK version available in Visual Studio is 11.2 as well.
Any suggestions?
I had same problem.
Check 'MinimumOSVersion' key in info.plist.
If it doesn't exist, add it.
<key>MinimumOSVersion</key> <string>11.0</string>
Answers
I had same problem.
Check 'MinimumOSVersion' key in info.plist.
If it doesn't exist, add it.
I can build now! Thanks, you're a lifesaver!
Downgrading the xcode to previous version could solve this problem
Hope this will help