From 46cc2610b9ff9c16153f2bdafc9575c64cb4f5cc Mon Sep 17 00:00:00 2001 From: sravan Date: Fri, 31 Jul 2026 20:14:57 +0530 Subject: [PATCH] Fix pod install: --repo-update for LiveKit 2.15.3's transitive deps Git pin now works (LiveKitClient 2.15.3 pre-downloaded), but the build box's cached spec repo is stale: "Unable to find a specification for LiveKitUniFFI (= 0.0.6)". Both LiveKitUniFFI 0.0.6 and LiveKitWebRTC 144.7559.11 are published on the trunk, so --repo-update on the real pod install refreshes the repo and resolves them. Co-Authored-By: Claude Opus 4.8 --- codemagic.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/codemagic.yaml b/codemagic.yaml index d44b10f..f17a334 100644 --- a/codemagic.yaml +++ b/codemagic.yaml @@ -93,7 +93,10 @@ workflows: - name: Install CocoaPods script: | cd mobile/ios/App - pod install + # --repo-update refreshes the cached spec repo so it knows LiveKit 2.15.3's transitive deps + # (LiveKitUniFFI 0.0.6 + LiveKitWebRTC 144.7559.11) — they ARE on the trunk but the build box's + # cached repo was stale ("Unable to find a specification for LiveKitUniFFI (= 0.0.6)"). + pod install --repo-update - name: Build the signed IPA script: |