forked from Straas/Straas-iOS-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStraaS-iOS-SDK.podspec
More file actions
45 lines (38 loc) · 1.58 KB
/
StraaS-iOS-SDK.podspec
File metadata and controls
45 lines (38 loc) · 1.58 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "StraaS-iOS-SDK"
s.version = "0.15.0"
s.summary = "StraaS.io iOS SDK"
s.description = "StraaS.io - Streaming as a Service, Your Best OTT Solution."
s.homepage = "https://github.com/StraaS/StraaS-iOS-sdk"
s.license = { :type => "Copyright", :text => "Copyright (c) 2018 StraaS.io. All rights reserved." }
s.author = "StraaS.io"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/StraaS/StraaS-iOS-sdk.git",
:tag => "0.15.0" }
s.subspec 'Messaging' do |msg|
msg.vendored_frameworks = "ios/StraaSMessagingSDK.framework"
msg.dependency "StraaS-iOS-SDK/Core"
end
s.subspec 'Core' do |co|
co.vendored_frameworks = "ios/StraaSCoreSDK.framework"
co.dependency "AFNetworking", "~>3.0"
co.dependency "Socket.IO-Client-Swift", "12.0.0"
end
s.subspec 'Streaming' do |streaming|
streaming.vendored_frameworks = "ios/StraaSStreamingSDK.framework"
streaming.dependency "StraaS-iOS-SDK/Core"
streaming.dependency "DSGPUImage", "0.1.8"
end
s.subspec 'Player' do |player|
player.vendored_frameworks = "ios/StraaSPlayerSDK.framework"
player.dependency "StraaS-iOS-SDK/Core"
player.dependency "GoogleAds-IMA-iOS-SDK", "~> 3.3"
player.dependency "KVOController", "~>1.1.0"
end
s.subspec 'Circall' do |circall|
circall.vendored_frameworks = "ios/StraaSCircallSDK.framework"
circall.dependency "StraaS-iOS-SDK/Core"
circall.dependency "Socket.IO-Client-Swift", "12.0.0"
circall.dependency "AFNetworking", "~>3.0"
end
end