just_audio.podspec.json 727 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "just_audio",
  3. "version": "0.0.1",
  4. "summary": "Flutter audio player",
  5. "description": "A flutter plugin for playing audio.",
  6. "homepage": "https://github.com/ryanheise/just_audio",
  7. "license": {
  8. "file": "../LICENSE"
  9. },
  10. "authors": {
  11. "Your Company": "email@example.com"
  12. },
  13. "source": {
  14. "path": "."
  15. },
  16. "source_files": "just_audio/Sources/just_audio/**/*.{h,m}",
  17. "public_header_files": "just_audio/Sources/just_audio/include/**/*.h",
  18. "ios": {
  19. "dependencies": {
  20. "Flutter": []
  21. }
  22. },
  23. "osx": {
  24. "dependencies": {
  25. "FlutterMacOS": []
  26. }
  27. },
  28. "platforms": {
  29. "ios": "12.0",
  30. "osx": "10.14"
  31. },
  32. "pod_target_xcconfig": {
  33. "DEFINES_MODULE": "YES"
  34. }
  35. }