-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPexipMedia.podspec
22 lines (22 loc) · 997 Bytes
/
PexipMedia.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'PexipMedia'
s.version = '0.9.0'
s.summary = 'Core components for working with audio and video in the Pexip Swift SDK'
s.description = <<-DESC
Pexip Swift SDK is designed for use by iOS/macOS voice/video applications
that want to initiate or connect to conferences hosted on the Pexip Infinity platform.
DESC
s.homepage = 'https://github.com/pexip'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = 'Pexip AS'
s.platform = :ios, :osx
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.swift_versions = ['5']
s.source = { :git => 'https://github.com/pexip/pexip-swift-sdk.git', :tag => "#{s.version}" }
s.source_files = [
'Sources/PexipMedia/**/*.swift'
]
s.dependency 'PexipCore', "#{s.version}"
s.dependency 'PexipScreenCapture', "#{s.version}"
end