5

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

Siva
  • 700
  • 6
  • 25
  • I have tried using a development certificate, I added app group capability successfully. – childrenOurFuture Jul 01 '21 at 06:47
  • @childrenOurFuture I enabled app groups on our provision profile. Using those profiles in Xcode. But inside capability added app groups are not visible – Siva Jul 01 '21 at 11:13

2 Answers2

2

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.

EmilioPelaez
  • 18,758
  • 6
  • 46
  • 50
0

I write here, I need post a picture. Are you check here?enter image description here once you have added the app-group capability, you won't find it in the + button list

Then below is the develop center page, have you check this? enter image description here enter image description here

childrenOurFuture
  • 1,889
  • 2
  • 14
  • 23