Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Submission Error - Invalid binary - Invalid Code Signing Error

Invalid Code Signing Entitlements - Your application bundle's signature contains ubiquity code signing entitlements that are not supported.

Specifically, value "( X49XXXS5Q.* )" for key "com.apple.developer.ubiquity-container-identifiers" in is not supported.

The key happens to be my distribution id.

like image 364
user667673 Avatar asked Jun 07 '11 17:06

user667673


3 Answers

Yes that is the correct answer! steps to correct:

Find you app id in the portal - dis-able the iCloud. Create a new provisioning profile download it delete the prior profile replace it with the new one re-compile and submit.

like image 155
Dan Zeitman Avatar answered Nov 16 '22 04:11

Dan Zeitman


Disable iCloud in the Provisioning Portal and generate a new "distribution" Provisioning Profile before submitting it again to Apple.

like image 27
BastiBen Avatar answered Nov 16 '22 04:11

BastiBen


It looks like you have a wildcard app id set for your application. This is not allowed for distribution of applications. You should set your application to a dedicated app id like:

X49XXXS5Q.this.is.my.app

instead of

X49XXXS5Q.*
like image 4
grundprinzip Avatar answered Nov 16 '22 04:11

grundprinzip