zefyr

Flutter.podspec 758B

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