ERROR ITMS-90164/90046: Invalid Code Signing Entitlements

IosXamarinApp StoreProvisioning ProfileApplication Loader

Ios Problem Overview


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.

Ios Solutions


Solution 1 - Ios

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

Solution 2 - Ios

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

Solution 3 - Ios

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.

Solution 4 - Ios

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.

Solution 5 - Ios

Change this in Entitlements.plist:

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

To this:

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

Solution 6 - Ios

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

Solution 7 - Ios

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.

Solution 8 - Ios

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

Solution 9 - Ios

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

Solution 10 - Ios

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

Solution 11 - Ios

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

Solution 12 - Ios

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.

Solution 13 - Ios

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.

Solution 14 - Ios

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.

Solution 15 - Ios

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.

Solution 16 - Ios

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.

Solution 17 - Ios

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!

Solution 18 - Ios

  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

Solution 19 - Ios

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

enter image description here

Solution 20 - Ios

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

Solution 21 - Ios

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!

Solution 22 - Ios

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

Solution 23 - Ios

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!

Solution 24 - Ios

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

enter image description here

Solution 25 - Ios

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

Solution 26 - Ios

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

Solution 27 - Ios

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionyonasstephenView Question on Stackoverflow
Solution 1 - IosquaracView Answer on Stackoverflow
Solution 2 - IosDavid PView Answer on Stackoverflow
Solution 3 - IosyonasstephenView Answer on Stackoverflow
Solution 4 - IosBluezenView Answer on Stackoverflow
Solution 5 - IosKallePView Answer on Stackoverflow
Solution 6 - IosAdrien BrecheteauView Answer on Stackoverflow
Solution 7 - IosRickiGView Answer on Stackoverflow
Solution 8 - Ios7RedBits.comView Answer on Stackoverflow
Solution 9 - IosCássioView Answer on Stackoverflow
Solution 10 - Iosuser5938649View Answer on Stackoverflow
Solution 11 - IosRic SantosView Answer on Stackoverflow
Solution 12 - IosWarren PView Answer on Stackoverflow
Solution 13 - IosKurt AndersonView Answer on Stackoverflow
Solution 14 - IoshstdtView Answer on Stackoverflow
Solution 15 - IosMarcusView Answer on Stackoverflow
Solution 16 - IosNolan.KView Answer on Stackoverflow
Solution 17 - IosSathishView Answer on Stackoverflow
Solution 18 - IosMehul ThakkarView Answer on Stackoverflow
Solution 19 - IosDave GView Answer on Stackoverflow
Solution 20 - IosJP HochbaumView Answer on Stackoverflow
Solution 21 - IosSebastien FilionView Answer on Stackoverflow
Solution 22 - IosNeteroView Answer on Stackoverflow
Solution 23 - IosBenjamin de BosView Answer on Stackoverflow
Solution 24 - IosRajesh GaddamView Answer on Stackoverflow
Solution 25 - IosSamuel LeungView Answer on Stackoverflow
Solution 26 - IosJavier Amor PenasView Answer on Stackoverflow
Solution 27 - IosSeptronicView Answer on Stackoverflow