在我的设备上安装我的应用时出现错误:
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)”权利。
我的钥匙串(keychain)权利如下所示:
<key>keychain-access-groups</key>
<array>
<string>com.MyCompany.MyApp</string>
</array>
我的 Bundle 标识符和 AppID 类似:
com.MyCompany.MyApp
我的配置文件的 AppID 如下所示:
如何使用配置文件启用钥匙串(keychain)?或者我在权利文件中遗漏了什么?
Best Answer-推荐答案 strong>
引用:http://evgenii.com/blog/sharing-keychain-in-ios/
您需要将前缀添加到应用字符串,使其看起来像:
<key>keychain-access-groups</key>
<array>
<string>AppPrefix.com.MyCompany.MyApp</string>
</array>
关于iOS - 钥匙串(keychain) - 可执行文件的签名无效,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/47679049/
|