mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
25 lines
534 B
Ruby
25 lines
534 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '15.0'
|
|
source "https://gitlab.linphone.org/BC/public/podspec.git"
|
|
source "https://github.com/CocoaPods/Specs.git"
|
|
|
|
def basic_pods
|
|
if ENV['PODFILE_PATH'].nil?
|
|
pod 'linphone-sdk', '~> 5.3.0-alpha'
|
|
else
|
|
pod 'linphone-sdk', :path => ENV['PODFILE_PATH'] # local sdk
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
target 'Linphone' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
# Pods for Linphone
|
|
pod 'SwiftLint'
|
|
basic_pods
|
|
|
|
end
|