Boon
Boon

Reputation: 41480

iOS Dev - how to deploy different builds of the same app onto the same device?

I would like to install different build of the same app onto the same device so I can keep the older builds around to verify bug fixes. I don't want to modify the bundle id or code sign it with a different provisioning profile each time if I can avoid it. What's the quickest way to achieve this?

Upvotes: 1

Views: 452

Answers (2)

visakh7
visakh7

Reputation: 26390

I am not sure but the best possible way is to change the identifier.

You can easily try com.yourCompanyName.appName and change appName...

Upvotes: 1

Lee Armstrong
Lee Armstrong

Reputation: 11452

Best to modify the Bundle ID but then best to create different targets for a beta so you can just bash out the extra build.

See this for a good guide on it..

http://www.benzado.com/blog/iphonedev-good-practices

Upvotes: 1

Related Questions