-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPulse-Swift-Sessions.podspec
More file actions
28 lines (24 loc) · 1.12 KB
/
Pulse-Swift-Sessions.podspec
File metadata and controls
28 lines (24 loc) · 1.12 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
Pod::Spec.new do |spec|
spec.name = "Pulse-Swift-Sessions"
spec.version = "0.0.1"
spec.summary = "Swift OpenTelemetry Sessions Instrumentation"
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/Sessions/*.swift"
spec.exclude_files = "Sources/Instrumentation/Sessions/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 = "Sessions"
spec.dependency 'OpenTelemetry-Swift-Api', '~> 2.2'
spec.dependency 'OpenTelemetry-Swift-Sdk', '~> 2.2'
spec.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-module-name Sessions -package-name pulse_swift_sessions" }
end