I must have misunderstood something very basic regarding iOS App groups somewhere. Please help me getmy head around it. :-)
As I understand iOS App Groups they can be used for two (or more) apps to share some data, such as files or user preferences.
Now, to make this work this needs to be set up:
- An App group must be registered and given an identity with the team's developer portal (example:
group.com.mycompany.myappgroup
) - An App Id must be set up in the dev portal that allows app groups and that references the set up app group id (example:
com.mycompany.myappgroup
) - A provisioning profile must be registered that references the new App Id
- Each app needs to be signed with a Bundle Id that corresponds to the App Id (example:
com.mycompany.myappgroup
)
Now, what I don't understand is the last item. If apps needs to have bundle id's that matches the same App Id then they would no longer be uniquely identifiable.
What am I missing?