Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to distribute an iphone app of mine in a group of 50 people that i know. I want them and only them to use it. Is it possible to distribute an iphone app outside AppStore? I know i could generate an .ipa for jailbroken phones , but the phones are not jailbroken. Is there a solution in this?

share|improve this question

closed as off topic by Don Roby, ACB, Jack Humphries, Janak Nirmal, Kendall Helmstetter Gelner Jan 23 at 4:34

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 9 down vote accepted

I believe basically there exists three different official iPhone/iPad application distribution methods :

- App store

With this method anyone with an iPhone can have access to the application. You can distribute an unlimited number of applications like this. Apple gets a 30% cut. Of course Apple must approve your applicaion.

- Ad hoc

You can distribute applications using ad hoc without going through the app store, but you are limited to a maximum of 100 devices. With this method you can distribute you application from a web site, email, etc.

- Enterprise

The method is for internal distribution in companies with more than 500 employees. Apple does not provide any more public detail that I could find on this method.

It doesn't sound like any of these methods meet your criteria unless you have fewer than 100 customers and don't plan to exceed that number. It sounds like from the question your customers are not internal to your company.

I would advise contacting Apple. They might be able to work out some kind of custom distribution deal.

share|improve this answer
Only thing to add is I believe ad-hoc and I know for sure that Enterprise profiles expire once a year so you will be required to update the app once a year if you choose one of those options. – Joe Jan 23 at 2:04
I just need it for my college friends to inform them about some events. Ad hoc solution what exactly is this? can you give me some more information/ – donparalias Jan 23 at 2:05
@donparalias..for ad-hoc distribution u need to get the device UDID of ur frnds...then add that device into ur portal account.. – PKCoder Jan 23 at 2:05
1  
hahaha yes i know that but it costs 299$ – donparalias Jan 23 at 2:13
2  
+1, I am afraid there are no other ways other than those mentioned above. – ACB Jan 23 at 2:41
show 7 more comments

There is a very convenient way to do this with up to 100 people. Essentially, you add the UDID's of your people's devices to an AdHoc distribution profile through Apple's developer website.

Also, check out http://www.testflightapp.com for very convenient way to distribute such IPAs.

share|improve this answer
For this i need to have a developer's license? – donparalias Jan 23 at 2:05
I dont want to use my 100 user "tester accounts" that comes with my developers license if that is what you mean. – donparalias Jan 23 at 2:10

You can do an ad hoc distribution to up to 100 users. I don't remember how long the provisioning profiles last, but I'm thinking it's 90 days or something like that. You'll have to update the provisioning profile and distribute that to all your users every 90 days (or whatever it is).

If you distribute one version of the app to 50 people, then delete 25 of those people and try to add 75 more for the next version, even though you think you'll only have 100 users you actually have 125. The removed UDIDs still count against your 100-user limit. You can reset your 100 users once per year.

share|improve this answer
Thank you Craig yes i am very well aware of that , but i dont want to use my "tester accounts" for this purpose. i need those for serious application testing. This is only an application among friends – donparalias Jan 23 at 2:11

Without a developer license and a valid provisioning profile, your app will not be able to be installed on any device (that isn't jailbroken). Once you have created a provisioning profile, it must be installed on all devices that wish to use the app. The exception to this is using an Enterprise code signing identity which does not require devices to be provisioned and is useful for internal distribution. In any case, you will need a developer account if you wish to do anything other than work on the simulator.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.