Posts

Showing posts from February, 2014

When using Apple iOS APNS (Apple Push Notifications) how can I find which environment the Provisioning Profile is pointing to?

Image
When using the Development Certificate and Profiles you will be using the Development (and Sandbox) setup.  For AdHoc and AppStore you will be using the Production environment. You can check by looking at the Provisioning Profile, just open the file up with a simple editing tool such as TextEdit and look for the key aps-environment, it will be either development or production an example snippet is below: <key>aps-environment</key> <string>production</string> I hope this helps!