From 52b113e3c98774afd678e86e43d61da6158c0a43 Mon Sep 17 00:00:00 2001 From: Stuart Morgan Date: Fri, 24 May 2019 12:49:06 -0700 Subject: [PATCH] Update macOS podspec version requirement The framework is currently built with a 10.12 deployment target, so the podspec can be at 10.12 rather than 10.13. The TODO is left because this is an update to the current reality rather than a final decision about what should be supported. --- shell/platform/darwin/macos/framework/FlutterMacOS.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/macos/framework/FlutterMacOS.podspec b/shell/platform/darwin/macos/framework/FlutterMacOS.podspec index 1d0d58e0be376..2ac734fd1355c 100644 --- a/shell/platform/darwin/macos/framework/FlutterMacOS.podspec +++ b/shell/platform/darwin/macos/framework/FlutterMacOS.podspec @@ -14,6 +14,6 @@ Flutter is Google's portable UI toolkit for building beautiful, natively-compile 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.13' + s.osx.deployment_target = '10.12' s.vendored_frameworks = 'FlutterMacOS.framework' end