Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Your Mac runs a version of OS X which is lower than your project's minimum deployment target

Tags:

macos

cocoa

I have created a cocoa framework and test application to check framework functionalities.I used 10.9.2 osx version. It is working fine on 10.9.2. When i am running this on osx version 10.8.5 , getting following errors.

"Your Mac runs a version of OS X which is lower than your project's minimum deployment target.

Change your project's minimum deployment target or upgrade your version of OS X." I changed the base sdk in build setting to 10.8 , then also am getting same message. Please anyone tell me the solution.

like image 539
Faisal Ikwal Avatar asked Jul 03 '14 05:07

Faisal Ikwal


1 Answers

The setting to change the minimum deployment version is harder to find than the previous post suggests.

It is not located in the "Project settings" in the Xcode File menu, you need to click on your project in the left-hand nav -> General tab -> Deployment target. See pic.

enter image description here

like image 84
Richard Boardman Avatar answered Nov 15 '22 07:11

Richard Boardman