From e8bfe681cc2522df91b912e2041bfe4a5fc68c4a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Apr 2026 00:53:24 +0000 Subject: [PATCH] fix: remove invalid ASSETCATALOG_OTHER_FLAGS causing dSYM upload CI failures The flag '--enable-icon-stack-fallback-generation=disabled' is not recognized by actool on Xcode 16.x, causing every run of the 'Upload dSYM Files' workflow to fail at the build step with exit code 65. Remove it from both the Debug and Release build configurations. Agent-Logs-Url: https://github.com/meshtastic/Meshtastic-Apple/sessions/fa589034-4017-44ea-9130-123a396d2abd Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> --- Meshtastic.xcodeproj/project.pbxproj | 2 -- 1 file changed, 2 deletions(-) diff --git a/Meshtastic.xcodeproj/project.pbxproj b/Meshtastic.xcodeproj/project.pbxproj index e3504190..6cebec83 100644 --- a/Meshtastic.xcodeproj/project.pbxproj +++ b/Meshtastic.xcodeproj/project.pbxproj @@ -2157,7 +2157,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIconDebug; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES; - ASSETCATALOG_OTHER_FLAGS = "--enable-icon-stack-fallback-generation=disabled"; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Meshtastic/Meshtastic.entitlements; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development"; @@ -2196,7 +2195,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES; - ASSETCATALOG_OTHER_FLAGS = "--enable-icon-stack-fallback-generation=disabled"; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Meshtastic/Meshtastic.entitlements; "CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";