-
-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathSentrySwiftUI.podspec
More file actions
23 lines (21 loc) · 775 Bytes
/
SentrySwiftUI.podspec
File metadata and controls
23 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SentrySwiftUI"
s.version = "9.10.0"
s.summary = "Sentry client for SwiftUI"
s.homepage = "https://github.com/getsentry/sentry-cocoa"
s.license = "mit"
s.authors = "Sentry"
s.source = { :git => "https://github.com/getsentry/sentry-cocoa.git",
:tag => s.version.to_s }
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "12"
s.tvos.deployment_target = "15.0"
s.watchos.deployment_target = "8.0"
s.module_name = "SentrySwiftUI"
s.requires_arc = true
s.frameworks = 'Foundation', 'SwiftUI'
s.swift_versions = "5.5"
s.watchos.framework = 'WatchKit'
s.source_files = "Sources/SentrySwiftUI/**/*.{swift,h,m}"
s.dependency 'Sentry', "9.10.0"
end