forked from signalfx/splunk-otel-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SplunkOtel.podspec
34 lines (31 loc) · 1.36 KB
/
SplunkOtel.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
#
# NOTE: Be sure to run
#
# `pod lib lint SplunkOtel.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 = 'SplunkOtel'
s.version = '0.11.3'
s.summary = 'Splunk OpenTelemetry 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.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.git', :tag => s.version.to_s }
# Make sure the deployment target matches with Package.swift
s.ios.deployment_target = '11.0'
s.source_files = 'SplunkRumWorkspace/SplunkRum/SplunkRum/**/*.swift'
end