window_size.podspec 837 B

123456789101112131415161718192021
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
  3. #
  4. Pod::Spec.new do |s|
  5. s.name = 'window_size'
  6. s.version = '0.0.2'
  7. s.summary = 'Allows resizing and repositioning the window containing Flutter.'
  8. s.description = <<-DESC
  9. Allows resizing and repositioning the window containing Flutter.
  10. DESC
  11. s.homepage = 'https://github.com/google/flutter-desktop-embedding/tree/master/plugins/window_size'
  12. s.license = { :file => '../LICENSE' }
  13. s.author = { 'Flutter Desktop Embedding Developers' => 'flutter-desktop-embedding-dev@googlegroups.com' }
  14. s.source = { :path => '.' }
  15. s.source_files = 'Classes/**/*'
  16. s.dependency 'FlutterMacOS'
  17. s.platform = :osx
  18. s.osx.deployment_target = '10.11'
  19. end