printing.podspec 787 B

1234567891011121314151617181920
  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 = 'printing'
  6. s.version = '1.0.0'
  7. s.summary = 'Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers'
  8. s.description = <<-DESC
  9. Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers
  10. DESC
  11. s.homepage = 'http://example.com'
  12. s.license = { :file => '../LICENSE' }
  13. s.author = { 'Your Company' => 'email@example.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