Installing Multiple Apps with Xcode

Good Morning,

I’ve started working on another app.  I have my previous app installed on my iPad with Xcode and it runs fine.

I added a new appid on the IOS dev site.

I built the new app with corona.

Now when I got to install it on my iPad via Xcode it only wants to replace the existing app.  I’m sure I’m doing something wrong, but I can’t figure out how to get both apps on the Ipad at the same time.

Any ideas?

Thanks,

Arthur

if your apps have the same bundle id they will replace the previous app.

you should use an adhoc provisioning profile, because then the bundle id will be generated from the name you put into coronas build window. something like this:

com.yourcompany.appname

if you make sure to build the apps with different names they will not replace each other.

Thanks!

if your apps have the same bundle id they will replace the previous app.

you should use an adhoc provisioning profile, because then the bundle id will be generated from the name you put into coronas build window. something like this:

com.yourcompany.appname

if you make sure to build the apps with different names they will not replace each other.

Thanks!