generated from open-voip-alliance/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
iOSPhoneLib.podspec
24 lines (19 loc) · 962 Bytes
/
iOSPhoneLib.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
Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '13.0'
s.requires_arc = true
s.swift_version = "5"
s.name = 'iOSPhoneLib'
s.version = '0.1.14'
s.summary = 'Allow for easy implementation of SIP into a swift project.'
s.description = 'This library is an opinionated sip-wrapper, currently using Linphone as the base.'
s.homepage = 'https://github.com/open-voip-alliance/iOS-Phone-Lib'
s.license = { :type => 'AGPL', :file => 'LICENSE' }
s.author = { "Johannes Nevels" => "[email protected]" }
s.source = { :git => 'https://github.com/open-voip-alliance/iOS-Phone-Lib.git', :tag => s.version.to_s }
s.source_files = 'iOSPhoneLib/**/*'
s.static_framework = true
s.vendored_frameworks = 'linphone-sdk-novideo-frameworks/*'
s.framework = 'UIKit'
s.dependency 'Swinject', '~> 2.8.2'
end