From f310ec580ebf6ef1a70d2a905bc342d268fba435 Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Tue, 20 Aug 2019 14:51:16 -0700 Subject: [PATCH] Set FlutterMacOS podspec min version to 10.11 (#11306) The framework is built using 10.11 as the deployment version; update the podspec accordingly. See https://github.com/flutter/flutter/issues/33200 --- shell/platform/darwin/macos/framework/FlutterMacOS.podspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shell/platform/darwin/macos/framework/FlutterMacOS.podspec b/shell/platform/darwin/macos/framework/FlutterMacOS.podspec index 2ac734fd135..fce016d4434 100644 --- a/shell/platform/darwin/macos/framework/FlutterMacOS.podspec +++ b/shell/platform/darwin/macos/framework/FlutterMacOS.podspec @@ -13,7 +13,6 @@ Flutter is Google's portable UI toolkit for building beautiful, natively-compile s.license = { :type => 'MIT' } s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } - # TODO: Decide what value should be here. See #33200. - s.osx.deployment_target = '10.12' + s.osx.deployment_target = '10.11' s.vendored_frameworks = 'FlutterMacOS.framework' end