-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPulse-Swift-Protocol-Exporter-Http.podspec
More file actions
27 lines (22 loc) · 1.21 KB
/
Pulse-Swift-Protocol-Exporter-Http.podspec
File metadata and controls
27 lines (22 loc) · 1.21 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
Pod::Spec.new do |spec|
spec.name = "Pulse-Swift-Protocol-Exporter-Http"
spec.version = "0.0.1"
spec.summary = "Swift OpenTelemetry Protocol Exporter Common"
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 Authors"
spec.source = { :git => "https://github.com/dream-horizon-org/pulse-ios-sdk.git", :tag => spec.version.to_s }
spec.source_files = "Sources/Exporters/OpenTelemetryProtocolHttp/**/*.swift"
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 = "OpenTelemetryProtocolExporterHttp"
spec.dependency 'OpenTelemetry-Swift-Api', '~> 2.2'
spec.dependency 'OpenTelemetry-Swift-Sdk', '~> 2.2'
spec.dependency 'Pulse-Swift-Protocol-Exporter-Common', spec.version.to_s
spec.dependency 'SwiftProtobuf', '~> 1.28'
spec.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS" => "-module-name OpenTelemetryProtocolExporterHttp -package-name opentelemetry_swift_exporter_http" }
end