2

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?

  • Duplicate of https://stackoverflow.com/questions/62118264/mac-catalyst-and-ios-13-5. There's really no point repeating it; if it gets solved there, it is by definition solved everywhere. – matt Jun 25 '20 at 21:59
  • Hi @matt. No I am not using any pods cocoa or otherwise, just plain old Xcode – Eduardo Perez Jun 25 '20 at 22:00
  • @matt Oh I see. Sorry for the duplicate question...it didn't show up in the autofill section when I wrote it. I will follow that thread for any updates. Thanks! – Eduardo Perez Jun 25 '20 at 22:02

1 Answers1

0

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.

Kibernetik
  • 2,947
  • 28
  • 35