I was interested in knowing if its possible to share an ipa file generated from the project between 2 people locally without the overhead of itunes store or testflight. As in android apps we can easily share the compiled .apk file with anyone even across borders. I have gone through the following references https://stackoverflow.com/a/6413247/550177 but i am sure my question is different. Any sort of help would be appriciated
-
Do you mean compile an Xcode project and run it on your device? – l'L'l Oct 08 '15 at 06:38
-
In android, i can just send you the apk even though you are across the globe and you can install the app. I wan wondering if its possible to do the same in ios. as i dont know what is the final yeild after compileing the files – Aniruddha K.M Oct 08 '15 at 06:38
-
You can make ad-hoc build with udid of the device, export it and then send. But no way like android sending it across a globe. That's why piracy rate is lower in ios. – Abhi Oct 08 '15 at 06:44
4 Answers
No you can't. You need to have a developer account to test it on iPhone. You may then package your app and deploy to a number of iPhones using their UDIDs.
A UDID can be found in the iTunes when you connect your phone to a Mac. You need to add this UDID to your device list and check that in your provisioning profile in Member Center. The app package(ipa) can be uploaded to dropbox and then you may hit a url from phone to install the app.
The url may link to your app in the dropbox something like this:
itms-services://?action=download-manifest&url=https://dl.dropboxusercontent.com/s/XXXXXXX/YourApp.plist

- 1,899
- 2
- 18
- 33
-
-
Yes you can do that too but that again requires a developer account. – Atif Imran Oct 08 '15 at 07:41
Export ad-hoc file (*.ipa) and use Apple Configurator in Mac OS to install the ipa to iDevice which added uuid in ad-hoc provisioning. OR using enterprise program if you don't want to add any iDevices' uuids

- 1,166
- 11
- 17
[![enter image description here][1]][1]You have two quick options:
Either generate ipa file and share that ipa file and install that using iTunes in your MAC
-Or for best installation experience, upload that ipa file to diawi.com, it takes just few seconds to upload and will give you a URL to install app directly in your iOS device.
Please note, you will need to include UDID's of all the devices in your provisional profile, for which you want to install your app.

- 2,578
- 20
- 28
You could share the compiled application if the devices were either:
- Both registered/provisioned under an Apple developer account (paid)
- Jailbroken
An (uncompiled) alternative would be (new in Xcode 7+):
- Share the Xcode project, then compile the project and install on your devices. (free)

- 44,951
- 10
- 95
- 146
-
-
What's your goal exactly, are you wanting to share your app with someone you know, or are you thinking of a wider audience? iOS does provide the ability to do what you're wanting (within the current limitations), although whether it's practical or not really depends on the goal. – l'L'l Oct 08 '15 at 12:12