Jasper Blues
Jasper Blues

Reputation: 28746

How do I take an IPA file and have it install remotely on an iOS device?

The 'traditional' way to install an IPA file is via iTunes.

Its nice the way Test Flight and other tools allow doing this remotely, by downloading from an install link on the web or email.

I tried adding an IPA file to a remote server, and downloading, but Safari informed me "I don't know what to do with this file" (or words to that effect).

Assuming the UDID of the target device is in the provisioning profile, how can I have the file remotely installed on a device.

Upvotes: 1

Views: 3347

Answers (3)

Caleb
Caleb

Reputation: 124997

In a nutshell, these are the steps:

  • in Xcode, use the Product->Archive command to archive your project.

  • select the archive in the Organizer window and click the Distribute button

  • choose Ad Hoc/Enterprise deployment

  • when filling in the fields in the wizard, be sure to enter the URL where the application will be located correctly

  • once you've saved the signed app, put the app and the accompanying property list up on your server at the URL you indicated

  • create a web page or e-mail that includes a link to the property list

  • on a device, tap the link to install the app

Upvotes: 1

Andrei Shender
Andrei Shender

Reputation: 2497

Enterprise distribution Over The Air http://help.apple.com/iosdeployment-apps/mac/1.1/?lang=en-us#app43ad871e

Upvotes: 1

Wain
Wain

Reputation: 119021

The search term you're looking for is "over the air" distribution. Try the guide here

Upvotes: 4

Related Questions