Entitlements.plist Not Right
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">
<plist version="1.0">
<dict>
<key>get-task-allow</key>
<false/>开发者_如何学编程;
</dict>
</plist>
Not sure what I am doing wrong...?
Apple has changed the entitlements to the new version you are seeing now. You are not doing anything wrong.
精彩评论