forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DatadogAlamofireExtension.podspec
33 lines (27 loc) · 1.32 KB
/
DatadogAlamofireExtension.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
Pod::Spec.new do |s|
s.name = "DatadogAlamofireExtension"
s.version = "2.18.0"
s.summary = "An Official Extensions of Datadog Swift SDK for Alamofire."
s.description = <<-DESC
The DatadogAlamofireExtension pod is deprecated and will no longer be maintained.
Please refer to the following documentation on how to instrument Alamofire with the Datadog iOS SDK:
https://docs.datadoghq.com/real_user_monitoring/mobile_and_tv_monitoring/integrated_libraries/ios
DESC
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.deprecated = true
s.swift_version = '5.9'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s }
s.source_files = ["DatadogExtensions/Alamofire/**/*.swift"]
s.dependency 'DatadogInternal', s.version.to_s
s.dependency 'Alamofire', '~> 5.0'
end