Showing
2 changed files
with
26 additions
and
0 deletions
example/ios/Flutter/Flutter.podspec
0 → 100644
1 | +# | ||
2 | +# NOTE: This podspec is NOT to be published. It is only used as a local source! | ||
3 | +# | ||
4 | + | ||
5 | +Pod::Spec.new do |s| | ||
6 | + s.name = 'Flutter' | ||
7 | + s.version = '1.0.0' | ||
8 | + s.summary = 'High-performance, high-fidelity mobile apps.' | ||
9 | + s.description = <<-DESC | ||
10 | +Flutter provides an easy and productive way to build and deploy high-performance mobile apps for Android and iOS. | ||
11 | + DESC | ||
12 | + s.homepage = 'https://flutter.io' | ||
13 | + s.license = { :type => 'MIT' } | ||
14 | + s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } | ||
15 | + s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } | ||
16 | + s.ios.deployment_target = '8.0' | ||
17 | + s.vendored_frameworks = 'Flutter.framework' | ||
18 | +end |
-
Please register or login to post a comment