Yoav
Yoav

Reputation: 6098

multiple deployment target values

Is it possible to prevent my Mac app from running on specific version of OS X?

For example, I want to state that it only supports 10.9.5 and 10.10.5, but not on 10.10.4.

I know how to set the minimum supported version using MACOSX_DEPLOYMENT_TARGET in Xcode.

Is it possible to explicitly black-list some versions of OS X (while still supporting earlier versions)?

The reason is that my app is crashing on due to Apple's bugs on specific version of OS X, and was rejected by the App Store team because of that.

Upvotes: 2

Views: 210

Answers (1)

mahal tertin
mahal tertin

Reputation: 3414

Sadly there is nothing in iTunes Connect or Mac App Store that would prevent an App on a specific OS X to get downloaded.

You could program your app to show a dialog on launch that this specific OS X is not supported and then quit. And mention this in the Mac App Store description.

Upvotes: 1

Related Questions