JLChen
2021-08-02 38f4fb064df09f344fc3237409c76a9fba2a8a9e
1
2
3
4
5
6
7
8
9
10
11
12
13
Pod::Spec.new do |s|
 
  s.name         = "liblinphone"
  s.version      = "FRAMEWORK_VERSION"
  s.summary      = "This is liblinphone, a free (GPL) video voip library based on the SIP protocol"
  s.homepage     = "https://github.com/BelledonneCommunications/linphone-iphone"
  s.license      = "GNU GPL 2"
  s.author       = "employees@belledonne-communications.com" 
  s.platform     = :ios, "9.0"
  s.source       = { :http => "https://www.linphone.org/releases/ios/liblinphone-iphone-sdk-FRAMEWORK_VERSION.zip" }
  s.vendored_frameworks = "liblinphone-sdk/apple-darwin/Frameworks/**"
 
end