-
Notifications
You must be signed in to change notification settings - Fork 60
/
pspdfkit_flutter.podspec
27 lines (26 loc) · 1.15 KB
/
pspdfkit_flutter.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "pspdfkit_flutter"
s.version = "4.0.0"
s.homepage = "https://PSPDFKit.com"
s.documentation_url = "https://pspdfkit.com/guides/flutter"
s.license = { type: "Commercial", file: "../LICENSE" }
s.author = { "PSPDFKit GmbH" => "[email protected]" }
s.summary = "Flutter PDF Library by PSPDFKit"
s.description = <<-DESC
A high-performance viewer, extensive annotation and document editing tools, digital signatures, and more.
DESC
s.source = { path: "." }
s.source_files = "Classes/**/*.{h,m,swift}"
s.public_header_files = "Classes/**/*.h"
s.dependency("Flutter")
s.dependency("PSPDFKit", "14.1.1")
s.dependency("Instant", "14.1.1")
s.swift_version = "5.0"
s.platform = :ios, "15.0"
s.version = "4.0.0"
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES", "SWIFT_INSTALL_OBJC_HEADER" => "NO" }
end