Tirth
Tirth

Reputation: 7789

Installing iPhone app on iPhone

I want to install my iphone app on iphone and also have test provisional profile also. The main problem is that i developing applicaion in mac lion environment Xcode version is 4.2.1 and using iOS5 i want to install it on device iPad 4.3.1 (iOS 4) so it gave me error message on Xcode

The run destination iOS Device is not valid for Running the scheme 'myProjectName The scheme 'myProjectName' contains no buildables that can be built for the SDKs supported by the run destination iOS Device. Make sure your targets all specify SDKs that are supported by this version of Xcode."

What should i have to do for it?

enter image description here

enter image description here

enter image description here

Upvotes: 0

Views: 871

Answers (4)

Sishu
Sishu

Reputation: 1558

Please check it with setting deployment target.

Upvotes: 0

Jim Geldermann
Jim Geldermann

Reputation: 183

Check the Targeted Device Family and make sure the device your distributing to is included in the settings

Upvotes: 0

Naren
Naren

Reputation: 125

In your project settings check for the valid architectures. You need to include both armv6 and armv7 architectures.

Upvotes: 0

Yama
Yama

Reputation: 2649

That is because you are using iOS 5 as your deployment target. Go to build setting and set the deployment target as per your need.

Upvotes: 1

Related Questions