Add xcconfig to allow ID customization - #29
Open
felixmeyer6 wants to merge 2 commits into
Open
Conversation
felixmeyer6
force-pushed
the
add-xcconfig-bundle-id
branch
5 times, most recently
from
January 25, 2026 23:39
9dc9911 to
77d40f5
Compare
Add Config.xcconfig with build configuration variables: - BUNDLE_ID_PREFIX for bundle identifiers - APP_GROUP_ID for application groups - DEVELOPMENT_TEAM for code signing Update Xcode project to reference Config.xcconfig for all build configurations. Replace hardcoded values with variables in project.pbxproj, Info.plist, and entitlement files.
Ignore Config.xcconfig to allow local customization of bundle identifiers and development team without committing developer-specific configuration.
felixmeyer6
force-pushed
the
add-xcconfig-bundle-id
branch
from
January 26, 2026 00:18
77d40f5 to
811e663
Compare
Author
|
Added DEVELOPMENT_TEAM because also specific to each dev's apple dev acc |
Owner
|
Je laisse ouvert car ça peut etre utile a d'autre dev mais je compte pas merge. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an
xcconfigconfiguration file to centralize bundle identifier management. The file is added to.gitignoreafter the initial commit. It's to allow to customize bundle identifiers locally (e.g., switching fromdev.clq.Cosmos-Music-Playertodev.myappledevaccount.Cosmos-Music-Player) without committing the config. All bundle identifiers, iCloud containers, URL schemes, and application groups now reference the$(BUNDLE_ID_PREFIX)variable defined inConfig.xcconfig.