fis_lib_print.podspec 836 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 = 'fis_lib_print'
  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 = 'https://github.com/DavBfr/dart_pdf/tree/master/printing'
  12. s.license = { :file => '../LICENSE' }
  13. s.author = { 'David PHAM-VAN' => 'dev.nfet.net@gmail.com' }
  14. s.source = { :path => '.' }
  15. s.source_files = 'Classes/**/*'
  16. s.dependency 'Flutter'
  17. s.ios.deployment_target = '12.0'
  18. s.swift_version = '4.2'
  19. end