entitlements
,全称 code signing entitlements
。
苹果官方的说明:https://developer.apple.com/library/archive/documentation/Miscellaneous/Reference/EntitlementKeyReference/Chapters/AboutEntitlements.html
Entitlements confer specific capabilities or security permissions to your iOS or macOS app.
翻译一下就是
授权赋予iOS或macOS应用特定的功能或安全权限。
在 XCode
的Capabilities
选项卡下选择一些选项之后,XCode
就会生成这样一段 XML
。 XCode
会自动生成一个.entitlements
文件,然后在需要的时候往里面添加条目。
XCode
会将这个文件作为 --entitlements
参数的内容传给codesign
<?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>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix).com.linxinfa.game</string>
</array>
<!--推送功能-->
<key>aps-environment</key>
<string>development</string>
</dict>
</plist>
这些授权信息必须都在开发者中心的 App ID
中启用,并且包含在配置文件中。在构建应用时需要使用的授权文件可以在 XCode
工程的Build Settings
中的 Code Signing Entitlements
中设置。