-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPulse-Swift-Instrumentation-Crashes.podspec
More file actions
30 lines (26 loc) · 1.25 KB
/
Pulse-Swift-Instrumentation-Crashes.podspec
File metadata and controls
30 lines (26 loc) · 1.25 KB
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
30
Pod::Spec.new do |spec|
spec.name = "Pulse-Swift-Instrumentation-Crashes"
spec.version = "0.0.1"
spec.summary = "Crash instrumentation for Pulse iOS SDK (KSCrash + OTel logs)"
spec.homepage = "https://github.com/dream-horizon-org/pulse-ios-sdk"
spec.documentation_url = "https://pulse.dreamhorizon.org/docs/sdk/ios"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
spec.authors = { "Pulse iOS SDK" => "support@dream-horizon.org" }
spec.source = {
:git => "https://github.com/dream-horizon-org/pulse-ios-sdk.git",
:tag => spec.version.to_s
}
spec.source_files = "Sources/Instrumentation/Crashes/**/*.swift"
spec.exclude_files = "Sources/Instrumentation/Crashes/README.md"
spec.swift_version = "5.10"
spec.ios.deployment_target = "13.0"
spec.tvos.deployment_target = "13.0"
spec.watchos.deployment_target = "6.0"
spec.visionos.deployment_target = "1.0"
spec.module_name = "Crashes"
spec.dependency 'OpenTelemetry-Swift-Api', '~> 2.2'
spec.dependency 'OpenTelemetry-Swift-Sdk', '~> 2.2'
spec.dependency 'KSCrash', '~> 2.5'
spec.dependency 'Pulse-Swift-Sessions', spec.version.to_s
spec.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-module-name Crashes -package-name pulse_swift_instrumentation_crashes" }
end