From 3fb2c1888ca136b52ddefbb58e0d0d92303d40b5 Mon Sep 17 00:00:00 2001 From: Ivan Persidskiy Date: Wed, 26 Apr 2017 02:59:56 -0700 Subject: [PATCH] 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 --- YogaKit.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YogaKit.podspec b/YogaKit.podspec index 127e49ad..655c7e86 100644 --- a/YogaKit.podspec +++ b/YogaKit.podspec @@ -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'