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:
- Can I have a single App ID or do I need to distinguish these two apps?
- I need to send push notifications to devices using this app, can I use the same APNS certificate for sending notifications to apps downloaded via the App Store and to Ad Hoc apps? I guess no, but is there a way to properly handle that situation?
More generally, how to manage that situation properly?
Thanks in advance.