forked from livekit/client-sdk-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiveKit.podspec
29 lines (21 loc) · 1.06 KB
/
LiveKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |spec|
spec.name = 'LiveKit'
spec.version = '1.0.3'
spec.summary = 'LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website.'
spec.homepage = 'https://github.com/livekit/client-sdk-swift'
spec.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
spec.author = 'LiveKit'
spec.ios.deployment_target = '13.0'
spec.osx.deployment_target = '10.15'
spec.swift_versions = ['4.2', '5']
spec.source = { :git => 'https://github.com/livekit/client-sdk-swift.git', :tag => '1.0.3' }
spec.source_files = 'Sources/**/*'
# spec.source_files = 'Sources/LiveKit/**/*.{swift}',
# 'Sources/CHeaders/**/*.{h,modulemap}'
spec.dependency 'WebRTC-SDK', '~> 104.5112.02'
spec.dependency 'SwiftProtobuf'
spec.dependency 'PromisesSwift'
spec.dependency 'Logging'
# spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
# spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end