Skip to content

Commit 7e07863

Browse files
authored
[Add] LiveKitWebRTC (125.6422.26) (#1)
1 parent 9076be8 commit 7e07863

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "LiveKitWebRTC"
3+
spec.version = "125.6422.26"
4+
spec.summary = "Custom WebRTC build for LiveKit"
5+
spec.description = <<-DESC
6+
LiveKit version Dynamic WebRTC XCFramework
7+
* Framework is renamed to LiveKitWebRTC.
8+
* Objective-C symbols are prefixed with LK, for example LKRTCPeerConnection.
9+
DESC
10+
11+
spec.homepage = "https://github.com/livekit/webrtc-xcframework"
12+
spec.license = {:type => "BSD", :file => "LiveKitWebRTC.xcframework/LICENSE"}
13+
spec.author = "LiveKit"
14+
15+
spec.ios.deployment_target = "13.0"
16+
spec.osx.deployment_target = "10.15"
17+
spec.tvos.deployment_target = "17.0"
18+
spec.visionos.deployment_target = "1.0"
19+
20+
spec.source = {
21+
:http => "https://github.com/livekit/webrtc-xcframework/releases/download/125.6422.26/LiveKitWebRTC.xcframework.zip"
22+
}
23+
spec.vendored_frameworks = "LiveKitWebRTC.xcframework"
24+
25+
# Exclude architectures for specific platforms
26+
spec.pod_target_xcconfig = {
27+
'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'x86_64',
28+
'EXCLUDED_ARCHS[sdk=xrsimulator*]' => 'x86_64'
29+
}
30+
end

0 commit comments

Comments
 (0)