-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLaunchDarklySessionReplay.podspec
More file actions
41 lines (35 loc) · 1.8 KB
/
LaunchDarklySessionReplay.podspec
File metadata and controls
41 lines (35 loc) · 1.8 KB
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
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = "LaunchDarklySessionReplay"
s.version = "0.26.2" # x-release-please-version
s.summary = "iOS Session Replay Plugin for LaunchDarkly."
s.description = <<-DESC
LaunchDarkly is the feature management platform that software teams use to build better software, faster.
DESC
s.homepage = "https://github.com/launchdarkly/swift-launchdarkly-observability"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE.txt" }
s.author = { "LaunchDarkly" => "sdks@launchdarkly.com" }
s.platforms = { :ios => "13.0" }
s.source = { :git => "https://github.com/launchdarkly/swift-launchdarkly-observability.git",
:tag => s.version.to_s }
s.swift_version = "5.9"
s.default_subspec = 'LaunchDarklySessionReplay'
s.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => '$(inherited) LD_COCOAPODS'
}
s.user_target_xcconfig = { 'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO' }
# SessionReplayC — C target with public headers under include/
s.subspec "SessionReplayC" do |ss|
ss.source_files = "Sources/SessionReplayC/**/*.{c,h}"
ss.public_header_files = "Sources/SessionReplayC/include/**/*.h"
end
# LaunchDarklySessionReplay — Swift target
s.subspec "LaunchDarklySessionReplay" do |ss|
ss.source_files = "Sources/LaunchDarklySessionReplay/**/*.{swift,h,m}"
ss.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => '$(inherited) LD_COCOAPODS',
'OTHER_SWIFT_FLAGS' => '$(inherited) -package-name LaunchDarklyObservability'
}
ss.dependency "LaunchDarklySessionReplay/SessionReplayC"
ss.dependency "LaunchDarklyObservability"
end
end