Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am encountering this error when I am loading an Ad Hoc build of my Push Notification enabled iPhone app onto my device:

no valid aps-environment entitlement found for application

What does it mean, and how do I repair it?

share|improve this question
Just had the same error with PhoneGap Build and the Notification plugin (because I was using Developer Cert which will not work with notifications). Anyway, solved by creating an AdHoc-distribution provisioning profile at developer.apple.com, then compiling in Phonegap Build with that+the distribution cert. But before, uninstall app from iPhone & remove related provisioning profiles from Settings>General>Profiles. Also see: community.phonegap.com/nitobi/topics/genericpush_ios_error – Fredrik Johansson Feb 28 at 10:54

3 Answers

up vote 25 down vote accepted

I found the solution. In my project info under Build > Code Signing Identity I had it set to automatic, and it was selecting an AdHoc distribution profile which did not have push notifications enabled. (It was the wrong one.) I have selected the correct profile and the error is gone.

share|improve this answer

Push Notifications must be enabled for your App ID before creating a Provision Profile.

So, in this order:

Create your APP ID

Enable APNS

Create the Provisioning Profile

share|improve this answer

if you didn't write the original code and aren't 100% sure on how it works, make sure that you have it set up to receive the right type of push notification token. had a problem where the app i was working on was only set up tokens on a release build. it's worth a try if nothing else works and you think your code is set up properly -- find the steps online somewhere to do a ad-hoc build and try it

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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