tags:

views:

141

answers:

1

When I generate an Entitlements.plist the contents are like this

    <key>application-identifier</key>
   <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
   <key>keychain-access-groups</key>
   <array>
       <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
   </array>

Instead of being like this

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
<plist version="1.0">
<dict>
    <key>get-task-allow</key>
    <false/>
</dict>
</plist>

Not sure what I am doing wrong...?

+1  A: 

Apple has changed the entitlements to the new version you are seeing now. You are not doing anything wrong.

John Ballinger
+1 thanks John, could you cite that or something so I can mark it as best answer. I do think you're right, though.
Yar
John Ballinger