The Signing Entitlements file does not match those specified in the provisioning profile.

I am an iOS developer, and recently I came across one strange problem with Apple's signing certificates. My problem: I have an application assembly with a production certificate, and it works very well, but when I use the same certificate to create another application, it throws me the error mentioned below: "The rights specified in your applications The signature code signature file does not match specified in the collateral profile. (0xE8008016). " I'm not sure what is wrong?

+4
source share
1 answer

I myself ran into this problem and found that the test project was configured to the same profile as the application project, and this caused the problem. See details here:

Rights do not match Provisioning Profile (0xE8008016)

You can also solve this problem during build by deselecting the test project in the schematic build configuration.

A few hours later it turned out to be a solution for me. Hope this helps.

0
source

All Articles