From 38cd396b8ae213db1a8fab58af175c08d769c598 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 2 Jul 2025 23:33:19 +0200 Subject: [PATCH] fix: Configure iOS team ID via xcconfig to prevent project file conflicts (#186) * fix: remove hardcoded team ID from project, use xcconfig inheritance - Remove hardcoded DEVELOPMENT_TEAM from project.pbxproj to prevent conflicts - Fix xcconfig hierarchy so Local.xcconfig properly overrides defaults - Set Y5PE65HELJ as fallback for CI when Local.xcconfig doesn't exist - Local developers can now use their own team ID without project file changes * fix: revert to using $(inherited) for team ID instead of hardcoding The original setup was correct - using $(inherited) allows the team ID to be set from Local.xcconfig while falling back to project settings when needed. Hardcoding the team ID was unnecessary and went against the established pattern. * fix: restore Local.xcconfig to membershipExceptions Local.xcconfig must remain in membershipExceptions to prevent Xcode from incorrectly treating it as a compilable source file. Configuration files should be excluded from compilation and referenced via baseConfigurationReference. Without this exception, Xcode attempts to compile Local.xcconfig as source code, causing build errors and warnings, especially problematic for git-ignored files. --------- Co-authored-by: David Collado --- ios/VibeTunnel-iOS.xcodeproj/project.pbxproj | 2 -- 1 file changed, 2 deletions(-) diff --git a/ios/VibeTunnel-iOS.xcodeproj/project.pbxproj b/ios/VibeTunnel-iOS.xcodeproj/project.pbxproj index 7baab3ba..09f80516 100644 --- a/ios/VibeTunnel-iOS.xcodeproj/project.pbxproj +++ b/ios/VibeTunnel-iOS.xcodeproj/project.pbxproj @@ -358,7 +358,6 @@ COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1; DEBUG_INFORMATION_FORMAT = dwarf; - DEVELOPMENT_TEAM = Y5PE65HELJ; ENABLE_PREVIEWS = YES; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -460,7 +459,6 @@ COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEVELOPMENT_TEAM = Y5PE65HELJ; ENABLE_NS_ASSERTIONS = NO; ENABLE_PREVIEWS = YES; ENABLE_STRICT_OBJC_MSGSEND = YES;