-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathDatadogSDKTesting.podspec
More file actions
29 lines (24 loc) · 1003 Bytes
/
DatadogSDKTesting.podspec
File metadata and controls
29 lines (24 loc) · 1003 Bytes
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
Pod::Spec.new do |s|
s.name = 'DatadogSDKTesting'
s.module_name = 'DatadogSDKTesting'
s.version = '2.7.2'
s.summary = "Swift testing framework for Datadog's CI Visibility product"
s.license = 'Apache 2.0'
s.homepage = 'https://www.datadoghq.com'
s.social_media_url = 'https://twitter.com/datadoghq'
s.swift_version = '5.9'
s.authors = {
'Yehor Popovych' => 'yehor.popovych@datadoghq.com',
'Nacho Bonafonte' => 'nacho.bonafontearruga@datadoghq.com'
}
s.source = {
:http => "https://github.com/DataDog/dd-sdk-swift-testing/releases/download/#{s.version}/DatadogSDKTesting.zip",
:sha256 => '74c0c62df47fd3175ba9de1b278350f2a09b679fd044482824977e0e84526f32'
}
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '15.0'
s.watchos.deployment_target = '8.0'
s.visionos.deployment_target = '1.0'
s.vendored_frameworks = 'DatadogSDKTesting.xcframework'
end