- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreact-native-barometer.podspec
More file actions
Latest commit
29 lines (24 loc) · 897 Bytes
/
Copy pathreact-native-barometer.podspec
File metadata and controls
29 lines (24 loc) · 897 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
25
26
27
28
29
require"json"
package=JSON.parse(File.read(File.join(__dir__,"package.json")))
Pod::Spec.newdo |s|
s.name="react-native-barometer"
s.version=package["version"]
s.summary=package["description"]
s.description=package["description"]
s.homepage="https://github.com/dpyeates/react-native-barometer"
s.license="MIT"
s.authors={"Darren Yeates"=>"apps@sensorworks.co.uk"}
s.platforms={:ios=>"15.1"}
s.source={:git=>"https://github.com/dpyeates/react-native-barometer.git",:tag=>"#{s.version}"}
s.source_files="ios/**/*.{h,m,mm}"
s.requires_arc=true
s.frameworks="CoreMotion"
s.pod_target_xcconfig={
"CLANG_CXX_LANGUAGE_STANDARD"=>"c++20",
}
ifrespond_to?(:install_modules_dependencies,true)
install_modules_dependencies(s)
else
s.dependency"React-Core"
end
end