We are unable to use the provisioning profile to build the app (ipa). Here’s the information that can be useful–
Entitlements on our provisioning profile –
<key>Entitlements</key>
<dict>
<key>keychain-access-groups</key>
<array>
<string>ZGUF4AH75R.*</string>
</array>
<key>get-task-allow</key>
<true/>
<key>application-identifier</key>
<string>ZGUF4AH75R.*</string>
<key>com.apple.developer.team-identifier</key>
<string>ZGUF4AH75R</string>
</dict>
And, here’s the entitlement of the app (build using a different provisioning profile & different dev account) –
<dict>
<key>application-identifier</key>
<string>2LTLLPCW8C.com.adobe.pass.tvdemo.team1.app1</string>
<key>com.apple.developer.team-identifier</key>
<string>2LTLLPCW8C</string>
<key>com.apple.developer.video-subscriber-single-sign-on</key>
<true/>
<key>get-task-allow</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>2LTLLPCW8C.com.adobe.pass.tve</string>
</array>
</dict>
We are interested in the key - <key>com.apple.developer.video-subscriber-single-sign-on</key>
<true/>
, getting this added to ours will solve the problem.
Any idea on how to add this in provisioning profile?
Thanks
Sanjeev