I am getting the 'dreaded' error The entitlements specified in your application’s Code Signing Entitlements file do not match those specified in your provisioning profile. (0xE8008016). when trying to deploy my first app to an un-jailbroken device on iOS 4.2.6 (Verizon). The thing is, I do not have a Entitlements file in my project, as I am not distributing it at all, only putting it on one device. I have gone through all the hoops and loops apple puts you through (certificate, device, provisioning) down to the letter, and I cannot figure out what is going wrong.

Can anyone please help me with this problem?

link|improve this question

feedback

10 Answers

Just came across this issue myself, the problem was that I had a Entitlements.plist file in the project as part of an ad hoc distribution, and its get-task-allow (ie. 'can be debugged') property was set to NO - setting this to YES fixed the issue and allowed the app to run from Xcode4 on the device in development.

Naturally need to set it back to NO for ad hoc distributions, but just thought I'd mention it in case anyone else comes across the same problem.

link|improve this answer
Thanks - this finally fixed my problem. – EasyCoder Aug 1 '11 at 19:24
Thank you! That was killing me. – alan Nov 1 '11 at 6:59
feedback

I've had this issue with the iCloud entitlements. My problem was that I forgot to enable iCloud for my App ID in the Provisioning Portal.

After enabling iCloud for your App ID, you will need to recreate the provisioning profiles.

link|improve this answer
Yip, this worked for me. Cheers man. – imnk Oct 25 '11 at 12:14
1  
I had this error happen to me again. I needed to add my new device to the development provisioning profile, then refresh the list in Xcode. – adjwilli Feb 16 at 18:27
feedback
up vote 3 down vote accepted

Upgrading to XCode 4 fixed the issue.

link|improve this answer
feedback

None of the many answers fixed the 0xE8008016 Error for me.

But when I chose "Automatic Device Provisioning" in Xcode 4 > Organizer > Devices > Provisioning Profiles, it finally worked.

link|improve this answer
feedback

I had this issue with Xcode 4.2.1.

For me it was nothing to do with Entitlements file, or Ad-hoc...

I was returning to and old project, and I'd forgotten to add my new iPhone to the provision.

Silly mistake, but also a silly corresponding error message... :-/

link|improve this answer
feedback

Delete your provisioning profiles, do a 'Clean All', make sure that your provisioning setting are correct, redownload, and try to run again.

link|improve this answer
nope :( didn't work – Richard J. Ross III Mar 9 '11 at 3:11
What version of Xcode are you using? If it's 4.0, there have been problems with this. You may have to restart Xcode or even restart your Mac. Make sure that the provisioning settings are right in both the project and target. The target setting take precedence over the Project though. – W Dyson Mar 9 '11 at 3:20
I am using Xcode 3.2.6 – Richard J. Ross III Mar 9 '11 at 12:51
I think its a problem with the device, its an iPhone 4 from Verizon, and with the same provisioning profile, I can deploy an app to my iPad.. has anyone else had this problem with an iPhone 4 from Verizon? – Richard J. Ross III Mar 9 '11 at 13:18
Are you using an old provisioning profile? You have to add the Verizon iPhone as a device in the Provisioning Portal and then update the development profile, re-download, and reinstall the new profile. If this doesn't work, you're going to have to provide more information. – W Dyson Mar 9 '11 at 13:22
show 1 more comment
feedback

In my case it was a stupid mistake. I incorrectly set the "Run" scheme to use the "Distribution" build configuration instead of the "Debug" or "Release" one. Stupid mistake, but it took a while to debug it, so I'm going to add my answer to improve the knowledge base inside stack overflow!

link|improve this answer
feedback

would suggest you to go through the following post.

Code sign error with Xcode 3.2

http://discussions.apple.com/thread.jspa?threadID=2162558

link|improve this answer
feedback

Deleting the xcuserdata folder solved my issue. More on that here: http://stackoverflow.com/a/9968884/300694

link|improve this answer
feedback

What worked for me was to completely delete the entitlements file, from the groups list, and from the Build Settings in both Project and Target. Then I recreated the entitlements from the Summary tab in the target, and it loaded fine without any error messages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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