-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNDeviceInfo.podspec
More file actions
22 lines (17 loc) · 713 Bytes
/
Copy pathRNDeviceInfo.podspec
File metadata and controls
22 lines (17 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNDeviceInfo"
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.authors = package['author']
s.homepage = package['repository']['url']
s.platforms = { :ios => "9.0", :visionos => "1.0", :tvos => "10.0"}
s.source = { :git => "https://github.com/react-native-device-info/react-native-device-info.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.resource_bundles = {
'RNDeviceInfoPrivacyInfo' => ['ios/PrivacyInfo.xcprivacy'],
}
s.dependency 'React-Core'
end