From e00b97d5872fc9325f313009c5f000e1c660dbae Mon Sep 17 00:00:00 2001 From: rzen Date: Sun, 21 Jun 2026 11:35:34 -0400 Subject: [PATCH] Generate shared schemes for the iOS and watch apps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit XcodeGen wrote no scheme files by default, so Xcode fell back to stale xcuserdata that omitted the iOS app — leaving the Workouts scheme absent from the run destination dropdown. Declare scheme blocks on both app targets so real shared schemes are generated. Claude-Session: https://claude.ai/code/session_01SCv7zvGFcKy47KSTnTLxRe --- project.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project.yml b/project.yml index 199bbd7..2e3553e 100644 --- a/project.yml +++ b/project.yml @@ -67,6 +67,8 @@ targets: ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor TARGETED_DEVICE_FAMILY: "1" DEVELOPMENT_ASSET_PATHS: "\"Workouts/Preview Content\"" + scheme: + testTargets: [] # ---- watchOS app (no iCloud; syncs through the phone via WatchConnectivity) - Workouts Watch App: @@ -101,6 +103,8 @@ targets: ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor TARGETED_DEVICE_FAMILY: "4" DEVELOPMENT_ASSET_PATHS: "\"Workouts Watch App/Preview Content\"" + scheme: + testTargets: [] # ---- watchOS widget extension (a launcher complication for the watch face) -- Workouts Watch Widget: