Honey
Honey

Reputation: 2880

WildCard Id Xcode

I have different applications to test on device and found that using wildcardId we dont have to create multiple bundleIdentifiers. So created a single wildcard Id com.testing.* But when I run applications with this Identifier one application replaces by another

How can I manage multiple apps with single Id ?

Any suggestions/ideas would be helpful

Upvotes: 1

Views: 1070

Answers (2)

Venkatesh G
Venkatesh G

Reputation: 354

By using Wildcard Id you can easily Install multiple apps without replacing each other.

First create wildcard profile id like (com.mydomainname.*)

Then Goto "Build Settings" - Search "Build Identifier" - then change identifier as below, com.myDomainName.$(PRODUCT_NAME)

by using above line of statement Xcode automatically generate your bundle identifier based on your product name. If you change your product name, Xcode will automatically reflect your bundle identifier. So you no need to replace bundle identifier each other App.

Upvotes: 0

By using Wildcard Id you can easily Install multiple apps without replacing each other.

You just need use it like this:

  • Let say you are using wildcard Id in firstApp than add bundle Identifier with named "com.testing.firstApp" (Considered com.testing.* as wildcard Id)
  • Now if you want install second App than add bundle Identifier with named "com.testing.secondApp"
  • In short you just need to add App name in place of * at last.

Hope it will work for you.

Upvotes: 2

Related Questions