Reputation: 2880
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
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
Reputation: 5602
By using Wildcard Id you can easily Install multiple apps without replacing each other.
You just need use it like this:
Hope it will work for you.
Upvotes: 2