Files
linphone-tutorials/ios/swift/4-CallKitTutorial/Podfile
2023-09-12 16:55:20 +02:00

25 lines
533 B
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '13.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 'CallKitTutorial' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for CallKitTutorial
basic_pods
end