-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoralogix.podspec
41 lines (32 loc) · 1.47 KB
/
Coralogix.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
39
40
#
# Be sure to run `pod spec lint Coralogix.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "Coralogix"
spec.version = "1.0.12"
spec.summary = "Coralogix OpenTelemetry pod for iOS."
spec.description = <<-DESC
The Coralogix RUM agent for iOS provides a Swift package that captures:
HTTP requests, using URLSession instrumentation
Unhandled exceptions (NSException, NSError, Error)
Custom Log ()
Crashes - using PLCrashReporter
Page navigation (Swift use swizzeling / SwiftUI use modifier)
DESC
spec.swift_version = '5.9'
spec.cocoapods_version = '>= 1.10'
spec.platform = :ios, '13.0' # Update the deployment target here
spec.homepage = "https://github.com/coralogix/cx-ios-sdk.git"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.source = { :git => "https://github.com/coralogix/cx-ios-sdk.git", :tag => "#{spec.version}" }
spec.author = { "Coralogix" => "www.coralogix.com" }
spec.ios.deployment_target = "13.0"
spec.source_files = 'Coralogix/Sources/**/*.{swift,h}'
spec.exclude_files = 'Coralogix/Sources/Exclude'
spec.static_framework = true
spec.dependency 'PLCrashReporter', '~> 1.11.1'
end