Invalid Code Signing Rights?

I found these errors while downloading the app from the app store, can anyone fix this problem?

Error ITMS-9000: "Invalid code signing entitlements. Your application bundle signature contains code signing entitlement that are not supported on iOS. specifically, value '*' for key 'com.apple.developer.associated-domamains' in 
'Payload/battleofchampionsHDIOS.app/battleofchampionsHDIOS' is not support."

      

I've already tried previous methods like: disabled that iCloud

, ` regenerated pre-profiles several times, updated Xcode / mac / pre-profiles from Xcode . but still repeating the same mistake over and over.

+3


source to share


4 answers


Check your certificate again. Are you sure you are using the correct certificate? Production Environment Certificate?

Refer to these links



ITMS-9000 ERROR: "Invalid code signing rights. No rights found in package" - How to change application ID name

Getting ERROR ITMS-9000 when trying to download an application using Application Loader

+1


source


I solved this problem because I selected the Associated Domains right (on the Apple Developer site), however, in Xcode 6.1.1, it didn't seem to be allowed to submit the app if you have the Associated Domains toggle as disabled in the Xcode tab capability.

So you can fix the associated domain issue by going to the application target in Xcode, Capabilities, Associated Domains and clicking on the radio button if it's off. You don't need to add any data / domains, but it looks like Xcode is happy!



See the image below: enter image description here

Alternatively, if you can (and don't mind), then you can remove the associated domain right when configuring your application on the Apple Developer site and re-download the certificates / profiles.

+9


source


This question suddenly attacked me. I load assemblies frequently and nothing has changed. Just kept straying from the code signing app store.

Another solution worked for me. In Xcode go to App Target -> Build Settings - check your code signing ID, in this dropdown I have selected my distribution code signature (I had a developer selected). I changed this and it worked. Also the Provisioning Profile (still under code) was set to automatic, which I think might come into play if this is a problem for someone.

+2


source


Check your linked domains in Project Settings > Capabilities


From this error, you set its wildcard (*), which is not allowed.

For more information on linked domains, see the App Distribution Guide

0


source







All Articles