vote up 2 vote down star
2

hi all

I am having a problem with ad-hoc distribution in iPhone. I have developed an application in sdk 3.0. I have developer's license. I have added certificates and provisioning profiles in my project. So, no problem with that..

But when I try to install the app on my iPhone, it compiles the project and then displays error "The executable was signed with invalid entitlements" on Organizer window. Am I missing something..? I have upgraded my iphone from 2.2.1 and have downloaded latest sdk from apple site.

Plz help me with this issue..

flag

4 Answers

vote up 7 vote down

There are pretty good instructions in the 'Portal Program'. If you log into

http://developer.apple.com/iphone

Then click Distribution on the left, and click the

Creating and Downloading a Distribution Provisioning Profile for Ad Hoc Distribution

link at the bottom.

Here's the key bit:

For Ad Hoc Distribution, complete the following:

  • In the File Menu, select New File -> iPhone OS -> Code Signing -> Entitlements. Name the file “Entitlements.plist" and click ‘Finish’. This creates a copy of the default entitlements file within the project.
  • Select the new Entitlments.plist file and uncheck the “get-task-allow” property. Save the Entitlements.plist file.
  • Select the Target and open the Build settings inspector. In the ‘Code Signing Entitlements’ build setting, type in the filename of the new Entitlements.plist file including the extension. There is no need to specify a path unless you have put the Entitlements.plist file somewhere other than the top level of the project.
  • Click ‘Build’. (Note: Your binary must contain a flattened, square-image icon that is 57x57 pixels. This icon is displayed on the iPhone or iPod touch home screen.)
link|flag
I was just going to write the same thing, it's easy to forget you need the get-tak-allow for ad-hoc in addition to store builds! – Kendall Helmstetter Gelner Jul 2 at 16:44
Many thanks! Solved my problem exactly! – casademora Jul 24 at 13:52
vote up 1 vote down

hi John thanx for your answer.. my problem is solved but still not sure what was actually wrong...

I added Entitlements.plist as you had suggested, unchecked the “get-task-allow” property, but it was not working... Then i removed all the certificates from project... downloaded again from apple site.. added them into project and voila it was working... however I had to "check" the get-task-allow property in order to remove the error... so not sure what the problem was but thanx for your quick help...

link|flag
No prob - I have also noticed the GUI doesn't always actually update in Xcode, especially in Interface Builder. (eg change a font or color but it doesn't "take") – John Jul 24 at 17:25
vote up -1 vote down

Hello,

To correct this issue follow what pJosh said.

-Delete the "build" folder -Ensure that the entitlements.plist, exist and that file has get-task-allow checked.

link|flag
vote up 0 vote down

John's answer is 99% correct. I found that (at least in my configuration), you have to open the Build settings inspector for the PROJECT. The build settings for the target do not contain "Code Signing Entitlements". Perhaps this doesn't make a difference if you have only one target in your project. But if you have multiple targets, you need to go to the project build settings. In any case, after doing what John said, my ad-hoc distribution build worked perfectly.

link|flag
That's odd, because I have Code Signing Entitlements under the Target settings in XCode 3.1. – sbwoodside Oct 16 at 0:26
Code Signing Entitlements will appear if you make the Base SDK iPhone Device not Simulator in the target. – Steve Weller Nov 21 at 0:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.