Using Xcode for multiple developer identifiers

I'm brand new to all this stuff for the iPhone. I do not have such a clear IDea, but about the configuration profile, etc.

I will use my Mac computer for two different developer IDs, one for mine and the other for launching where I work. Now, how can I use xCode to send my applications in two different identifiers?

thanks

+4
source share
1 answer

You can explicitly specify the signature identifier (if they have different names) and the GUID of the initialization profile.

EDIT: CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Developer: John Doe (ABCDEF) and PROVISIONING_PROFILE[sdk=iphoneos*] = provisioning-profile-guid in the configuration (or on the command line). Or, in the project settings, find the “sign” and use the nice GUI menu.

Alternatively, use a different user account for your work builds.

EDIT: System Preferences → Accounts and Add New User. It also helps if you enable fast user switching in the Login Options section.

+2
source

All Articles