The archive did not include a dSYM for the LiveKitWebRTC.framework with the UUIDs
[4C4C44EB-5555-3144-A122-4CF8BB7A92A5]. Ensure that the archive’s SYM folder includes a DWARF file for LiveKitWebRTC.framework with the expected UUIDs.
解决方法
方法 :强制从源码构建 LiveKitWebRTC.framework(推荐)
你需要从源码构建 LiveKitWebRTC,而不是使用 CocoaPods 安装的预编译 .xcframework。
官方说明中也明确指出:
LiveKitClient depends on LiveKitWebRTC, which is distributed as a binary framework.
Step 1: 克隆源码仓库
git clone https://github.com/livekit/client-sdk-ios.git
Step 2: 修改 Podfile 使用本地路径引用(不是从源下载的 xcframework)
pod 'LiveKitClient', :path => '../client-sdk-ios/LiveKit'
替换路径为你 clone 下来的 LiveKit 源码位置。
然后执行:
pod install
这样它就会编译 WebRTC 并带上正确 UUID 的 dSYM。