デバイスにアプリケーション (ipa) をインストールしようとすると、次のエラーが発生します。
entitlement 'com.apple.developer.ubiquity-container-identifiers' has value not permitted by provisioning profile 'XXXXXXXXXX'
このエラーは、新しい証明書を使用して新しいプロビジョニング プロファイルを生成した後に表示され始めます。役立つ場合は、古いプロビジョニング プロファイルと新しいプロビジョニング プロファイルの異なる部分を以下に示します。
年:
<key>Entitlements</key>
<dict>
<key>application-identifier</key>
<string>FSKCIFJNWO.com.XXXXX.YYYY</string>
<key>aps-environment</key>
<string>production</string>
<key>com.apple.developer.ubiquity-container-identifiers</key>
<array>
<string>FSKCIFJNWO.*</string>
</array>
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>FSKCIFJNWO.*</string>
<key>get-task-allow</key>
<false/>
<key>keychain-access-groups</key>
<array>
<string>FSKCIFJNWO.*</string>
</array>
</dict>
...
新しい:
<key>Entitlements</key>
<dict>
<key>keychain-access-groups</key>
<array>
<string>FSKCIFJNWO.*</string>
</array>
<key>get-task-allow</key>
<false/>
<key>application-identifier</key>
<string>FSKCIFJNWO.com.XXXXX.YYYY</string>
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>FSKCIFJNWO.*</string>
<key>com.apple.developer.icloud-services</key>
<string>*</string>
<key>com.apple.developer.icloud-container-environment</key>
<array>
<string>Development</string>
<string>Production</string>
</array>
<key>com.apple.developer.icloud-container-identifiers</key>
<array>
</array>
<key>com.apple.developer.icloud-container-development-container-identifiers</key>
<array>
</array>
<key>com.apple.developer.ubiquity-container-identifiers</key>
<array>
</array>
<key>com.apple.developer.team-identifier</key>
<string>FSKCIFJNWO</string>
<key>aps-environment</key>
<string>production</string>
</dict>
...
プロビジョニング プロファイルの生成中に何か間違ったことをしたのかもしれません。質問: これを修正する方法を知っていますか?