iCoder4777
iCoder4777

Reputation: 1692

Creating Binary Files to upload app in app store

I want to create a Binary file of my project. I have set my project to iPhoneDistribution mode. After that I build the project(command B), now, in Xcode in left panel under project , clicking on .app it should reveal the path. But .app is showing that path.

A few days back, I have tried to create binary file of the same project that time it has worked. After that I have renamed the project. Now, I think due to this only, m not getting my result.

So, how will I get the binary file, any Suggestion will be appreciated.

Upvotes: 1

Views: 3138

Answers (2)

hacker
hacker

Reputation: 8957

just get in to the build folder inside your project,there you can see your project,because of you changes the name of the project the build should be in the new name.thats why it is not showing in the finder.

Upvotes: 0

Bill Burgess
Bill Burgess

Reputation: 14164

There are 2 ways to submit your app to the App Store.

  1. Archive your project and submit using the Distribute button in Xcode.
  2. Zip your .app file and submit using the Application Loader app from Apple.

I believe that the suggested way to submit is number 1. There are plenty of tutorials and answers on SO how to perform either of these.

I can tell you renaming stuff in your project usually leads to pain in the ass problems with submission. If it gets bad, I would consider renaming it back if you can help it. Otherwise when you perform validation for submission, it should tell you which setting is in conflict and you can resolve it at that time. You can perform validation on the build in the Archive tab of Organizer. Archive, Validate, Distribute are the keys to successful submission. Good luck.

Upvotes: 4

Related Questions