user4331904
user4331904

Reputation:

Xcode Deploy Multiple Targets to iOS Device

When I select my target in Xcode and run it on my iPad it overwrites the other target in the same Xcode project. Is there a way to have both targets on the device simultaneously?

Upvotes: 0

Views: 323

Answers (1)

Owen Hartnett
Owen Hartnett

Reputation: 5935

Give them a different bundle ID in your info.plist. This will require different mobile provisioning files for each target. Most people have one target for debugging and development, and another for the production which strips out testing and debugging code.

Upvotes: 2

Related Questions