-
Notifications
You must be signed in to change notification settings - Fork 4
/
cineio-peer-ios.podspec
28 lines (22 loc) · 1.18 KB
/
cineio-peer-ios.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
Pod::Spec.new do |s|
s.name = "cineio-peer-ios"
s.version = "0.0.10"
s.summary = "cine.io Peer iOS SDK"
s.description = <<-DESC
iOS SDK for Peer to Peer using the cine.io API.
DESC
s.homepage = "https://github.com/cine-io/cineio-peer-ios"
s.license = 'MIT'
s.authors = { "Cine.io Team" => "[email protected]" }
s.source = { :git => "https://github.com/cine-io/cineio-peer-ios.git", :tag => s.version.to_s }
s.requires_arc = true
s.header_dir = 'cineio'
s.source_files = [ 'cineio-peer-ios/cineio-peer-ios/*.h',
'cineio-peer-ios/cineio-peer-ios/*.m*',
'cineio-peer-ios/cineio-peer-ios/*.c*' ]
s.frameworks = [ 'Foundation', 'UIKit', 'AVFoundation', 'GLKit' ]
s.dependency 'libjingle_peerconnection', '~> 10842.2.3'
s.dependency 'Primus'#, '~> 0.2.1.2' # use our version till https://github.com/seegno/primus-objc/pull/12 is merged in
s.dependency 'SocketRocket', '~> 0.4.2'
s.ios.deployment_target = '8.1'
end