forked from getsentry/sentry-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNSentry.podspec
More file actions
23 lines (18 loc) · 704 Bytes
/
RNSentry.podspec
File metadata and controls
23 lines (18 loc) · 704 Bytes
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'
version = JSON.parse(File.read('package.json'))["version"]
Pod::Spec.new do |s|
s.name = 'RNSentry'
s.version = version
s.license = 'MIT'
s.summary = 'Official Sentry SDK for react-native'
s.author = 'Sentry'
s.homepage = "https://github.com/getsentry/sentry-react-native"
s.source = { :git => 'https://github.com/getsentry/sentry-react-native.git', :tag => "#{s.version}"}
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.preserve_paths = '*.js'
s.dependency 'React'
s.dependency 'Sentry', '~> 4.4.0'
s.source_files = 'ios/RNSentry.{h,m}'
s.public_header_files = 'ios/RNSentry.h'
end