-
Notifications
You must be signed in to change notification settings - Fork 71
/
react-native-pspdfkit.podspec
26 lines (23 loc) · 1.13 KB
/
react-native-pspdfkit.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
# frozen_string_literal: true
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-pspdfkit"
s.version = package["version"]
s.summary = "React Native PDF Library by PSPDFKit."
s.documentation_url = "https://pspdfkit.com/guides/react-native"
s.license = package["license"]
s.description = <<-DESC
A high-performance viewer, extensive annotation and document editing tools, digital signatures, and more.
DESC
s.authors = { "PSPDFKit GmbH" => "[email protected]" }
s.homepage = "https://pspdfkit.com/guides/react-native/"
s.platform = :ios, "15.0"
s.module_name = "PSPDFKitReactNativeiOS"
s.source = { git: "https://github.com/PSPDFKit/react-native" }
s.source_files = "ios/*.{xcodeproj}", "ios/RCTPSPDFKit/*.{h,m,swift}", "ios/RCTPSPDFKit/Converters/*.{h,m,swift}", "ios/RCTPSPDFKit/Helpers/*.{h,m,swift}"
s.dependency("React")
s.dependency("PSPDFKit", "14.1.1")
s.dependency("Instant", "14.1.1")
s.frameworks = "UIKit"
end