nordic_dfu.podspec 737 B

1234567891011121314151617181920212223
  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 = 'nordic_dfu'
  6. s.version = '1.0.0'
  7. s.summary = 'iOS DFU plugin for flutter.'
  8. s.description = <<-DESC
  9. A new flutter plugin project.
  10. DESC
  11. s.homepage = 'http://www.timeyaa.com'
  12. s.license = { :file => '../LICENSE' }
  13. s.author = { 'Timeyaa' => 'fengqiangboy@timeyaa.com' }
  14. s.source = { :path => '.' }
  15. s.source_files = 'Classes/**/*'
  16. s.public_header_files = 'Classes/**/*.h'
  17. s.swift_version = '5.4'
  18. s.dependency 'Flutter'
  19. s.dependency 'iOSDFULibrary', '~> 4.11.1'
  20. s.ios.deployment_target = '9.0'
  21. end