Xcode- how to set different bundle identifiers for different build configuration?

22,895

Solution 1

As far as I can see, you have already set up individual xcconfig files for each configuration. That means you can just add the bundle identifier key with the corresponding value to each build configuration / xcconfig file.

PRODUCT_BUNDLE_IDENTIFIER = com.mycomp.hockey

You need to make sure that you do not override these xcconfig settings in your Xcode project build settings (the corresponding value should not be bold).

If you want to switch between your bundle identifiers on the fly you might want to create one scheme per build configuration. That way you can just select the corresponding scheme in the Xcode scheme selector (next to the build/run button).

enter image description here

To create a new scheme, just select New scheme from the scheme selector and choose a name, e.g., MyApp [Hockey]. Then edit the scheme and select the preferred build configuration for each step, e.g., MyApp [Hockey] for the Archive step.

enter image description here

You will notice that the bundle identifier on your target info screen will change depending on the selected scheme. Sometimes you need to switch to a different tab of your project settings and then back to the Info tab before the bundle identifier changes (one of many Xcode bugs).

We use the exact same approach for all our projects.

Hope that helps.

Solution 2

Jens' answer was a bit confusing to me. All you have to do is add the xcconfig declared variable (PRODUCT_BUNDLE_IDENTIFIER = com.mycomp.hockey) to the Info.plist product bundle identifier field:

Info.plist variable example

Also don't forget to declare it in every xcconfig file. Enjoy.

Share:
22,895
Rashmi Ranjan mallick
Author by

Rashmi Ranjan mallick

Updated on September 01, 2021

Comments

  • Rashmi Ranjan mallick
    Rashmi Ranjan mallick over 2 years

    In Xcode settings's Info tab for project (not target's Info tab), I have 3 different build configurations, each with 2 .xcconfig files set up for my iOS Xcode project. enter image description here

    I want to have different bundle identifiers for different configurations for better code signing management. Below are my general identity settings, info tab settings and bundle identifier settings under build settings.

    enter image description here

    INFO section-

    enter image description here

    BUILD SETTINGS-

    enter image description here

    When I update the bundle identifier directly in general section, the value in build settings --> Product Bundle Identifier gets overridden for all the build configurations.

    Please suggest me a better way to manage this!!