In our team, we use Subversion as a VC system for our iOS projects. The problem is that whenever one of the checks in the .pbxproj file, the others get CODE_SIGN_IDENTITY and PROVISIONING_PROFILE, also updated with the wrong values.
Are we setting up something wrong? Is there any way to fix this? For instance. variables or something like that? So that the project file contains
"ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD_32_BIT)";
CLANG_ENABLE_OBJC_ARC = NO;
CODE_SIGN_IDENTITY = {first_variable_here-same_for_all_developers};
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = {second_variable_here-same-for-all-developers};
COPY_PHASE_STRIP = NO;
That would be great ... thanks!
source
share