Reputation: 214
I have an iOS app that anyone should be able to download via the App Store. Moreover, I need to distribute this exact same app to people that have iPhones owned by my company. Links to download the .ipa would be sent to those devices.
It's OK to use the iOS Developer Standard Program until you reach the limit of 100 devices. But what if you need to distribute this app to hundreds devices? As far as I understood, you can have both the iOS Developer Standard Program and the iOS Developer Enterprise Program (which allows you to install AdHoc apps on an unlimited number of devices).
The former would be used to submit the app to the App Store and the latter would be used to sign production apps that can be distributed to an unlimited number of devices owned by my company.
Here are the points:
More generally, how to manage that situation properly?
Thanks in advance.
Upvotes: 3
Views: 844
Reputation: 214
After some research, I finally figured out the two different options.
1. MDM to push App Store applications
I made my tests with the AirWatch MDM solution. You can actually push iOS applications to a fleet of devices with Apple accounts connected on them. The Apple accounts connected on your devices can either be manually configured by the users, or you can provide these devices with Apple accounts already signed in.
In the latter case, you need to create the accounts on behalf of your users. You can even prevent them from modifying the connected Apple account. However, I advise against using the same shared account across multiple devices as it's against guidelines. If the account is blocked because of incorrect usage, application updates will be impossible on all devices using this account.
2. Using an Enterprise Program in addition to the Standard Program
In such a case, you can push your in-house applications through MDM not requiring your devices to have a connected Apple account, which is a strong advantage in my opinion. However, if you still want your application to be distributed through the App Store, you will have to maintain two different builds of your applications, with two sets of signing certificates, provisioning profiles, APNS certificates, etc.
Upvotes: 3
Reputation: 2195
I believe you can just have the iOS Developer Enterprise program and use that one to publish to the app store and to distribute the app internally. The archive will be the same, but it will be signed with different provisioning profiles, producing different binaries for the App Store and for Ad Hoc.
In the developer portal you should have one profile for the App Store and another for Ad Hoc distribution.
If using only one developer program (Enterprise), you should use the same App ID for both profiles.
Yes, APNS certificates differentiate between development and production. Ad Hoc and App Store are both considered production and use the same certificate.
Upvotes: -1