Reputation:
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
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
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
Reputation: 6454
When you make archive, It will show at xCode Organizer , In
For submit appstore check first and follow next steps .. May be help full for you ...
Upvotes: 0
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