forked from itinance/react-native-fs
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRNFS2.podspec
More file actions
24 lines (20 loc) · 801 Bytes
/
RNFS2.podspec
File metadata and controls
24 lines (20 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'json'
pjson = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = "RNFS2"
s.version = pjson["version"]
s.homepage = "https://github.com/sourcetoad/react-native-fs2"
s.summary = pjson["description"]
s.license = pjson["license"]
s.authors = {
"Johannes Lumpe" => "johannes@lum.pe",
"Hagen Hübel" => "hhuebel@itinance.com",
"Connor Tumbleson" => "connor@sourcetoad.com"
}
s.ios.deployment_target = '12.4'
s.source = { :git => "https://github.com/sourcetoad/react-native-fs2", :tag => "v#{s.version}" }
s.resource_bundles = { 'RNFS_PrivacyInfo' => 'ios/PrivacyInfo.xcprivacy' }
s.source_files = "ios/*.{h,m}"
s.preserve_paths = "src/*.{js,ts}"
s.dependency 'React-Core'
end