forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DatadogSDK.podspec
31 lines (24 loc) · 1.01 KB
/
DatadogSDK.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
Pod::Spec.new do |s|
s.name = "DatadogSDK"
s.version = "2.10.0"
s.summary = "Official Datadog Swift SDK for iOS."
s.homepage = "https://www.datadoghq.com"
s.social_media_url = "https://twitter.com/datadoghq"
s.license = { :type => "Apache", :file => 'LICENSE' }
s.authors = {
"Maciek Grzybowski" => "[email protected]",
"Maxime Epain" => "[email protected]",
"Ganesh Jangir" => "[email protected]",
"Maciej Burda" => "[email protected]"
}
s.swift_version = '5.7.1'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s }
s.deprecated_in_favor_of =
'DatadogCore, DatadogLogs, DatadogRUM, and DatadogTrace'
s.dependency 'DatadogCore', s.version.to_s
s.dependency 'DatadogLogs', s.version.to_s
s.dependency 'DatadogRUM', s.version.to_s
s.dependency 'DatadogTrace', s.version.to_s
end