image_picker.podspec 1.1 KB

1234567891011121314151617181920212223242526
  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 = 'image_picker'
  6. s.version = '0.0.1'
  7. s.summary = 'Flutter plugin that shows an image picker.'
  8. s.description = <<-DESC
  9. A Flutter plugin for picking images from the image library, and taking new pictures with the camera.
  10. Downloaded by pub (not CocoaPods).
  11. DESC
  12. s.homepage = 'https://github.com/flutter/plugins'
  13. s.license = { :type => 'BSD', :file => '../LICENSE' }
  14. s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
  15. s.source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/image_picker' }
  16. s.documentation_url = 'https://pub.dev/packages/image_picker'
  17. s.source_files = 'Classes/**/*'
  18. s.public_header_files = 'Classes/**/*.h'
  19. s.dependency 'Flutter'
  20. s.platform = :ios, '8.0'
  21. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
  22. s.test_spec 'Tests' do |test_spec|
  23. test_spec.source_files = 'Tests/**/*'
  24. end
  25. end