Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add App groups without adding a developer account on Xcode?

I have a development provision profile and development certificate. Using manual signIn I build the application. App Groups enabled on my profile. In capabilities added app groups not displaying and I try to add app groups it showing no account configured error. Is it possible to use app groups with provision profiles and development certificates? enter image description here

like image 880
Ranjani Avatar asked Nov 07 '22 01:11

Ranjani


1 Answers

You can add this to the Entitlements file by adding the following key.

<key>com.apple.security.application-groups</key>
<array>
    <string>App Group Identifier</string>
</array>

This will only work if your provisioning profile already supports the groups you're adding. If you want to add an app group to the provisioning profile, you need to do it from the Apple Developer website.

like image 125
EmilioPelaez Avatar answered Nov 11 '22 08:11

EmilioPelaez