forked from PSPDFKit/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-native-pspdfkit.podspec
23 lines (21 loc) · 1.05 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
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, '13.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}'
s.dependency 'React'
s.dependency 'PSPDFKit'
s.frameworks = 'UIKit'
end