suse
suse

Reputation: 10563

How to bundle an XCode project and deploy onto iPhone?

I have created an iPhone application which I want to deploy onto an iPhone. What is the procedure to deploy it onto the iPhone? Since it's an enterprise application, I've paid the respective amount to Apple to get the certificate. However, I don't know what files to deploy, or how to make my full application as a single bundle. How can I do these things?

Upvotes: 0

Views: 808

Answers (1)

Paul Peelen
Paul Peelen

Reputation: 10329

If you want to deploy your application onto your device you will need to install the appropriate provisioning profiles and certificates on your device and computer.

First off:

  • Add your device to the provisioning portal
  • Create a APP Id in the same portal
  • Download the WWDR certificate and install it
  • Generate a cerificate for your computer (follow the instructions in the portal)
  • Create a provisioning profile in the same portal

Set the correct bundle identifier (e.g. com.mycompany.myapp) in your myapp-Info.plist file.

In XCode, open the project settings and find the row "CODE_SIGN_IDENTITY", choose the correct provisioning profile here. Make sure you do it for the correct configuration (e.g. Debug).

I think thats it, don't think there is anything more to do. This process is quite tricky and bumpy, so good luck! ;)

Upvotes: 2

Related Questions