compdfkit_flutter.podspec 964 B

123456789101112131415161718192021222324
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint compdfkit_flutter.podspec` to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'compdfkit_flutter'
  7. s.version = '1.0.0'
  8. s.summary = 'Flutter PDF Library by ComPDFKit'
  9. s.description = <<-DESC
  10. A new Flutter plugin project.
  11. DESC
  12. s.homepage = 'https://www.compdf.com'
  13. s.license = { :file => '../LICENSE' }
  14. s.author = { 'ComPDFKit' => 'support@compdf.com' }
  15. s.source = { :path => '.' }
  16. s.source_files = 'Classes/**/*'
  17. s.public_header_files = 'Classes/**/*.h'
  18. s.dependency 'Flutter'
  19. s.dependency("ComPDFKit_Tools")
  20. s.dependency("ComPDFKit")
  21. s.platform = :ios, '11.0'
  22. # Flutter.framework does not contain a i386 slice.
  23. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
  24. end