-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathKMSClient.podspec
More file actions
21 lines (20 loc) · 902 Bytes
/
KMSClient.podspec
File metadata and controls
21 lines (20 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "KMSClient"
s.version = "1.2.3"
s.summary = "Kurento Media Server iOS client."
s.homepage = "https://github.com/sdkdimon/kms-ios-client"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Dmitry Lizin" => "sdkdimon@gmail.com" }
s.source = { :git => "https://github.com/sdkdimon/kms-ios-client.git", :tag => s.version }
s.platform = :ios
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.module_name = 'KMSClient'
s.module_map = 'KMSClient/KMSClient/KMSClient.modulemap'
s.dependency 'WebSocketRocket', '~> 0.5'
s.dependency 'MantleNullValuesOmit', '~> 0.0.5'
s.dependency 'DLMantle', '~> 2.2'
s.dependency 'RACObjC', '~> 3.3'
s.source_files = 'KMSClient/KMSClient/**/*.{h,m}'
s.private_header_files = 'KMSClient/KMSClient/KMSRACSubject.h'
end