Corallino
Corallino

Reputation: 109

xcode distributing application with 2 project

i have a problem to distributing application with 2 project (one project with sub-project include inside). When i try to make as usual "archive", i'm not able to send application. Could someone help me? Regards

Upvotes: 1

Views: 1824

Answers (2)

Filippo
Filippo

Reputation: 11

The reason this is happening is because you have two projects.
For the sub-project you need to edit the Target > Build Settings and set the Skip Install setting to Yes.
Afterwards the "Archive" action will work as usual.

Upvotes: 1

Simon Whitaker
Simon Whitaker

Reputation: 20566

I'm guessing the sub-project is a library? And when you do Build > Archive you get an .xcarchive file instead of a .ipa? If so, you need to set the Skip Install flag to No on your library (see this answer), then Build > Archive will generate a .ipa file.

Upvotes: 4

Related Questions