Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Building app for App Store and Enterprise Distribution

I have an application that will be distributed internally to 100's of employees but also distributed externally to the App Store.

I've already signed up for the regular iOS developer membership as well as the Enterprise developer program.

However, I'm trying to figure out how to have xcode switch between building a debug build, and internal build and an app store build.

Specifically, provisioning profiles apply to a specific App ID. I had to create two different app ids in the developer portal but my application only has 1 app id (obviously).

Any ideas how to have one project that could selectively build different configs...?
like image 706
aloo Avatar asked Nov 04 '22 01:11

aloo


1 Answers

You'll have to use different targets. This gives you different configurations, and you can also set different app ids/bundle identifiers.

like image 114
mrueg Avatar answered Nov 12 '22 19:11

mrueg