Skip to content

Commit fd9c46a

Browse files
authored
[Update] LiveKitClient (2.5.0) (#7)
1 parent 5043768 commit fd9c46a

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "LiveKitClient"
3+
spec.version = "2.5.0"
4+
spec.summary = "LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website."
5+
spec.homepage = "https://github.com/livekit/client-sdk-swift"
6+
spec.license = {:type => "Apache 2.0", :file => "LICENSE"}
7+
spec.author = "LiveKit"
8+
9+
spec.ios.deployment_target = "13.0"
10+
spec.osx.deployment_target = "10.15"
11+
12+
spec.swift_versions = ["5.7"]
13+
spec.source = {:git => "https://github.com/livekit/client-sdk-swift.git", :tag => spec.version.to_s}
14+
15+
spec.source_files = "Sources/**/*"
16+
17+
spec.dependency("LiveKitWebRTC", "= 125.6422.28")
18+
spec.dependency("SwiftProtobuf")
19+
spec.dependency("Logging", "= 1.5.4")
20+
spec.dependency("DequeModule", "= 1.1.4")
21+
spec.dependency("OrderedCollections", " = 1.1.4")
22+
23+
spec.resource_bundles = {"Privacy" => ["Sources/LiveKit/PrivacyInfo.xcprivacy"]}
24+
25+
xcode_output = `xcodebuild -version`.strip
26+
major_version = xcode_output =~ /Xcode\s+(\d+)/ ? $1.to_i : 15
27+
28+
spec.pod_target_xcconfig = {
29+
"OTHER_SWIFT_FLAGS" => major_version >=15 ?
30+
"-enable-experimental-feature AccessLevelOnImport" : ""
31+
}
32+
end

0 commit comments

Comments
 (0)