关于iOS XCode的entitlements文件

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应用特定的功能或安全权限。

XCodeCapabilities选项卡下选择一些选项之后,XCode就会生成这样一段 XMLXCode会自动生成一个.entitlements文件,然后在需要的时候往里面添加条目。
关于iOS XCode的entitlements文件_第1张图片
XCode会将这个文件作为 --entitlements参数的内容传给codesign



<plist version="1.0">
<dict>
        <key>keychain-access-groupskey>
        <array>
			<string>$(AppIdentifierPrefix).com.linxinfa.gamestring>
		array>
		
        <key>aps-environmentkey>
        <string>developmentstring>
dict>
plist>

这些授权信息必须都在开发者中心的 App ID中启用,并且包含在配置文件中。在构建应用时需要使用的授权文件可以在 XCode工程的Build Settings中的 Code Signing Entitlements中设置。
关于iOS XCode的entitlements文件_第2张图片

你可能感兴趣的:(xcode,mac,iOS,iOS,XCode,entitlements,授权,打包)