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
This commit is contained in:
stuartmorgan 2019-08-20 14:51:16 -07:00 committed by GitHub
parent f02279849e
commit f310ec580e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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