From 41e96b4403444ca0abbaecf66d58eb717b71f4bc Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Fri, 27 Dec 2024 18:48:03 +0530 Subject: [PATCH] [xcconfig]: corrected the variable from DEBUG_BUNDLE_ID_SUFFIX to BUNDLE_ID_SUFFIX --- CodeSigning.xcconfig.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeSigning.xcconfig.sample b/CodeSigning.xcconfig.sample index 688ccde8..e0a5f1b0 100644 --- a/CodeSigning.xcconfig.sample +++ b/CodeSigning.xcconfig.sample @@ -13,7 +13,7 @@ ORG_IDENTIFIER = com.myuniquename // add team ID to bundle ID for debug builds since these will most likely be installed via Xcode // SideStore will expect the team ID to be at the end of the bundle ID, but this doesn't happen when we install via Xcode // we don't want to do this for release since those builds will most likely be installed via SideServer, which adds the team ID -DEBUG_BUNDLE_ID_SUFFIX = .$(DEVELOPMENT_TEAM) +BUNDLE_ID_SUFFIX = .$(DEVELOPMENT_TEAM) // Set to YES if you have a valid paid Apple Developer account DEVELOPER_ACCOUNT_PAID = NO