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.
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.
INFO section-
BUILD SETTINGS-
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!!
Change the Bundle ID Choose your project from the left side, then your app target under TARGETS, select the General tab and rename the Bundle Identifier.
Under Targets > Build settings, scroll to Packaging. Change your Product name to the desired name & Product bundle identifier to the new one. Once you do this, automatically your project display name & bundle id changes to the new one in General tab.
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).
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With