I am relatively new to iOS development and seemt to struggle with the provisioning and code signing process. I always seem to have warnings os fomr sort and usually resort to a shotgun type approach to my provisioning settings.

Is there a good overview of the whole provisioning and code signing process? The type of questions I would like to see in said overview would be like:

  • what is code signing?
  • what is a provisioing profile?
  • why are these necessary?
  • what are some common errors and their solution
  • what is the bundle id for?
  • what is the app id for?
  • and is a certificate?

and most importantly ...

  • what happens with these components when I click "build" in Xcode?
link|improve this question

Good luck. I've done this multiple times and I'm still confused every time I return to it after a few months. ;-) Seriously, to some extent you just need to run through the process and use it for a while. It is too complex to build a perfect mental model before you get stuck in. Apple's docs have some good step by step tutorials to help. – Greg Apr 26 '11 at 17:13
feedback

3 Answers

I also faced these problems more than a couple of times with code signing. So I tried to understand these with some experimentation and reading. Here is my documentation for the same:

Understanding iOS Code Signing.

I will be following it up with common troubleshooting points soon. These will mostly include checking your Keychain app for valid certificates.

As for your most important question, when you "build and run", by default, the "Debug" build configuration is used. These are set in the "scheme". In xcode 4, select "Edit Sceme" in the drop down where you select the device/simulator version for testing, and check various schemes.

link|improve this answer
link is no longer valid. You you edit and updated link please – Max MacLeod Oct 3 '11 at 8:54
Link updated... – Sailesh Oct 3 '11 at 9:05
great, thanks for this – Max MacLeod Oct 3 '11 at 9:33
feedback

I am not sure how it exactly works, but once you try to install your app on your device, it is not a hard concept. This documentation from Apple will be helpful.

link|improve this answer
feedback

Many of your questions are answered in the iOS developer portal, or in the Standard Program User Guide. Wikipedia is a good resource for general concepts like code signing and certificates.

The short answer to the question about why apps have to be signed is: because Apple says so. A slightly more helpful answer: it protects the user, the developer, Apple, and the network provider by ensuring that the apps installed by the user are identical to those distributed by their respective developers; the device will refuse to run modified apps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.