audio_service.podspec 890 B

1234567891011121314151617181920212223
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint audio_service.podspec' to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'audio_service'
  7. s.version = '0.14.1'
  8. s.summary = 'Flutter plugin to play audio in the background while the screen is off.'
  9. s.description = <<-DESC
  10. Flutter plugin to play audio in the background while the screen is off.
  11. DESC
  12. s.homepage = 'https://github.com/ryanheise/audio_service'
  13. s.license = { :file => '../LICENSE' }
  14. s.author = { 'Ryan Heise' => 'ryan@ryanheise.com' }
  15. s.source = { :path => '.' }
  16. s.source_files = 'Classes/**/*'
  17. s.dependency 'FlutterMacOS'
  18. s.platform = :osx, '10.12.2'
  19. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
  20. s.swift_version = '5.0'
  21. end