File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Specs/LiveKitClient/2.5.0 Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments