Update Componentkit, Yoga, YogaKit

Summary: Fixed the broken master for flipper iOS  oss

Reviewed By: jknoxville

Differential Revision: D14686908

fbshipit-source-id: abdcacf279449f83c98d1635c65ff8759ee17926
This commit is contained in:
Pritesh Nandgaonkar
2019-04-01 06:56:38 -07:00
committed by Facebook Github Bot
parent d044ae991f
commit 8a19a859f2
7 changed files with 42 additions and 37 deletions

View File

@@ -16,6 +16,13 @@ target 'Sample' do
post_install do |installer|
file_name = Dir.glob("*.xcodeproj")[0]
app_project = Xcodeproj::Project.open(file_name)
installer.pods_project.targets.each do |target|
if ('Yoga' == target.name)
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '8.0'
end
end
end
app_project.native_targets.each do |target|
target.build_configurations.each do |config|
if (config.build_settings['OTHER_CFLAGS'])