iOS - 钥匙串 - 可执行文件使用无效权利签名

iOS - Keychain - The executable was signed with invalid entitlements

在我的设备上安装我的应用程序时出现错误:

The executable was signed with invalid entitlements

The entitlements specified in your application's Code Signing Entitlements file are invalid, not permitted, or do not match those specified in your provisioning profile. (0xE8008016)

我有一个有效的“Entitlements.plist”文件。如果我从文件中删除“Keychain”权利,它会安装 成功

我的钥匙串授权如下:

<key>keychain-access-groups</key>
<array>
    <string>com.MyCompany.MyApp</string>
</array>

我的 Bundle 标识符和 AppID 类似于:

com.MyCompany.MyApp

我的配置文件 AppID 如下所示:

如何使用配置文件启用钥匙串?或者我从权利文件中遗漏了什么?

参考:http://evgenii.com/blog/sharing-keychain-in-ios/

您需要将您的前缀添加到应用字符串中,如下所示:

<key>keychain-access-groups</key>
<array>
    <string>AppPrefix.com.MyCompany.MyApp</string>
</array>