Running multiple applications with the same profile on the same device (iPhone)

My question is: how can I run several applications with the same profile (training profile) on the same device? I tried, but the previous application is overwritten with a new one.

Thanks in advance.

+4
source share
3 answers

If your provisioning profile is a wildcard (looks something like this: com.company. *), If your applications have different package identifiers, they will create separate applications. This identifier seems to be used by iOS to distinguish between different applications. If you are not using a wild card, you will need to create a new training profile for each version. = |

You can change this value in your plist.

enter image description here

+11
source

For this application identifier, you need a wildcard application identifier and a provisioning profile. And applications must have different identifiers.

+8
source

Having a separate Bundle ID for each build will help solve your problem.

-2
source

Source: https://habr.com/ru/post/1379301/


All Articles