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