-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from signalfx/dvernon/splunkOtel_0.11.0_fix
Update for SplunkOtel 0.11.0 & Podspec
- Loading branch information
Showing
5 changed files
with
72 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters