ComPDFKit_Tools.podspec 1.5 KB

12345678910111213141516171819202122232425262728
  1. Pod::Spec.new do |spec|
  2. spec.name = "ComPDFKit_Tools"
  3. spec.version = "1.11.0"
  4. spec.summary = "The folder of ComPDFKit_Tools includes the UI components to help conveniently integrate ComPDFKit PDF SDK."
  5. spec.description = <<-DESC
  6. ComPDFKit_Tools have also built five standalone function programs, namely Viewer, Annotations, ContentEditor, Forms, and DocsEditor, using this UI component library. Additionally, we have developed a program called **PDFViewer** that integrates all the above-mentioned example features for reference
  7. DESC
  8. spec.homepage = "https://www.compdf.com"
  9. spec.license = { :type => 'Commercial', :file => 'https://github.com/ComPDFKit/PDF-SDK-iOS/blob/main/LICENSE'}
  10. spec.author = { "ComPDFKit" => "support@compdf.com"}
  11. spec.platform = :ios, "10.0"
  12. spec.source = { :http => "http://test-pdf-pro.kdan.cn:3026/download/ComPDFKit_Tools.framework.zip"}
  13. spec.preserve_paths = "ComPDFKit_Tools.framework"
  14. spec.vendored_frameworks = "ComPDFKit_Tools.framework"
  15. spec.requires_arc = true
  16. spec.pod_target_xcconfig = {'VALID_ARCHS' => 'arm64 x86_64 armv7'}
  17. spec.library = 'z', 'c++'
  18. spec.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/ComPDFKit_Tools/**"' }
  19. spec.frameworks = 'QuartzCore','CoreMedia', 'MediaPlayer', 'AVFoundation',
  20. 'CoreGraphics', 'Foundation', 'MobileCoreServices', 'SystemConfiguration',
  21. 'UIKit'
  22. end