-
Notifications
You must be signed in to change notification settings - Fork 6
/
SplunkOtelCrashReporting.podspec
38 lines (35 loc) · 1.58 KB
/
SplunkOtelCrashReporting.podspec
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
31
32
33
34
35
36
37
38
#
# NOTE: Be sure to run
#
# `pod lib lint SplunkOtelCrashReporting.podspec`
#
# to ensure this is a valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SplunkOtelCrashReporting'
s.version = '0.6.0'
s.summary = 'Splunk OpenTelemetry Crash Reporting pod for iOS'
s.description = <<-DESC
The Splunk RUM agent for iOS provides a Swift package that captures:
HTTP requests, using URLSession instrumentation
Application startup information
UI activity - screen name (typically ViewController name), actions, and PresentationTransitions
Crashes/unhandled exceptions using SplunkRumCrashReporting
🚧 This project is currently in BETA. It is officially supported by Splunk. However, breaking changes MAY be introduced.
DESC
s.swift_version = '5.1'
s.cocoapods_version = '>= 1.10'
s.homepage = 'https://github.com/signalfx/splunk-otel-ios.git'
s.license = { :type => "Apache", :file => 'LICENSE' }
s.author = { 'Splunk' => 'www.splunk.com' }
s.source = { :git => 'https://github.com/signalfx/splunk-otel-ios-crashreporting.git', :tag => s.version.to_s }
# Make sure the deployment target matches with Package.swift
s.ios.deployment_target = '11.0'
s.source_files = 'SplunkRumCrashReporting/SplunkRumCrashReporting/**/*.swift'
s.static_framework = true
s.dependency 'PLCrashReporter', '~> 1.11.1'
s.dependency 'SplunkOtel', '~> 0.11.0'
end