Invalid Xcode Launch Destination

I am using Xcode 5 , and when I try to run my application on the iOS 6 simulator, I get the following error.

  The scheme 'Appname' contains no buildables that can be built for the `SDKs` supported by the run destination iPhone Retina (4-inch). Make sure your targets all specify `SDKs` that are supported by this version of `Xcode`. 

The SDK base is installed on iOS SDK 7.0 . IOS Deployment Goal Installed on iOS 6.0

+6
source share
6 answers

For me, select the project from the Project Navigator, and then select the target settings β†’ go build and change the iOS deployment target. It worked for me. Let me know if you are still experiencing a problem.

+9
source

It looks like you are trying to run the application on the iPhone, while your application only allows you an iPad platform. enter image description here

+4
source

Try this simple one:

 Target '---> General '---> Deployment Info '---> Deployment Target '---> Choose Version (Better lower version) 
+3
source

Try auto-creation schemes (Schema> Schema management> Auto-creation schemes) to see if this problem solves.

Also make sure your build settings are correct. They should look like the image below.

enter image description here

0
source

If the application is Apple Watch: You must install the latest xcode in order to have watchkit. (I received the package from github.)

0
source

I had exactly the same problems, however after rebooting My (Xcode 9.2) IDE the problem disappeared!

0
source

Source: https://habr.com/ru/post/956929/


All Articles