ichanduu
ichanduu

Reputation: 425

The Run Destination is not valid Xcode

I am using Xcode 5 and when I try to run my app on iOS 6 simulator I am getting 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`.

Base SDK is set to iOS SDK 7.0. iOS deployment target is set to iOS 6.0

Upvotes: 6

Views: 12305

Answers (6)

Aweda
Aweda

Reputation: 473

I had exactly same issues, however after restarting My (Xcode 9.2) IDE the issue disappeared!

Upvotes: 0

csomakk
csomakk

Reputation: 5497

If its an Apple Watch app: Needed to install latest xcode to have watchkit. (I got the package from github.)

Upvotes: 0

Alexey Bondarchuk
Alexey Bondarchuk

Reputation: 2022

Looks like you are trying to run app on the iPhone while your application allows you only iPad platform. enter image description here

Upvotes: 4

Rajesh Loganathan
Rajesh Loganathan

Reputation: 11217

Try this simple one:

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

Upvotes: 3

Sanoj Kashyap
Sanoj Kashyap

Reputation: 5060

For me, select the Project from the Project Navigator and then select the target -> go build settings and change the iOS Deployment Target. That's worked for me.Let me know if you still facing issue.

Upvotes: 10

Nikos M.
Nikos M.

Reputation: 13783

Try Autocreating schemes (Scheme > Manage schemes > Autocreate schemes) to see if this solves your issue.

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

enter image description here

Upvotes: 0

Related Questions