user3840260
user3840260

Reputation:

How to submit Xcode "Generic Archive"

I Archived my app, and usually the "archive type" section says, iOS app, and you can submit directly from organiser. However, the type of this app seems to be "Generic Archive" and asks me to export in 1 of 2 ways When i click on distribute - Save built products - export as Xcode archive.

How do i submit?

Upvotes: 0

Views: 1783

Answers (5)

Stephen Darlington
Stephen Darlington

Reputation: 52565

The short version is you can't. It probably means that your binary has multiple targets inside it. My guess -- as this is what's happened to me -- is that you included an open source project and have it configured incorrectly. Check the "Skip install" setting of any sub-projects.

Upvotes: 2

user3840260
user3840260

Reputation:

Okay, the problem turns out to be that my cocos2d libraries were included in the build settings. This was solved by

cocos2dLibraries > Build Settings > Skip Install

and making the value "Yes".

Upvotes: 0

Jogendra.Com
Jogendra.Com

Reputation: 6454

When you make archive, It will show at xCode Organizer , In

  • xCode Organizer find three tab Click on last tab Archives
  • Select you app and Click on Distribution
  • There you will find three check box like this image enter image description here

For submit appstore check first and follow next steps .. May be help full for you ...

Upvotes: 0

Hemant Dixit
Hemant Dixit

Reputation: 1145

Please check below link this apple document:

http://tinyurl.com/nnxjtzq

Upvotes: 0

Retro
Retro

Reputation: 4005

This is a issue of wrong Schemes for multiple targets, check and create new schemes for every target and then go to Build Settings>target dependencies and remove if any!

Upvotes: 0

Related Questions