From 93f2c73f61aa07087488090c1b5d4e4defb7987f Mon Sep 17 00:00:00 2001 From: tashda Date: Mon, 4 May 2026 12:06:05 +0200 Subject: [PATCH] Remove custom code signing identity overrides --- Config/BuildSettings.local.example.xcconfig | 1 - Config/BuildSettings.xcconfig | 1 - Shellbee.xcodeproj/project.pbxproj | 2 -- ci_scripts/ci_post_clone.sh | 1 - 4 files changed, 5 deletions(-) diff --git a/Config/BuildSettings.local.example.xcconfig b/Config/BuildSettings.local.example.xcconfig index fa25d2d..9d5c88d 100644 --- a/Config/BuildSettings.local.example.xcconfig +++ b/Config/BuildSettings.local.example.xcconfig @@ -5,7 +5,6 @@ // archives. Do not commit the local file. APP_DEVELOPMENT_TEAM = YOURTEAMID -APP_IPHONEOS_CODE_SIGN_IDENTITY = APP_BUNDLE_ID = com.example.shellbee APP_WIDGET_BUNDLE_SUFFIX = widgets APP_WIDGET_BUNDLE_ID = $(APP_BUNDLE_ID).$(APP_WIDGET_BUNDLE_SUFFIX) diff --git a/Config/BuildSettings.xcconfig b/Config/BuildSettings.xcconfig index 723e029..8e2b57f 100644 --- a/Config/BuildSettings.xcconfig +++ b/Config/BuildSettings.xcconfig @@ -3,7 +3,6 @@ // which is ignored by git and should be used for device builds and App Store archives. APP_DEVELOPMENT_TEAM = -APP_IPHONEOS_CODE_SIGN_IDENTITY = APP_BUNDLE_ID = dev.echodb.shellbee APP_WIDGET_BUNDLE_SUFFIX = shellbeeWidgets APP_WIDGET_BUNDLE_ID = $(APP_BUNDLE_ID).$(APP_WIDGET_BUNDLE_SUFFIX) diff --git a/Shellbee.xcodeproj/project.pbxproj b/Shellbee.xcodeproj/project.pbxproj index ae00701..73311ef 100644 --- a/Shellbee.xcodeproj/project.pbxproj +++ b/Shellbee.xcodeproj/project.pbxproj @@ -871,7 +871,6 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO; CODE_SIGN_ENTITLEMENTS = Shellbee.entitlements; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "$(APP_IPHONEOS_CODE_SIGN_IDENTITY)"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = "$(APP_DEVELOPMENT_TEAM)"; @@ -948,7 +947,6 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground; CODE_SIGN_ENTITLEMENTS = ShellbeeWidgets.entitlements; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "$(APP_IPHONEOS_CODE_SIGN_IDENTITY)"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = "$(APP_DEVELOPMENT_TEAM)"; diff --git a/ci_scripts/ci_post_clone.sh b/ci_scripts/ci_post_clone.sh index 6490291..59e173a 100755 --- a/ci_scripts/ci_post_clone.sh +++ b/ci_scripts/ci_post_clone.sh @@ -28,7 +28,6 @@ TARGET="$REPO_ROOT/Config/BuildSettings.local.xcconfig" { echo "APP_DEVELOPMENT_TEAM = $SHELLBEE_TEAM_ID" - echo "APP_IPHONEOS_CODE_SIGN_IDENTITY = Apple Distribution" echo "APP_BUNDLE_ID = $SHELLBEE_BUNDLE_ID" echo "APP_WIDGET_BUNDLE_SUFFIX = $SHELLBEE_WIDGET_SUFFIX" echo "APP_WIDGET_BUNDLE_ID = \$(APP_BUNDLE_ID).\$(APP_WIDGET_BUNDLE_SUFFIX)"