Downgrade deployment target to ios 7

Summary:
Hey there, lets downgrade deployment target of YogaKit pod to iOS7. This days there is a lot of apps that still have support of ios7 (and  i'm working on one of them :)). And I didnt't find any reason why it couldn't be done.

Thanks
Closes https://github.com/facebook/yoga/pull/524

Differential Revision: D4953726

Pulled By: emilsjolander

fbshipit-source-id: 9e17a40caaa0a3ae26779c0d08acb59f71df2b23
This commit is contained in:
Ivan Persidskiy
2017-04-26 02:59:56 -07:00
committed by Facebook Github Bot
parent aa5b296ac7
commit 3fb2c1888c

View File

@@ -15,7 +15,7 @@ podspec = Pod::Spec.new do |spec|
}
spec.platform = :ios
spec.ios.deployment_target = '8.0'
spec.ios.deployment_target = '7.0'
spec.ios.frameworks = 'UIKit'
spec.dependency 'Yoga', '~> 1.3'