stuartmorgan 11408effda
Update macOS podspec version requirement (#9077)
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.
2019-05-24 21:29:37 -04:00

20 lines
869 B
Ruby

#
# NOTE: This podspec is NOT to be published. It is only used as a local source!
#
Pod::Spec.new do |s|
s.name = 'FlutterMacOS'
s.version = '1.0.0'
s.summary = 'High-performance, high-fidelity cross-platform apps.'
s.description = <<-DESC
Flutter is Google's portable UI toolkit for building beautiful, natively-compiled applications for mobile, web, and desktop from a single codebase.
DESC
s.homepage = 'https://flutter.dev'
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.vendored_frameworks = 'FlutterMacOS.framework'
end