forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlashcatCore.podspec
More file actions
28 lines (20 loc) · 887 Bytes
/
FlashcatCore.podspec
File metadata and controls
28 lines (20 loc) · 887 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
Pod::Spec.new do |s|
s.name = "FlashcatCore"
s.module_name = "DatadogCore"
s.version = "0.4.0"
s.summary = "Flashcat iOS SDK - Core module for observability and monitoring."
s.homepage = "https://github.com/flashcatcloud/fc-sdk-ios"
s.license = { :type => "Apache", :file => 'LICENSE' }
s.authors = "developer@flashcat.com"
s.swift_version = '5.9'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '7.0'
s.source = { :git => "https://github.com/flashcatcloud/fc-sdk-ios.git", :tag => "v#{s.version}" }
s.source_files = ["DatadogCore/Sources/**/*.swift",
"DatadogCore/Private/**/*.{h,m}"]
s.resource_bundle = {
"DatadogCore" => "DatadogCore/Resources/PrivacyInfo.xcprivacy"
}
s.dependency 'FlashcatInternal', s.version.to_s
end