From 3ac5b6e7bd8f12880725a372fd29dd35658f411a Mon Sep 17 00:00:00 2001 From: sravan Date: Thu, 30 Jul 2026 16:47:39 +0530 Subject: [PATCH] fix(ios): import LiveKitClient (the CocoaPod module name), not LiveKit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build error 'unable to resolve module dependency: LiveKit' — the LiveKitClient pod sets no module_name, so CocoaPods names the module after the pod (LiveKitClient). The SDK compiled/linked fine; only the import statement was wrong. Types (Room, etc.) unchanged. Co-Authored-By: Claude Opus 4.8 --- .../ios/Sources/NativeCallPlugin/NativeCallPlugin.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/plugins/native-call/ios/Sources/NativeCallPlugin/NativeCallPlugin.swift b/mobile/plugins/native-call/ios/Sources/NativeCallPlugin/NativeCallPlugin.swift index 67beff7..f0e9687 100644 --- a/mobile/plugins/native-call/ios/Sources/NativeCallPlugin/NativeCallPlugin.swift +++ b/mobile/plugins/native-call/ios/Sources/NativeCallPlugin/NativeCallPlugin.swift @@ -3,7 +3,7 @@ import Capacitor import PushKit import CallKit import AVFoundation -import LiveKit +import LiveKitClient // the CocoaPod is 'LiveKitClient' (no module_name), so the Swift module is LiveKitClient — NOT LiveKit // Native calling for Biz Connect (iOS). Registered by `cap sync` as window.Capacitor.Plugins.NativeCall. //