Reputation: 10563
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
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:
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