How to deploy the MonoTouch application on a remote device

Here is our situation: we have a paid version of MonoTouch, and we are registered with Apple for the Developer Enterprise program, so we will not distribute our application through the Apple iStore. What I have done so far is to create a Provisioning Profile on the Apple Developer site. I set up the Provisioning Profile using Xcode, and I can compile a signed version of our application and deploy it to my iPhone using MonoTouch. Now what I need to do is get the application on my colleagues' iPhone. This iPhone has also been registered on the Apple website and is included in the Provisioning Profile. The problem is that a colleague is far from me and he does not have a Mac; he only has a windows laptop. How do I send him a request and what steps should he take to get it on my iPhone?

+3
source share
3 answers

try this service - http://testflightapp.com/

----> create IPA Create a folder named "Payload". Copy the app.app file to the Payload directory. Compressing the payload directory and renaming the zip file to app.ipa.

+1
source

You must use the OTA distribution (on the air), then it will allow you to install the application directly on the iPhone, simply by viewing the URL from the safari. The process is described here: http://iosdevelopertips.com/xcode/distribute-ad-hoc-applications-over- the-air-ota.html ! If you are using Xcode 4, do almost the same thing: build and archive, then select "share" and select "distribute for enterprise" and fill in the required fields!

0
source

All Articles