DaveH
DaveH

Reputation: 7335

Building apps that will run under ios7 from xcode 4.2 ios 5

Extremely new to the xcode / ios world, so I apologise in advance .....

My dev machine is an old mac-mini running Snow Leopard and xcode 4.2

I have built an executeable that I want to put on my ipad, which is running at ios7.

In xcode, I did all the provisioning stuff and I see the following message :

The version of iOS on "Daves iPad" does not match any of the versions of iOS supported for development with this installation of the iOS SDK. Please restore the device to a version of the OS listed below, or update to the latest version of the iOS SDK

I'm not sure I can ( or want ) to do either of these things. As far as I know xcode5 won't run on my machine, and I don't really want to downgrade my iPad to ios 5

Am I missing the point? Should I expect to be able to run ios5 executeables under ios7? If I should, how do I get them on to the ipad?

Upvotes: 3

Views: 2090

Answers (2)

regeint
regeint

Reputation: 888

You can create .ipa file from xcode, here is the link. But before that you should have installed provision profile for app distribution. Your testing devices should be listed there in iOS Provisioning Profiles (Distribution) on Apple Developer Member center -> Certificates, Identifiers & Profiles.

Upvotes: 0

Duncan C
Duncan C

Reputation: 131418

Yes, you can run iOS 5 executables on iOS 7, but you can't run a debug session on an iOS 7 device from anything older than Xcode 4.6.3.

I think the best you're going to be able to do is to build the app, package it into an IPA, then install it on your device and run it from iTunes.

Upvotes: 4

Related Questions