forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatadogSDKObjc.podspec
More file actions
24 lines (19 loc) · 829 Bytes
/
DatadogSDKObjc.podspec
File metadata and controls
24 lines (19 loc) · 829 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
Pod::Spec.new do |s|
s.name = "DatadogSDKObjc"
s.module_name = "DatadogObjc"
s.version = "1.6.0-alpha1"
s.summary = "Official Datadog Objective-C 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" => "maciek.grzybowski@datadoghq.com",
"Mert Buran" => "mert.buran@datadoghq.com",
"Alexandre Costanza" => "alexandre.costanza@datadoghq.com"
}
s.swift_version = '5.1'
s.ios.deployment_target = '11.0'
s.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git', :tag => s.version.to_s }
s.source_files = "Sources/DatadogObjc/**/*.swift"
s.dependency 'DatadogSDK', '1.6.0-alpha1'
end