forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DatadogSDKCrashReporting.podspec
34 lines (27 loc) · 1.15 KB
/
DatadogSDKCrashReporting.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
34
Pod::Spec.new do |s|
s.name = "DatadogSDKCrashReporting"
s.module_name = "DatadogCrashReporting"
s.version = "2.13.0"
s.summary = "Official Datadog Crash Reporting 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.9'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.deprecated_in_favor_of = 'DatadogCrashReporting'
s.source = { :git => 'https://github.com/DataDog/dd-sdk-ios.git', :tag => s.version.to_s }
s.static_framework = true
s.source_files = "DatadogCrashReporting/Sources/**/*.swift"
s.dependency 'DatadogInternal', s.version.to_s
s.dependency 'PLCrashReporter', '~> 1.11.2'
s.resource_bundle = {
"DatadogCrashReporting" => "DatadogCrashReporting/Resources/PrivacyInfo.xcprivacy"
}
end