I'd like to distribute a 'test' version of an app internally without having to deal with gathering UDIDs from potential users -- that is, I want to just put the app on a server/dropbox, and have it easily downloaded internally by whoever. I would also like this 'test' version to receive push notifications from the development APNS.
Is it possible to use the development APNS environment with an enterprise Distribution provisioning profile?
The distribution profile has got the following within its entitlements Dict:
<key>aps-environment</key>
<string>production</string>
However, I'd like this particular build to use the development APNS.
Can I simply change that key/value pair? is there a better way to do this?
Thanks!