Reputation: 225
I'm pretty new here so don't have much idea about it. So sorry for my very simple questions.
I have created simple application in xcode. I want to send that application to client so that he can test it on his device.
Can anyone please help me out with this?
Thank you, Ankita
Upvotes: 2
Views: 5937
Reputation: 19469
You can create an AdHoc version of your app.
You just need to code sign with your distribution profile.
Also you need to add a entitlements.plist which contains item called "get-task-allow" with type as Boolean and value as NO.
Now you simply need to add this Entitlements.plist to your code signing entitlements and then you need to just "Clean" and "Build and Archive".
The archive would be formed in Oragnizer. Then you need to share it as save it to disk as <appname>.<versionnumber>.ipa
Now this .ipa file along with your .mobileprovsion file is to be sent to your client.
NOTE:
You need to add the client's Device ID to your distribution profile. Only then the Client's device would be allowed to install this app on it and test it.
Hope this helps you.
If you have any doubts on this then you may just leave a comment here. :-)
Upvotes: 0
Reputation: 89102
TestFlight is a service which makes managing ad-hoc deployment and testing much easier than doing it manually.
Upvotes: 2
Reputation: 1878
You can make .ipa file and send it to for testing....You will require developer license.
http://labs.makingwaves.com/2010/09/03/distribute-ad-hoc-iphone-apps-as-ipa-files/
Upvotes: 3