12345678910111213141516171819202122232425262728 |
- Pod::Spec.new do |spec|
- spec.name = "ComPDFKit"
- spec.version = "1.11.0"
- spec.summary = "ComPDFKit, a software development kit (SDK), consists of PDF SDK and PDF Conversion SDK."
- spec.description = <<-DESC
- ComPDFKit PDF SDK for iOS is a robust PDF library for developers who need to develop applications on iOS, which offers powerful Objective-C APIs for quickly viewing, annotating, editing, and creating PDFs. It is feature-rich and battle-tested, making PDF files process and manipulation easier and faster for iOS devices.
- 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.framework.zip"}
- spec.preserve_paths = "ComPDFKit.framework"
- spec.vendored_frameworks = "ComPDFKit.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/**"' }
- spec.frameworks = 'QuartzCore','CoreMedia', 'MediaPlayer', 'AVFoundation',
- 'CoreGraphics', 'Foundation', 'MobileCoreServices', 'SystemConfiguration',
- 'UIKit'
- end
|