2017-02-03 13:27:59 -08:00
|
|
|
use_frameworks!
|
|
|
|
|
2023-06-06 14:56:44 -07:00
|
|
|
platform :ios, "13.4"
|
|
|
|
|
2017-02-03 13:27:59 -08:00
|
|
|
target 'YogaKitSample' do
|
|
|
|
pod 'YogaKit', :path => '../../YogaKit.podspec'
|
2023-06-06 14:56:44 -07:00
|
|
|
pod 'Yoga', :path => '../../Yoga.podspec'
|
|
|
|
pod 'IGListKit', '~> 4.0.0'
|
|
|
|
end
|
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.4'
|
|
|
|
end
|
|
|
|
end
|
2017-02-03 13:27:59 -08:00
|
|
|
end
|