Reputation: 8327
How do I configure my iOS Swift project to be part of my App Group? Can't find where to set this in Xcode.
I have created my App Group Identifier within: developer.apple.com/account/resources/certificates/ ..
I want all the files generated by the app to be accessible by my other apps, that will all be assigned to same App Group.
(This is development only; not for public distribution.)
Upvotes: 0
Views: 536
Reputation: 52615
View your target in Xcode (usually by clicking on the top level element in the project navigator)
Go to "Signing and Capabilities"
Click the "+ Capability" button.
Choose "App Groups"
Add the appropriate identifiers.
Upvotes: 1