85

Note: I'm developing using Xamarin. Similar question posted in Xamarin Forum here

I'm creating an app called, say CompanyApp. Then I created an App ID for it com.Company.CompanyApp, along with Distribution Provisioning Profile that uses the corresponding App ID. I uploaded the binary and it worked perfectly fine.

Then I went on create a demo version of the app (basically the same app with small modification, so it's the same solution & project, just different bundle signing setting), CompanyAppDemo with a new App ID com.Company.CompanyAppDemo, along with a new Distribution Provisioning Profile that uses the new App ID. I updated the iOS Bundle Signing options to use the new Provisioning Profile and generated the IPA. But when I uploaded this to Application Loader, I got the following error:

[2015-01-23 16:08:21 SGT] ERROR: ERROR ITMS-90164: "Invalid Code Signing Entitlements. The entitlements in your app bundle signature do not match the ones that are contained in the provisioning profile. According to the provisioning profile, the bundle contains a key value that is not allowed: 'TEAMID.com.Company.CompanyApp' for the key 'application-identifier' in 'Payload/CompanyApp.app/CompanyApp'"

[2015-01-23 16:08:21 SGT] ERROR: ERROR ITMS-90046: "Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value 'TEAMID.com.Company.CompanyApp' for key 'application-identifier' in 'Payload/CompanyApp.app/CompanyApp' is not supported. This value should be a string starting with your TEAMID, followed by a dot '.', followed by the bundle identifier."

I have been debugging for days to figure out to no avail.

I am wondering why when I signed with the new profile, the error that Application Loader threw refer to the ID of the original TEAMID.com.Company.CompanyApp instead of TEAMID.com.Company.CompanyAppDemo? Is this a bug in Xamarin that pick up a wrong provisioning profile or am I missing something? You don't need different certificate for different app right?

Note that I have always refreshed the Provisioning Profile list in XCode > Preference before changing the iOS Build Signing option in Xamarin.

Cœur
  • 32,421
  • 21
  • 173
  • 232
yonasstephen
  • 2,546
  • 3
  • 20
  • 46

27 Answers27

133

If someone gets here by searching for ERROR ITMS-90046 like me, my solution was to Clean it and delete all precompiled frameworks (the custom ones) and then build again.

Note: The error description said something about key "aps-environment" as "development".

Edit: The actual error message

Dan Beaulieu
  • 17,926
  • 15
  • 92
  • 126
quarac
  • 3,354
  • 2
  • 19
  • 24
  • can you explain this a bit more? – John May 01 '15 at 22:36
  • 1
    Yes, in my app I'm using custom frameworks, they are added in the "build phases" "target dependencies" section, so when I compile the app, they are compiled and also signed. Also I have a script in each framework "build phases" that moves the compiled framework to another folder. There seems to be a bug with the signing process and I think the key part was the deletion of the frameworks, forcing the compiler to compile and sign them again. That error never happen again. – quarac May 02 '15 at 01:46
  • This worked, I just cleaned it and compiled again and didn't change anything, why it failed the first time? Mystery – rr1g0 Jun 26 '15 at 01:01
  • Same problem here and same fix ! You saved me a strong headache ! Lot of thanks. – stefat Oct 09 '15 at 16:26
  • 7
    All I had to do was do the Clean...This was a new error after about 50 builds uploaded to TestFlight – Phamer Oct 28 '15 at 22:55
63

I had the same problem and solved with a simple Product -> Clean.

David P
  • 993
  • 8
  • 17
  • 1
    thanks worked for me to solve ERROR ITMS-90164: "Invalid Code Signing Entitlements. The entitlements in your app bundle signature do not match the ones that are contained in the provisioning profile. According to the provisioning profile, the bundle contains a key value that is not allowed: 'true' for the key 'get-task-allow' in 'Payload/Palau Moja.app/Palau Moja'" ERROR ITMS-90164: "Invalid Code Signing Entitlements. The entitlements in your app bundle signature do not match the ones that are contained in the provisioning profile. – Josep Escobar May 23 '16 at 14:46
  • Had the same error as Josep and clean -> archive -> upload again solve it. Thanks for posting this solution! – little Dec 30 '16 at 21:24
  • Where do you do *Product->Clean*? In XCode or Visual Studio? I'm developing using Xamarin, BTW. – James Lavery Nov 13 '18 at 11:11
20

If someone gets here by searching for both error ITMS-90164 and error ITMS-90046 with get-task-allow and asp-environment keys:

1

Like David P said, a Product -> Clean before a new Archive did solve my problem.

I just want to add that in my case I observed that the faulty xarchive was missing the following file:

2

Before sending that .xarchive to your client for production signature, you might want to look for the archived-expanded-entitlements.xcent file and be sure it's there.

Bluezen
  • 812
  • 9
  • 11
18

Finally after 2 weeks of hair pulling..

For some reasons, if there is no key 'application-identifier' in the Entitlements.plist that is set to TEAMID.com.Company.CompanyAppDemo, Xamarin will use the original application-identifier, i.e. TEAMID.com.Company.CompanyApp

So the solution was to add application-identifier specifying the correct application bundle ID inside Entitlements.plist. Then include the plist in the Build Options > iOS Bundle Signing.

yonasstephen
  • 2,546
  • 3
  • 20
  • 46
10

Change this in Entitlements.plist:

<key>aps-environment</key>
<string>development</string>

To this:

<key>aps-environment</key>
<string>production</string>
KalleP
  • 279
  • 2
  • 13
8

Same problem and solved with a simple Product -> Clean.

5

This can also be caused by you having to agree to a new contract in iTunes connect. Log in to iTunes connect and you should see a banner at the top prompting you to agree to the latest contract change.

RickiG
  • 11,280
  • 13
  • 78
  • 120
5

The entitlement file had empty arrays, removing those solved the issue.

7RedBits.com
  • 148
  • 2
  • 3
4

For me, the problem was a Entitlements.plist that was auto-added and was empty. Removed it from the Custom entitlements field and solved the problem.

View of the iOS Bundle Signing on Visual Studio 2015

Cássio
  • 171
  • 2
  • 8
3

If you do not select the corresponding release certificate before you pack, ERROR ITMS-90164 will be reported

Build Setting -> the Code Signing Identity -> Release ->Any IOS SDK

bummi
  • 26,435
  • 13
  • 58
  • 97
2

Make sure you have selected the App target and not the WatchKit App when archiving.

Ric Santos
  • 13,489
  • 4
  • 35
  • 65
2

None of the other answers solved this error for me, but this did:

  1. Create new XCode application and go examine it's code signing settings.

  2. Try to get your app to be set similarly to the default XCode 7 or Xcode 8 signing and provisioning settings, XCode 7 is shown here, it's changed again in XCode 8.

provisioning and signing

  1. If the above is not enough, you may need to do it again, but this time, before you do, delete any old expired provisioning profiles from your apple Keyring or delete and re-sign into your apple developer (itunes) account in the XCode preferences. Be sure to EXIT XCODE and RESTART after ANY changes. Then add your account again, and let XCode fetch your new signing and team information.
Warren P
  • 58,696
  • 38
  • 168
  • 301
1

I had tried to upload a build from a git branch that wasn't the master. To resolve the issue I merged the branch into the master and built again. I was then able to upload the build successfully.

Kurt Anderson
  • 922
  • 1
  • 10
  • 26
1

A project including 2 targets(with 2 Developer id ,2 entitlements) may lead to this. (Do not ask me how it is happened...)

When archiving, remove another entitlement file temporarily.

hstdt
  • 3,693
  • 22
  • 26
1

Doing a proper Xcode 'Quit' and then restart was the final action that got it working for me.

I had changed the bundle identifier (for a demo version) and got the same error (as detailed in the question) when verifying my archived build. I am using Xcode. Just closing Xcode and reopening my project wasn't enough, but a full 'Quit' was. Something was probably cached somewhere I'm guessing.

Marcus
  • 201
  • 2
  • 5
1

I tried everything listed here, turned out the problem was my .entitlement file, that had lines I never put in in the first place, they just got added somehow.
Removed those lines and tried again, worked.

DimaSan
  • 10,315
  • 10
  • 56
  • 68
Nolan.K
  • 57
  • 1
  • 2
  • 9
1

I have just renamed in entitlements.plist the value of Access domains from applinks:htts://domain.app.link to applinks:domain.app.link it works like a charm. Cheers!

Sathish
  • 388
  • 1
  • 5
  • 19
0
  1. Go to Build Phase in Xcode
  2. Remove all the frameworks
  3. Add them back
  4. Now build->Archieve->Upload to App Store

Hurray, You are done with it. Problem solved

Mehul Thakkar
  • 11,971
  • 8
  • 50
  • 74
0

For me, I was able to solve it by turning off / on again the automatic code signing feature:

enter image description here

Dave G
  • 10,974
  • 7
  • 49
  • 74
0

For me I had the wrong file in my Custom Entitlements setting under iOS Bundle Signing. Removed it and it worked!

JP Hochbaum
  • 577
  • 2
  • 13
  • 28
0

After many hours of investigation, i found an easy solution.

Instead of using the application loader to upload the application, I used the Organizer from XCode and it worked without any warnings when doing the upload!

0

My problem is I was using a wrong bundle to create IPA file

Netero
  • 3,581
  • 2
  • 27
  • 28
0

I had exactly the same problem and it was quite a stupid mistake. I don't want anyone to spend time on this, so for this one:

Mistake

So what happened here, was that i entered '10' in the deployment target. That should have been 10.0 instead. That is what produced the infamous ERROR ITMS-90164/90046: Invalid Code Signing Entitlements for me!

Benjamin de Bos
  • 4,344
  • 4
  • 18
  • 30
0

You should check your Entitlements. It is like plist file. Edit it to development and the remove the extra fields.

enter image description here

0

My two cents here.

Just now I stuck in this problem because when I copy my TeamID / Application ID from the apple developer portal which brings a lot of unrelated value to the entitlement.plist. I didn't notice this because I was using Xcode to edit the entitlement.plist and the input box will not display everything after the first new line character.

I suggest using plain text editor for entitlement.plist for this case.

Thanks, Samuel

Samuel Leung
  • 65
  • 10
0

After trying all tricks read last days at Stackoverflow i delete file "xxxxxx.entitlements" and regenerate it again. I click at Capabilities, select ON at Associated Domains and adding "Domains". Then at Capabilities > Push Notifications click on Fix "Add the Push Notifications entitlement to your entitlement file".

Making that let me do ARCHIVE Successful

0

I had a link like this webcredentials:https://************.link, which was causing my upload to fail. I removed it and the problem was solved.

Septronic
  • 1,070
  • 12
  • 29