macOS Simulator deployment target set to 13.5, but the range of supported deployment target version for this platform is from 13.1 to 13.4.999

Viewed 1114

I'm getting this warning message in Xcode Version 11.5 (11E608c)

The Mac Catalyst deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 13.5, but the range of supported deployment target versions is 13.1 to 13.4.99. (in target 'Food Tracker' from project 'Food Tracker')

the warning

My deployment target is for a universal binary

my deployment target

What am I doing incorrectly?

1 Answers

You are doing nothing wrong. Just decrease your iOS Deployment Target in the Build Settings to lower the Mac Catalyst deployment target. Obviously you have selected "Mac" in the Deployment Info of your target and the current Xcode version does not support Mac Catalyst deployment target 13.5.

Related