0

I need to send off an iPhone app Xcode project to a agency but I do not want them to be able to see the source code of the project, how do I compile the project and send that to the agency so they are able to submit the project to Apple but not see the source code?

Thanks in advance, Daniel

2 Answers2

0

You can create archive file and send that instead of sending Xcode code.

You can check this thread and get to know how you can create archive file (ipa file)- Xcode 4: create IPA file instead of .xcarchive

Community
  • 1
  • 1
rishi
  • 11,779
  • 4
  • 40
  • 59
0

You will need to build the project for archiving in Xcode navigate to Product -> build for -> archiving

this will produce an app file, that you will send to the agency

However note that you will need to get the provision and keys to be able to build for distributing

Omar Abdelhafith
  • 21,163
  • 5
  • 52
  • 56