34 lines
774 B
Ruby
34 lines
774 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
|
|
target 'SodaLive' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
# Pods for SodaLive
|
|
pod 'BootpayUI', '4.4.0'
|
|
pod 'ObjectBox'
|
|
|
|
end
|
|
|
|
target 'SodaLive-dev' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
# Pods for SodaLive-dev
|
|
pod 'BootpayUI', '4.4.0'
|
|
pod 'ObjectBox'
|
|
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.generated_projects.each do |project|
|
|
project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|