From f4dad1520c91fa57ef8366ffcff75d83c3eb634b Mon Sep 17 00:00:00 2001 From: Vishesh Handa <me@vhanda.in> Date: Mon, 6 Jan 2020 13:27:51 +0100 Subject: [PATCH] ios: Add untracked file Not sure what it's needed for --- ios/Flutter/Flutter.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ios/Flutter/Flutter.podspec diff --git a/ios/Flutter/Flutter.podspec b/ios/Flutter/Flutter.podspec new file mode 100644 index 00000000..5ca30416 --- /dev/null +++ b/ios/Flutter/Flutter.podspec @@ -0,0 +1,18 @@ +# +# NOTE: This podspec is NOT to be published. It is only used as a local source! +# + +Pod::Spec.new do |s| + s.name = 'Flutter' + s.version = '1.0.0' + s.summary = 'High-performance, high-fidelity mobile apps.' + s.description = <<-DESC +Flutter provides an easy and productive way to build and deploy high-performance mobile apps for Android and iOS. + DESC + s.homepage = 'https://flutter.io' + 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 } + s.ios.deployment_target = '8.0' + s.vendored_frameworks = 'Flutter.framework' +end