12345678910111213141516171819202122232425262728 |
- Pod::Spec.new do |spec|
- spec.name = "ComPDFKit_Tools"
- spec.version = "1.11.0"
- spec.summary = "The folder of ComPDFKit_Tools includes the UI components to help conveniently integrate ComPDFKit PDF SDK."
- spec.description = <<-DESC
- 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
- DESC
- spec.homepage = "https://www.compdf.com"
- spec.license = { :type => 'Commercial', :file => 'https://github.com/ComPDFKit/PDF-SDK-iOS/blob/main/LICENSE'}
- spec.author = { "ComPDFKit" => "support@compdf.com"}
- spec.platform = :ios, "10.0"
- spec.source = { :http => "http://test-pdf-pro.kdan.cn:3026/download/ComPDFKit_Tools.framework.zip"}
- spec.preserve_paths = "ComPDFKit_Tools.framework"
- spec.vendored_frameworks = "ComPDFKit_Tools.framework"
- spec.requires_arc = true
- spec.pod_target_xcconfig = {'VALID_ARCHS' => 'arm64 x86_64 armv7'}
- spec.library = 'z', 'c++'
- spec.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/ComPDFKit_Tools/**"' }
- spec.frameworks = 'QuartzCore','CoreMedia', 'MediaPlayer', 'AVFoundation',
- 'CoreGraphics', 'Foundation', 'MobileCoreServices', 'SystemConfiguration',
- 'UIKit'
- end
|