Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

xcode4 archive/ipa problem [duplicate]

Possible Duplicate:
Xcode 4 Archive Version Unspecified

Hi,

I'm archiving an application for iPad adhoc deployment but when I try to share the archive, the option for ipa construction is not available. The application I'm trying to deploy was created using XCode 3. It worked perfectly fine over there.

My problem seems to be, that the created archive has two missing values. The organizer shows the value of "version" as "unspecified" and the value "identifier" is empty. I tried setting this values in my info.plist and in the Info-tab in the project settings. None of it worked.

So why are these values not correctly set?

Here is a screen shot:

Missing version and identifier

like image 274
Silas007 Avatar asked Mar 15 '11 23:03

Silas007


1 Answers

Your Xcode project probably references one or more other Xcode projects for shared libraries that your project requires. Go through the Xcode projects for each of those shared libraries, and set each target's "Skip Install" build setting to "Yes". Then rebuild your archive. Organizer should now let you create your .ipa.

like image 118
cduhn Avatar answered Oct 28 '22 15:10

cduhn