File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ Pod ::Spec . new do |spec |
3
+
4
+ spec . name = 'LiveKit'
5
+ spec . version = '1.0.2'
6
+ spec . summary = 'LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website.'
7
+ spec . homepage = 'https://github.com/livekit/client-sdk-swift'
8
+ spec . license = { :type => 'Apache 2.0' , :file => 'LICENSE' }
9
+ spec . author = 'LiveKit'
10
+
11
+ spec . ios . deployment_target = '13.0'
12
+ spec . osx . deployment_target = '10.15'
13
+
14
+ spec . swift_versions = [ '4.2' , '5' ]
15
+ spec . source = { :git => 'https://github.com/livekit/client-sdk-swift.git' , :tag => '1.0.2' }
16
+
17
+ # spec.source_files = 'Sources/**/*'
18
+ # spec.source_files = 'Sources/LiveKit/**/*.{swift}',
19
+ # 'Sources/CHeaders/**/*.{h,modulemap}'
20
+
21
+ spec . dependency 'WebRTC-SDK' , '~> 104.5112.02'
22
+ spec . dependency 'SwiftProtobuf'
23
+ spec . dependency 'PromisesSwift'
24
+ spec . dependency 'Logging'
25
+
26
+ # spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
27
+ # spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
28
+
29
+ end
You can’t perform that action at this time.
0 commit comments