dubbing_lib.podspec 1.1 KB

12345678910111213141516171819202122232425262728
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint dubbing_lib.podspec' to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'dubbing_lib'
  7. s.version = '0.0.1'
  8. s.summary = 'A new Flutter plugin.'
  9. s.description = <<-DESC
  10. A new Flutter plugin.
  11. DESC
  12. s.homepage = 'http://example.com'
  13. s.license = { :file => '../LICENSE' }
  14. s.author = { 'Your Company' => 'email@example.com' }
  15. s.source = { :path => '.' }
  16. s.source_files = 'Classes/**/*'
  17. s.public_header_files = 'Classes/**/*.h'
  18. s.dependency 'Flutter'
  19. s.frameworks = 'AVFoundation', 'SystemConfiguration', 'Foundation', 'CoreTelephony', 'AudioToolbox', 'UIKit', 'CoreLocation', 'QuartzCore', 'CoreGraphics'
  20. s.libraries = 'z', 'c++'
  21. s.platform = :ios, '8.0'
  22. s.static_framework = true
  23. # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
  24. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
  25. end