The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Datadog, reference develop (0ece71), with Swift 6.1 for tvOS using Xcode 16.3 on 16 Jun 2025 14:38:54 UTC.

Swift 6 data race errors: 38

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Datadog-Package -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

                                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
public enum TrackingConsent: Codable {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
import DatadogInternal
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:229:77: warning: capture of 'trackingConsent' with non-sendable type 'TrackingConsent' in an isolated closure; this is an error in the Swift 6 language mode
                allStorages.forEach { $0.migrateUnauthorizedData(toConsent: trackingConsent) }
                                                                            ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
public enum TrackingConsent: Codable {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:251:36: warning: capture of 'messageReceiver' with non-sendable type 'any FeatureMessageReceiver' in a '@Sendable' closure
            self.bus.queue.async { messageReceiver.receive(message: .context(context), from: self) }
                                   ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessageReceiver.swift:14:17: note: protocol 'FeatureMessageReceiver' does not conform to the 'Sendable' protocol
public protocol FeatureMessageReceiver {
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:251:78: warning: capture of 'context' with non-sendable type 'DatadogContext' in a '@Sendable' closure
            self.bus.queue.async { messageReceiver.receive(message: .context(context), from: self) }
                                                                             ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/DatadogContext.swift:9:15: note: struct 'DatadogContext' does not conform to the 'Sendable' protocol
public struct DatadogContext {
              ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:251:94: warning: capture of 'self' with non-sendable type 'DatadogCore' in a '@Sendable' closure
            self.bus.queue.async { messageReceiver.receive(message: .context(context), from: self) }
                                                                                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:17:22: note: class 'DatadogCore' does not conform to the 'Sendable' protocol
internal final class DatadogCore {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:409:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.error(
                   ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:536:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self.subscribe(\.applicationStateHistory, to: applicationStatePublisher)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:536:13: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            self.subscribe(\.applicationStateHistory, to: applicationStatePublisher)
            ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:46:30: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
            guard let core = self.core, let configuration = self.configuration else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:62:23: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
        queue.async { self.core = core }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:62:35: warning: capture of 'core' with non-sendable type 'any DatadogCoreProtocol' in a '@Sendable' closure
        queue.async { self.core = core }
                                  ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DatadogCoreProtocol.swift:14:17: note: protocol 'DatadogCoreProtocol' does not conform to the 'Sendable' protocol
public protocol DatadogCoreProtocol: AnyObject, MessageSending, AdditionalContextSharing, Storage {
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
import DatadogInternal
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:71:23: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
        queue.async { self.bus[key] = receiver }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:71:39: warning: capture of 'receiver' with non-sendable type 'any FeatureMessageReceiver' in a '@Sendable' closure
        queue.async { self.bus[key] = receiver }
                                      ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessageReceiver.swift:14:17: note: protocol 'FeatureMessageReceiver' does not conform to the 'Sendable' protocol
public protocol FeatureMessageReceiver {
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:78:23: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
        queue.async { self.bus.removeValue(forKey: key) }
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:98:30: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
            guard let core = self.core else {
                             ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:103:37: warning: capture of 'message' with non-sendable type 'FeatureMessage' in a '@Sendable' closure
                $0.receive(message: message, from: core)
                                    ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessage.swift:10:13: note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
public enum FeatureMessage {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:107:17: warning: capture of 'fallback' with non-sendable type '() -> Void' in a '@Sendable' closure
                fallback()
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:107:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                fallback()
                ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:103:37: warning: capture of 'message' with non-sendable type 'FeatureMessage' in an isolated closure; this is an error in the Swift 6 language mode
                $0.receive(message: message, from: core)
                                    ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessage.swift:10:13: note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
public enum FeatureMessage {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:121:13: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
            self.configuration = self.configuration.map {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:13:22: note: class 'MessageBus' does not conform to the 'Sendable' protocol
internal final class MessageBus {
                     ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:122:33: warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in a '@Sendable' closure
                $0.merged(with: configuration)
                                ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
public struct ConfigurationTelemetry: Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:122:33: warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in an isolated closure; this is an error in the Swift 6 language mode
                $0.merged(with: configuration)
                                ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
public struct ConfigurationTelemetry: Equatable {
              ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:123:18: warning: implicit capture of 'configuration' requires that 'ConfigurationTelemetry' conforms to 'Sendable'; this is an error in the Swift 6 language mode
            } ?? configuration
                 ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
public struct ConfigurationTelemetry: Equatable {
              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/DataEncryption.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CrashReportingPlugin.swift, BacktraceReporter.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ Datadog.swift,\ CITestIntegration.swift,\ KronosClock.swift,\ KronosDNSResolver.swift,\ KronosData+Bytes.swift,\ KronosInternetAddress.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosClock.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosDNSResolver.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosData+Bytes.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:472:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            consolePrint("\(error)", .error)
            ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:502:12: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        DD.logger = InternalLogger(
           ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:505:28: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            printFunction: consolePrint,
                           ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:573:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            consolePrint("⚠️ Overriding verbosity, upload frequency, and sample rates due to \(LaunchArguments.Debug) launch argument", .warn)
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
    static let active: CITestIntegration? = CITestIntegration()
               ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:15:16: note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
internal class CITestIntegration {
               ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
    static let active: CITestIntegration? = CITestIntegration()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let active: CITestIntegration? = CITestIntegration()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosClock.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosDNSResolver.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosData+Bytes.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Kronos/KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CrashReportMinifier.swift, DDCrashReportBuilder.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ PerformancePreset.swift,\ BatchMetrics.swift,\ BenchmarkURLSessionTaskDelegate.swift,\ Cryptography.swift,\ Retrying.swift,\ Versioning.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/PerformancePreset.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BatchMetrics.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BenchmarkURLSessionTaskDelegate.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Cryptography.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Retrying.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Versioning.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/PerformancePreset.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BatchMetrics.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/SDKMetrics/BenchmarkURLSessionTaskDelegate.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Cryptography.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Utils/Retrying.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Versioning.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CrashReporting.swift, CrashReportingFeature.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ Directories.swift,\ EventGenerator.swift,\ FeatureStorage.swift,\ Directory.swift,\ File.swift,\ FilesOrchestrator.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Directories.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/EventGenerator.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/Directory.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/File.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FilesOrchestrator.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Directories.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/EventGenerator.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:65:24: warning: capture of 'consent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
                switch consent {
                       ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
public enum TrackingConsent: Codable {
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
import DatadogInternal
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:67:25: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
                    try directories.unauthorized.deleteAllFiles()
                        ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:85:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
                try directories.unauthorized.deleteAllFiles()
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:95:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
                try directories.unauthorized.deleteAllFiles()
                    ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:10:17: note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
internal struct FeatureStorage {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:125:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
            DD.logger.error("Can't determine track name for feature named '\(featureName)'")
               ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/Directory.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/Files/File.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FilesOrchestrator.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, CrashContextProvider.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ TLVBlock.swift,\ TLVBlockReader.swift,\ BackgroundTaskCoordinator.swift,\ DataUploadConditions.swift,\ DataUploadDelay.swift,\ DataUploadStatus.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlock.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlockReader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadConditions.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadDelay.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadStatus.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlock.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlock.swift:16:10: warning: associated value 'invalidDataType(got:)' of 'Sendable'-conforming enum 'TLVBlockError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case invalidDataType(got: Any)
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/TLV/TLVBlockReader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:31:10: warning: main actor-isolated instance method 'beginBgTask' cannot be used to satisfy nonisolated requirement from protocol 'UIKitAppBackgroundTaskCoordinator'; this is an error in the Swift 6 language mode
    func beginBgTask(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier {
         ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:31:10: note: add 'nonisolated' to 'beginBgTask' to make this instance method not isolated to the actor
    func beginBgTask(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:30:26: note: add '@preconcurrency' to the 'UIKitAppBackgroundTaskCoordinator' conformance to defer isolation checking to run time
extension UIApplication: UIKitAppBackgroundTaskCoordinator {
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:26:10: note: mark the protocol requirement 'beginBgTask' 'async' to allow actor-isolated conformances
    func beginBgTask(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier
         ^
                                               async
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:36:10: warning: main actor-isolated instance method 'endBgTask' cannot be used to satisfy nonisolated requirement from protocol 'UIKitAppBackgroundTaskCoordinator'; this is an error in the Swift 6 language mode
    func endBgTask(_ identifier: UIBackgroundTaskIdentifier) {
         ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:36:10: note: add 'nonisolated' to 'endBgTask' to make this instance method not isolated to the actor
    func endBgTask(_ identifier: UIBackgroundTaskIdentifier) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/BackgroundTaskCoordinator.swift:27:10: note: mark the protocol requirement 'endBgTask' 'async' to allow actor-isolated conformances
    func endBgTask(_ identifier: UIBackgroundTaskIdentifier)
         ^
                                                             async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadConditions.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadDelay.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadStatus.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CrashReportSender.swift, CrashReport.swift (in target 'DatadogCrashReporting' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling DataReader.swift, FileReader.swift, Reader.swift, Storage+TLV.swift, AsyncWriter.swift, FileWriter.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriver\ Compilation DatadogCrashReporting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogCrashReporting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CrashReporter.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/plcrashreporter/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ DataUploadWorker.swift,\ DataUploader.swift,\ FeatureUpload.swift,\ HTTPClient.swift,\ URLSessionClient.swift,\ Datadog+Internal.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploader.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/FeatureUpload.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/HTTPClient.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog+Internal.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:78:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.debug("⏳ (\(self.featureName)) Uploading batches...")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:83:20: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                DD.logger.debug("💡 (\(self.featureName)) No upload. Batch to upload: \(batchLabel), System conditions: \(blockersForUpload.description)")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:127:28: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                        DD.logger.debug("   → (\(self.featureName)) not delivered, will be retransmitted: \(uploadStatus.userDebugDescription)")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:133:24: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                    DD.logger.debug("   → (\(self.featureName)) accepted, won't be retransmitted: \(uploadStatus.userDebugDescription)")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploadWorker.swift:154:24: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
                    DD.logger.error("⚠️ Make sure that the provided token still exists and you're targeting the relevant Datadog site.")
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
    public static var logger: CoreLogger = InternalLogger(
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/DataUploader.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/FeatureUpload.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/HTTPClient.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift:40:13: warning: capture of 'completion' with non-sendable type '(Result<HTTPURLResponse, any Error>) -> Void' in a '@Sendable' closure
            completion(httpClientResult(for: (data, response, error)))
            ^
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift:40:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completion(httpClientResult(for: (data, response, error)))
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog+Internal.swift (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AccountInfoPublisher.swift, ApplicationStatePublisher.swift, ApplicationVersionPublisher.swift, BatteryStatusPublisher.swift, CarrierInfoPublisher.swift, ContextValuePublisher.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriver DatadogObjc normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogObjc -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DatadogPrivate.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ DatadogObjc (in target 'DatadogObjc' from project 'Datadog')
EmitSwiftModule normal arm64 (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift:13:12: warning: non-final class 'DDNSURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class DDNSURLSessionDelegate: NSObject, URLSessionTaskDelegate, URLSessionDataDelegate {
           ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: warning: static property 'datadog' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: add '@MainActor' to make static property 'datadog' part of global actor 'MainActor'
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: warning: static property 'b3multi' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: add '@MainActor' to make static property 'b3multi' part of global actor 'MainActor'
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: warning: static property 'b3' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: add '@MainActor' to make static property 'b3' part of global actor 'MainActor'
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: warning: static property 'tracecontext' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: add '@MainActor' to make static property 'tracecontext' part of global actor 'MainActor'
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
          nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Trace+objc.swift,\ Casting.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Trace+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Utils/Casting.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Trace+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Utils/Casting.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling PerformancePreset.swift, BatchMetrics.swift, BenchmarkURLSessionTaskDelegate.swift, Cryptography.swift, Retrying.swift, Versioning.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ HTTPHeadersWriter+objc.swift,\ TraceContextInjection+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/HTTPHeadersWriter+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceContextInjection+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceContextInjection+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling KronosNSTimer+ClosureKit.swift, KronosNTPClient.swift, KronosNTPPacket.swift, KronosNTPProtocol.swift, KronosTimeFreeze.swift, KronosTimeStorage.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ LogsDataModels+objc.swift,\ OTSpan+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/LogsDataModels+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/LogsDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DatadogContextProvider.swift, LaunchTimePublisher.swift, LowPowerModePublisher.swift, NetworkConnectionInfoPublisher.swift, ServerOffsetPublisher.swift, TrackingConsentPublisher.swift, UserInfoPublisher.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DDSpanContext+objc.swift,\ B3HTTPHeadersWriter+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpanContext+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/B3HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpanContext+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/B3HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling TLVBlock.swift, TLVBlockReader.swift, BackgroundTaskCoordinator.swift, DataUploadConditions.swift, DataUploadDelay.swift, DataUploadStatus.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ Datadog+objc.swift,\ DatadogConfiguration+objc.swift,\ Logs+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Datadog+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/Logs+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Datadog+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: warning: static property 'datadog' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: add '@MainActor' to make static property 'datadog' part of global actor 'MainActor'
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:117:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let datadog = DDTracingHeaderType(.datadog)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: warning: static property 'b3multi' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: add '@MainActor' to make static property 'b3multi' part of global actor 'MainActor'
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:118:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3multi = DDTracingHeaderType(.b3multi)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: warning: static property 'b3' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: add '@MainActor' to make static property 'b3' part of global actor 'MainActor'
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:119:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let b3 = DDTracingHeaderType(.b3)
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: warning: static property 'tracecontext' is not concurrency-safe because non-'Sendable' type 'DDTracingHeaderType' may have shared mutable state; this is an error in the Swift 6 language mode
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:110:14: note: class 'DDTracingHeaderType' does not conform to the 'Sendable' protocol
public class DDTracingHeaderType: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: add '@MainActor' to make static property 'tracecontext' part of global actor 'MainActor'
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DatadogConfiguration+objc.swift:120:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static let tracecontext = DDTracingHeaderType(.tracecontext)
                            ^
          nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Logs/Logs+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Datadog.swift, CITestIntegration.swift, KronosClock.swift, KronosDNSResolver.swift, KronosData+Bytes.swift, KronosInternetAddress.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ TraceSamplingStrategy+objc.swift,\ W3CHTTPHeadersWriter+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceSamplingStrategy+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/W3CHTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/TraceSamplingStrategy+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/Propagation/W3CHTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DataStore+TLV.swift, DataStoreFileReader.swift, DataStoreFileWriter.swift, FeatureDataStore.swift, DatadogCore.swift, MessageBus.swift, DataEncryption.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ SwiftUIRUMPredicate+objc.swift,\ DDSpan+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/SwiftUIRUMPredicate+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/SwiftUIRUMPredicate+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/Tracing/DDSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DataUploadWorker.swift, DataUploader.swift, FeatureUpload.swift, HTTPClient.swift, URLSessionClient.swift, Datadog+Internal.swift (in target 'DatadogCore' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ DDInternalLogger+objc.swift,\ DDURLSessionDelegate+objc.swift,\ DDURLSessionInstrumentation+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDInternalLogger+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionInstrumentation+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDInternalLogger+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDInternalLogger+objc.swift:22:25: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        DatadogInternal.consolePrint(message, coreLoggerLevel)
                        ^
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionDelegate+objc.swift:13:12: warning: non-final class 'DDNSURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
open class DDNSURLSessionDelegate: NSObject, URLSessionTaskDelegate, URLSessionDataDelegate {
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/DDURLSessionInstrumentation+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Trace+objc.swift, Casting.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ RUM+objc.swift,\ RUMDataModels+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUM+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUMDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUM+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/RUM/RUMDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling HTTPHeadersWriter+objc.swift, TraceContextInjection+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 Compiling\ OTSpanContext+objc.swift,\ OTTracer+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpanContext+objc.swift /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTTracer+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTSpanContext+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/DatadogObjc/Sources/OpenTracing/OTTracer+objc.swift (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Directories.swift, EventGenerator.swift, FeatureStorage.swift, Directory.swift, File.swift, FilesOrchestrator.swift (in target 'DatadogCore' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling DDSpanContext+objc.swift, B3HTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriver\ Compilation DatadogCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DSPM_BUILD -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DatadogPrivate.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TraceSamplingStrategy+objc.swift, W3CHTTPHeadersWriter+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling LogsDataModels+objc.swift, OTSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling SwiftUIRUMPredicate+objc.swift, DDSpan+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling OTSpanContext+objc.swift, OTTracer+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling DDInternalLogger+objc.swift, DDURLSessionDelegate+objc.swift, DDURLSessionInstrumentation+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Compiling Datadog+objc.swift, DatadogConfiguration+objc.swift, Logs+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriverJobDiscovery normal arm64 Emitting module for DatadogObjc (in target 'DatadogObjc' from project 'Datadog')
SwiftDriver\ Compilation\ Requirements DatadogObjc normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogObjc -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DatadogPrivate.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DatadogObjc-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DatadogObjc-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.abi.json (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftdoc (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftsourceinfo (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling RUMCoreContext.swift, RUMDataModels.swift, RUMPayloadMessages.swift, SessionReplayConfiguration.swift, SessionReplayCoreContext.swift, SpanCoreContext.swift, SpanID.swift, TraceID.swift, WebViewMessage.swift, B3HTTPHeaders.swift, B3HTTPHeadersReader.swift (in target 'DatadogInternal' from project 'Datadog')
SwiftDriver\ Compilation DatadogInternal normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogInternal -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogInternal.o normal (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogInternal.o
ExtractAppIntentsMetadata (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogInternal --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogInternal --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogInternal.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogInternal.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/DatadogInternal.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/DatadogInternal.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogInternal.build/Objects-normal/arm64/DatadogInternal.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.272 appintentsmetadataprocessor[1245:6349] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.307 appintentsmetadataprocessor[1245:6349] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogInternal.o (in target 'DatadogInternal' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogInternal.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogSessionReplay.o normal (in target 'DatadogSessionReplay' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogSessionReplay.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogWebViewTracking.o normal (in target 'DatadogWebViewTracking' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogWebViewTracking.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogLogs.o normal (in target 'DatadogLogs' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogLogs.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogTrace.o normal (in target 'DatadogTrace' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogTrace.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogRUM.o normal (in target 'DatadogRUM' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogRUM.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCrashReporting.o normal (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCrashReporting.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCore.o normal (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCore.o
ExtractAppIntentsMetadata (in target 'DatadogWebViewTracking' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogWebViewTracking --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogWebViewTracking --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogWebViewTracking.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogWebViewTracking.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/DatadogWebViewTracking.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/DatadogWebViewTracking.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogWebViewTracking.build/Objects-normal/arm64/DatadogWebViewTracking.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.385 appintentsmetadataprocessor[1260:6439] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.426 appintentsmetadataprocessor[1260:6439] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogLogs' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogLogs --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogLogs --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogLogs.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogLogs.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/DatadogLogs.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/DatadogLogs.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogLogs.build/Objects-normal/arm64/DatadogLogs.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.390 appintentsmetadataprocessor[1261:6440] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.430 appintentsmetadataprocessor[1261:6440] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogCrashReporting --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogCrashReporting --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCrashReporting.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCrashReporting.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/DatadogCrashReporting.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/DatadogCrashReporting.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCrashReporting.build/Objects-normal/arm64/DatadogCrashReporting.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.395 appintentsmetadataprocessor[1262:6441] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.434 appintentsmetadataprocessor[1262:6441] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogSessionReplay' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogSessionReplay --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogSessionReplay --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogSessionReplay.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogSessionReplay.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/DatadogSessionReplay.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/DatadogSessionReplay.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogSessionReplay.build/Objects-normal/arm64/DatadogSessionReplay.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.400 appintentsmetadataprocessor[1263:6442] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.440 appintentsmetadataprocessor[1263:6442] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogTrace' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogTrace --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogTrace --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogTrace.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogTrace.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/DatadogTrace.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/DatadogTrace.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogTrace.build/Objects-normal/arm64/DatadogTrace.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.400 appintentsmetadataprocessor[1264:6443] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.439 appintentsmetadataprocessor[1264:6443] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCore.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/DatadogCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/DatadogCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogCore.build/Objects-normal/arm64/DatadogCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.415 appintentsmetadataprocessor[1265:6448] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.453 appintentsmetadataprocessor[1265:6448] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'DatadogRUM' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogRUM --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogRUM --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogRUM.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogRUM.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/DatadogRUM.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/DatadogRUM.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogRUM.build/Objects-normal/arm64/DatadogRUM.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:51.434 appintentsmetadataprocessor[1266:6455] Starting appintentsmetadataprocessor export
2025-06-16 07:38:51.471 appintentsmetadataprocessor[1266:6455] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogWebViewTracking.o (in target 'DatadogWebViewTracking' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogWebViewTracking.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogLogs.o (in target 'DatadogLogs' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogLogs.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCrashReporting.o (in target 'DatadogCrashReporting' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCrashReporting.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogTrace.o (in target 'DatadogTrace' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogTrace.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogSessionReplay.o (in target 'DatadogSessionReplay' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogSessionReplay.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCore.o (in target 'DatadogCore' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogCore.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogRUM.o (in target 'DatadogRUM' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogRUM.o
SwiftDriverJobDiscovery normal arm64 Compiling RUM+objc.swift, RUMDataModels+objc.swift (in target 'DatadogObjc' from project 'Datadog')
SwiftDriver\ Compilation DatadogObjc normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DatadogObjc -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/DatadogPrivate.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.o normal (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.o
ExtractAppIntentsMetadata (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name DatadogObjc --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.DatadogObjc --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DatadogObjc.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/DatadogObjc.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Datadog.build/Debug-appletvos/DatadogObjc.build/Objects-normal/arm64/DatadogObjc.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-16 07:38:53.247 appintentsmetadataprocessor[1269:6477] Starting appintentsmetadataprocessor export
2025-06-16 07:38:53.278 appintentsmetadataprocessor[1269:6477] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.o (in target 'DatadogObjc' from project 'Datadog')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/DatadogObjc.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "plcrashreporter",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.12.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/microsoft/plcrashreporter.git"
    },
    {
      "identity" : "opentelemetry-swift-packages",
      "requirement" : {
        "exact" : [
          "1.13.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/DataDog/opentelemetry-swift-packages.git"
    }
  ],
  "manifest_display_name" : "Datadog",
  "name" : "Datadog",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "DatadogCore",
      "targets" : [
        "DatadogCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogObjc",
      "targets" : [
        "DatadogObjc"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogLogs",
      "targets" : [
        "DatadogLogs"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogTrace",
      "targets" : [
        "DatadogTrace"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogRUM",
      "targets" : [
        "DatadogRUM"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogSessionReplay",
      "targets" : [
        "DatadogSessionReplay"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogCrashReporting",
      "targets" : [
        "DatadogCrashReporting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "DatadogWebViewTracking",
      "targets" : [
        "DatadogWebViewTracking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestUtilities",
      "module_type" : "SwiftTarget",
      "name" : "TestUtilities",
      "path" : "TestUtilities/Sources",
      "sources" : [
        "Helpers/DDAssert.swift",
        "Helpers/Decompression.swift",
        "Helpers/Encoding.swift",
        "Helpers/FuzzyHelpers.swift",
        "Helpers/MockNotificationCenter.swift",
        "Helpers/ModuleName.swift",
        "Helpers/SwiftExtensions.swift",
        "Helpers/TestsDirectory.swift",
        "Helpers/UIKitHelpers.swift",
        "Helpers/XCTestCase.swift",
        "Matchers/JSONDataMatcher.swift",
        "Matchers/JSONObjectMatcher.swift",
        "Matchers/LogMatcher.swift",
        "Matchers/RUMEventMatcher.swift",
        "Matchers/RUMSessionMatcher.swift",
        "Matchers/SRRequestMatcher.swift",
        "Matchers/SRSegmentMatcher.swift",
        "Matchers/SpanMatcher.swift",
        "Mocks/CrashReporting/BacktraceReportMocks.swift",
        "Mocks/CrashReporting/BacktraceReportingMocks.swift",
        "Mocks/CrashReporting/BinaryImageMocks.swift",
        "Mocks/CrashReporting/CrashReportingFeatureMocks.swift",
        "Mocks/CrashReporting/DDCrashReportMocks.swift",
        "Mocks/CrashReporting/DDThreadMocks.swift",
        "Mocks/DatadogCore/ContextValuePublisherMock.swift",
        "Mocks/DatadogCore/CoreMocks.swift",
        "Mocks/DatadogCore/DatadogContextProviderMock.swift",
        "Mocks/DatadogCore/DirectoriesMock.swift",
        "Mocks/DatadogCore/HTTPClientMock.swift",
        "Mocks/DatadogCore/KronosClockMock.swift",
        "Mocks/DatadogInternal/AppStateProvider.swift",
        "Mocks/DatadogInternal/AttributesMocks.swift",
        "Mocks/DatadogInternal/DDErrorMocks.swift",
        "Mocks/DatadogInternal/DataStoreMock.swift",
        "Mocks/DatadogInternal/DatadogContextMock.swift",
        "Mocks/DatadogInternal/DatadogRemoteFeatureMock.swift",
        "Mocks/DatadogInternal/DateProvider.swift",
        "Mocks/DatadogInternal/EventMocks.swift",
        "Mocks/DatadogInternal/FeatureMessageMocks.swift",
        "Mocks/DatadogInternal/FeatureMessageReceiverMock.swift",
        "Mocks/DatadogInternal/FeatureRegistrationCoreMock.swift",
        "Mocks/DatadogInternal/FeatureScopeMock.swift",
        "Mocks/DatadogInternal/FileWriterMock.swift",
        "Mocks/DatadogInternal/HostsSanitizerMock.swift",
        "Mocks/DatadogInternal/MockFeature.swift",
        "Mocks/DatadogInternal/PassthroughCoreMock.swift",
        "Mocks/DatadogInternal/RUMDataModelMocks.swift",
        "Mocks/DatadogInternal/SamplerMock.swift",
        "Mocks/DatadogInternal/SingleFeatureCoreMock.swift",
        "Mocks/DatadogInternal/TelemetryMocks.swift",
        "Mocks/DatadogInternal/TelemetryReceiverMock.swift",
        "Mocks/DatadogInternal/UploadMock.swift",
        "Mocks/DatadogInternal/UploadMocks.swift",
        "Mocks/DatadogLogs/LoggingFeatureMocks.swift",
        "Mocks/DatadogRUM/AccessibilityValuesMock.swift",
        "Mocks/DatadogRUM/RUMFeatureMocks.swift",
        "Mocks/DatadogRUM/VitalMocks.swift",
        "Mocks/DatadogSessionReplay/CoreGraphicsMocks.swift",
        "Mocks/DatadogSessionReplay/FeatureFlagsMock.swift",
        "Mocks/DatadogSessionReplay/MultipartBuilderSpy.swift",
        "Mocks/DatadogSessionReplay/PrivacyOverridesMock+objc.swift",
        "Mocks/DatadogSessionReplay/QueueMocks.swift",
        "Mocks/DatadogSessionReplay/RUMContextObserverMock.swift",
        "Mocks/DatadogSessionReplay/RecorderMocks.swift",
        "Mocks/DatadogSessionReplay/ReflectionMocks.swift",
        "Mocks/DatadogSessionReplay/ResourceMocks.swift",
        "Mocks/DatadogSessionReplay/ResourceProcessorSpy.swift",
        "Mocks/DatadogSessionReplay/SRDataModelsMocks.swift",
        "Mocks/DatadogSessionReplay/SessionReplayConfigurationMocks.swift",
        "Mocks/DatadogSessionReplay/SnapshotProcessorSpy.swift",
        "Mocks/DatadogSessionReplay/SnapshotProducerMocks.swift",
        "Mocks/DatadogSessionReplay/TestScheduler.swift",
        "Mocks/DatadogTrace/NetworkInstrumentationMocks.swift",
        "Mocks/DatadogTrace/TracingFeatureMocks.swift",
        "Mocks/DatadogWebViewTracking/WebViewTrackingMocks.swift",
        "Mocks/Mockable.swift",
        "Mocks/SystemFrameworks/CoreTelephonyMocks.swift",
        "Mocks/SystemFrameworks/FoundationMocks.swift",
        "Mocks/SystemFrameworks/UIKitMocks.swift",
        "Mocks/SystemFrameworks/WebKitMocks.swift",
        "Proxies/DatadogCoreProxy+Utils.swift",
        "Proxies/DatadogCoreProxy.swift",
        "Proxies/ServerMock.swift",
        "Spies/PrintFunctionSpy.swift"
      ],
      "target_dependencies" : [
        "DatadogCore",
        "DatadogPrivate",
        "DatadogInternal",
        "DatadogLogs",
        "DatadogRUM",
        "DatadogSessionReplay",
        "DatadogTrace",
        "DatadogCrashReporting",
        "DatadogWebViewTracking"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogWebViewTrackingTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogWebViewTrackingTests",
      "path" : "DatadogWebViewTracking/Tests",
      "sources" : [
        "MessageEmitterTests.swift",
        "WebViewTrackingTests.swift"
      ],
      "target_dependencies" : [
        "DatadogWebViewTracking",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogWebViewTracking",
      "module_type" : "SwiftTarget",
      "name" : "DatadogWebViewTracking",
      "path" : "DatadogWebViewTracking/Sources",
      "product_memberships" : [
        "DatadogWebViewTracking"
      ],
      "sources" : [
        "DDScriptMessageHandler.swift",
        "MessageEmitter.swift",
        "ObjC/WebViewTracking+objc.swift",
        "WebViewTracking.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogTraceTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogTraceTests",
      "path" : "DatadogTrace/Tests",
      "sources" : [
        "ContextMessageReceiverTests.swift",
        "DDNoopTracerTests.swift",
        "DDSpanContextTests.swift",
        "DDSpanTests.swift",
        "DatadogTracer+InjectAndExtract.swift",
        "DatadogTracer+SamplingTests.swift",
        "OpenTelemetry/OTelAttributeValue+DatadogTests.swift",
        "OpenTelemetry/OTelSpanId+DatadogTests.swift",
        "OpenTelemetry/OTelSpanLinkTests.swift",
        "OpenTelemetry/OTelSpanTests.swift",
        "OpenTelemetry/OTelTraceId+DatadogTests.swift",
        "OpenTelemetry/OTelTraceState+DatadogTests.swift",
        "Span/SpanEventBuilderTests.swift",
        "Span/SpanSanitizerTests.swift",
        "Span/SpanWriteContextTests.swift",
        "TraceConfigurationTests.swift",
        "TraceTests.swift",
        "TracingURLSessionHandlerTests.swift",
        "Utils/ActiveSpansPoolTests.swift",
        "Utils/Casting+Tracing.swift",
        "Utils/WarningsTests.swift"
      ],
      "target_dependencies" : [
        "DatadogTrace",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogTrace",
      "module_type" : "SwiftTarget",
      "name" : "DatadogTrace",
      "path" : "DatadogTrace/Sources",
      "product_dependencies" : [
        "OpenTelemetryApi"
      ],
      "product_memberships" : [
        "DatadogObjc",
        "DatadogTrace"
      ],
      "sources" : [
        "DDFormat.swift",
        "DDNoOps.swift",
        "DDSpan.swift",
        "DDSpanContext.swift",
        "DatadogTracer.swift",
        "Feature/MessageReceivers.swift",
        "Feature/RequestBuilder.swift",
        "Feature/TraceFeature.swift",
        "Integrations/TracingURLSessionHandler.swift",
        "Integrations/TracingWithLoggingIntegration.swift",
        "OpenTelemetry/NOPOTelSpan.swift",
        "OpenTelemetry/NOPOTelSpanBuilder.swift",
        "OpenTelemetry/OTelAttributeValue+Datadog.swift",
        "OpenTelemetry/OTelSpan.swift",
        "OpenTelemetry/OTelSpanBuilder.swift",
        "OpenTelemetry/OTelSpanId+Datadog.swift",
        "OpenTelemetry/OTelSpanLink.swift",
        "OpenTelemetry/OTelTraceId+Datadog.swift",
        "OpenTelemetry/OTelTraceState+Datadog.swift",
        "OpenTelemetry/OTelTracerProvider.swift",
        "OpenTracing/OTConstants.swift",
        "OpenTracing/OTFormat.swift",
        "OpenTracing/OTReference.swift",
        "OpenTracing/OTSpan.swift",
        "OpenTracing/OTSpanContext.swift",
        "OpenTracing/OTTracer.swift",
        "Scrubbing/SpanEventMapper.swift",
        "Span/SpanEventBuilder.swift",
        "Span/SpanEventEncoder.swift",
        "Span/SpanSanitizer.swift",
        "Span/SpanTagsReducer.swift",
        "Span/SpanWriteContext.swift",
        "Trace.swift",
        "TraceConfiguration.swift",
        "Tracer.swift",
        "Utils/ActiveSpansPool.swift",
        "Utils/Casting.swift",
        "Utils/Warnings.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogSessionReplayTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogSessionReplayTests",
      "path" : "DatadogSessionReplay/Tests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogSessionReplay/Tests/Resources/Assets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "DDSessionReplayOverridesTests.swift",
        "DDSessionReplayTests.swift",
        "Feature/RUMContextReceiverTests.swift",
        "Feature/RequestBuilder/JSON/SegmentJSONTests.swift",
        "Feature/RequestBuilder/Multipart/MultipartFormDataTests.swift",
        "Feature/RequestBuilder/ResourceRequestBuilderTests.swift",
        "Feature/RequestBuilder/SegmentRequestBuilderTests.swift",
        "Feature/SRContextPublisherTests.swift",
        "Feature/SessionReplayTelemetryTests.swift",
        "Feature/WebViewRecordReceiverTests.swift",
        "Helpers/XCTAssertRectsEqual.swift",
        "Processor/Builders/RecordsBuilderTests.swift",
        "Processor/Builders/WireframesBuilderTests.swift",
        "Processor/Diffing/Diff+SRWireframesTests.swift",
        "Processor/Diffing/DiffTests.swift",
        "Processor/Flattening/NodesFlattenerTests.swift",
        "Processor/Privacy/TextObfuscatorTests.swift",
        "Processor/ResourceProcessorTests.swift",
        "Processor/SnapshotProcessorTests.swift",
        "Recorder/RecorderTests.swift",
        "Recorder/RecordingCoordinatorTests.swift",
        "Recorder/TextAndInputPrivacyLevelTests.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshot/TouchIdentifierGeneratorTests.swift",
        "Recorder/TouchSnapshotProducer/WindowTouchSnapshotProducerTests.swift",
        "Recorder/Utilties/CGRect+SessionReplayTests.swift",
        "Recorder/Utilties/UIView+SessionReplayTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeIDGeneratorTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/ColorReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/DisplayListReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicImagePrivacyTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/GraphicsImageReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/SwiftUIWireframesBuilderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/TextReflectionTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIActivityIndicatorRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIDatePickerRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIHostingViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageResourceTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageViewWireframesBuilderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UILabelRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UINavigationBarRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIPickerViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIProgressViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISegmentRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISliderRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIStepperRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISwitchRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITabBarRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextFieldRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UnsupportedViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/WKWebViewRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecorderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecordingContextTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshotBuilderTests.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshotTests.swift",
        "SessionReplayConfigurationTests.swift",
        "SessionReplayOverrideTests.swift",
        "SessionReplayTests.swift",
        "Utilities/CFType+SafetyTests.swift",
        "Utilities/CGRectExtensionsTests.swift",
        "Utilities/ColorsTests.swift",
        "Utilities/QueueTests.swift",
        "Utilities/Schedulers/MainThreadSchedulerTests.swift",
        "Utilities/SwiftExtensionsTests.swift",
        "Utilities/UIImage+SessionReplayTests.swift",
        "Utilities/XoshiroTests.swift",
        "Writer/RecordsWriterTests.swift",
        "Writer/ResourcesWriterTests.swift",
        "Writer/SRCompressionTests.swift"
      ],
      "target_dependencies" : [
        "DatadogSessionReplay",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogSessionReplay",
      "module_type" : "SwiftTarget",
      "name" : "DatadogSessionReplay",
      "path" : "DatadogSessionReplay/Sources",
      "product_memberships" : [
        "DatadogSessionReplay"
      ],
      "sources" : [
        "Feature/RUMContextReceiver.swift",
        "Feature/RequestBuilders/JSON/SegmentJSON.swift",
        "Feature/RequestBuilders/Multipart/MultipartFormData.swift",
        "Feature/RequestBuilders/ResourceRequestBuilder.swift",
        "Feature/RequestBuilders/SegmentRequestBuilder.swift",
        "Feature/ResourcesFeature.swift",
        "Feature/SRContextPublisher.swift",
        "Feature/SessionReplayFeature.swift",
        "Feature/SessionReplayTelemetry.swift",
        "Feature/WebViewRecordReceiver.swift",
        "Models/EnrichedRecord.swift",
        "Models/EnrichedResource.swift",
        "Models/SRDataModels+UIKit.swift",
        "Models/SRDataModels.swift",
        "Processor/Builders/RecordsBuilder.swift",
        "Processor/Builders/WireframesBuilder.swift",
        "Processor/Diffing/Diff+SRWireframes.swift",
        "Processor/Diffing/Diff.swift",
        "Processor/Flattening/NodesFlattener.swift",
        "Processor/Privacy/TextObfuscator.swift",
        "Processor/ResourcesProcessor.swift",
        "Processor/SnapshotProcessor.swift",
        "Recorder/PrivacyLevel.swift",
        "Recorder/Recorder.swift",
        "Recorder/RecordingCoordinator.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshot/TouchIdentifierGenerator.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshot/TouchSnapshot.swift",
        "Recorder/TouchSnapshotProducer/TouchSnapshotProducer.swift",
        "Recorder/TouchSnapshotProducer/UIApplicationSwizzler.swift",
        "Recorder/TouchSnapshotProducer/WindowTouchSnapshotProducer.swift",
        "Recorder/Utilities/CFType+Safety.swift",
        "Recorder/Utilities/CGImage+SessionReplay.swift",
        "Recorder/Utilities/CGRect+SessionReplay.swift",
        "Recorder/Utilities/CGSize+SessionReplay.swift",
        "Recorder/Utilities/Int64+SessionReplay.swift",
        "Recorder/Utilities/SystemColors.swift",
        "Recorder/Utilities/UIColor+SessionReplay.swift",
        "Recorder/Utilities/UIImage+SessionReplay.swift",
        "Recorder/Utilities/UIView+SessionReplay.swift",
        "Recorder/Utilities/Xoshiro.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeIDGenerator.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/NodeRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Color+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Color.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/DisplayList+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/DisplayList.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Image+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Image.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/SwiftUIWireframesBuilder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Text+Reflection.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/SwiftUI/Text.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIActivityIndicatorRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIDatePickerRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIHostingViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageResource.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIImageViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UILabelRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UINavigationBarRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIPickerViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIProgressViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISegmentRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISliderRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIStepperRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UISwitchRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITabBarRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextFieldRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UITextViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UIViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/UnsupportedViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/NodeRecorders/WKWebViewRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecorder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeRecordingContext.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshot.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshot/ViewTreeSnapshotBuilder.swift",
        "Recorder/ViewTreeSnapshotProducer/ViewTreeSnapshotProducer.swift",
        "Recorder/ViewTreeSnapshotProducer/WindowViewTreeSnapshotProducer.swift",
        "Recorder/WindowObserver/AppWindowObserver.swift",
        "Recorder/WindowObserver/KeyWindowObserver.swift",
        "SessionReplay+objc.swift",
        "SessionReplay.swift",
        "SessionReplayConfiguration.swift",
        "SessionReplayPrivacyOverrides+objc.swift",
        "SessionReplayPrivacyOverrides.swift",
        "UIView+SessionReplayPrivacyOverrides+objc.swift",
        "Utilities/CGRectExtensions.swift",
        "Utilities/Colors.swift",
        "Utilities/Errors.swift",
        "Utilities/Queue.swift",
        "Utilities/Schedulers/MainThreadScheduler.swift",
        "Utilities/Schedulers/Scheduler.swift",
        "Writers/RecordWriter.swift",
        "Writers/ResourcesWriter.swift",
        "Writers/SRCompression.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogRUMTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogRUMTests",
      "path" : "DatadogRUM/Tests",
      "sources" : [
        "DDTAssertValidRUMUUID.swift",
        "DataModels/RUMDataModelsMappingTests.swift",
        "Feature/RequestBuilderTests.swift",
        "Instrumentation/Actions/RUMActionsHandlerTests.swift",
        "Instrumentation/Actions/SwiftUIComponentDetectorTests.swift",
        "Instrumentation/AppHangs/AppHangsMonitorTests.swift",
        "Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift",
        "Instrumentation/MemoryWarnings/MemoryWarningMocks.swift",
        "Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift",
        "Instrumentation/RUMInstrumentationTests.swift",
        "Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift",
        "Instrumentation/Views/RUMViewsHandlerTests.swift",
        "Instrumentation/Views/SwiftUIViewNameExtractorTests.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift",
        "Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift",
        "Integrations/AnonymousIdentifierManagerTests.swift",
        "Integrations/ErrorMessageReceiverTests.swift",
        "Integrations/SessionReplayDependencyTests.swift",
        "Integrations/SwiftUIViewNameExtractorIntegrationTests.swift",
        "Integrations/TelemetryInterceptorTests.swift",
        "Integrations/TelemetryReceiverTests.swift",
        "Integrations/WebViewEventReceiverTests.swift",
        "RUMConfigurationTests.swift",
        "RUMContext/AccessibilityReaderTests.swift",
        "RUMEvent/RUMDeviceInfoTests.swift",
        "RUMEvent/RUMEventBuilderTests.swift",
        "RUMEvent/RUMEventSanitizerTests.swift",
        "RUMMetrics/INVMetricTests.swift",
        "RUMMetrics/TNSMetricTests.swift",
        "RUMMonitor/Monitor+GlobalAttributesTests.swift",
        "RUMMonitor/MonitorTests.swift",
        "RUMMonitor/RUMCommandTests.swift",
        "RUMMonitor/RUMScopeTests.swift",
        "RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift",
        "RUMMonitor/Scopes/RUMApplicationScopeTests.swift",
        "RUMMonitor/Scopes/RUMResourceScopeTests.swift",
        "RUMMonitor/Scopes/RUMSessionScopeTests.swift",
        "RUMMonitor/Scopes/RUMUserActionScopeTests.swift",
        "RUMMonitor/Scopes/RUMViewScopeTests.swift",
        "RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift",
        "RUMMonitor/Scopes/Utils/ViewCacheTests.swift",
        "RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift",
        "RUMMonitorProtocol+ConvenienceTests.swift",
        "RUMMonitorProtocol+InternalTests.swift",
        "RUMMonitorProtocolTests.swift",
        "RUMTests.swift",
        "RUMViewEventsFilterTests.swift",
        "SDKMetrics/SessionEndedMetricControllerTests.swift",
        "SDKMetrics/SessionEndedMetricTests.swift",
        "Scrubbing/RUMEventsMapperTests.swift",
        "Utils/ValuePublisherTests.swift"
      ],
      "target_dependencies" : [
        "DatadogRUM",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogRUM",
      "module_type" : "SwiftTarget",
      "name" : "DatadogRUM",
      "path" : "DatadogRUM",
      "product_memberships" : [
        "DatadogObjc",
        "DatadogRUM"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogRUM/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/DataModels/Accessibility.swift",
        "Sources/DataModels/RUMDataModelsMapping.swift",
        "Sources/Debugging/RUMDebugging.swift",
        "Sources/FatalErrorBuilder.swift",
        "Sources/Feature/RUMDataStore.swift",
        "Sources/Feature/RUMFeature.swift",
        "Sources/Feature/RUMViewEventsFilter.swift",
        "Sources/Feature/RequestBuilder.swift",
        "Sources/Instrumentation/Actions/RUMAction.swift",
        "Sources/Instrumentation/Actions/RUMActionsHandler.swift",
        "Sources/Instrumentation/Actions/SwiftUI/LegacySwiftUIComponentDetector.swift",
        "Sources/Instrumentation/Actions/SwiftUI/ModernSwiftUIComponentDetector.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIActionModifier.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIComponentDetector.swift",
        "Sources/Instrumentation/Actions/SwiftUI/SwiftUIRUMActionsPredicate.swift",
        "Sources/Instrumentation/Actions/UIKit/UIApplicationSwizzler.swift",
        "Sources/Instrumentation/Actions/UIKit/UIEventCommandFactory.swift",
        "Sources/Instrumentation/Actions/UIKit/UIKitRUMUserActionsPredicate.swift",
        "Sources/Instrumentation/AppHangs/AppHang.swift",
        "Sources/Instrumentation/AppHangs/AppHangsMonitor.swift",
        "Sources/Instrumentation/AppHangs/AppHangsWatchdogThread.swift",
        "Sources/Instrumentation/AppHangs/FatalAppHangsHandler.swift",
        "Sources/Instrumentation/AppHangs/NonFatalAppHangsHandler.swift",
        "Sources/Instrumentation/AppHangs/ProcessIdentifier.swift",
        "Sources/Instrumentation/LongTasks/LongTaskObserver.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarning.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarningMonitor.swift",
        "Sources/Instrumentation/MemoryWarnings/MemoryWarningReporter.swift",
        "Sources/Instrumentation/RUMCommandSubscriber.swift",
        "Sources/Instrumentation/RUMInstrumentation.swift",
        "Sources/Instrumentation/Resources/URLSessionRUMResourcesHandler.swift",
        "Sources/Instrumentation/Views/RUMView.swift",
        "Sources/Instrumentation/Views/RUMViewsHandler.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIControllerType.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIRUMViewsPredicate.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewHandler.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewModifier.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewNameExtractor.swift",
        "Sources/Instrumentation/Views/SwiftUI/SwiftUIViewPath.swift",
        "Sources/Instrumentation/Views/SwiftUI/TopLevelReflector.swift",
        "Sources/Instrumentation/Views/UIKit/UIKitRUMViewsPredicate.swift",
        "Sources/Instrumentation/Views/UIKit/UIViewControllerHandler.swift",
        "Sources/Instrumentation/Views/UIKit/UIViewControllerSwizzler.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationAppState.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManager.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationChecker.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitor.swift",
        "Sources/Instrumentation/WatchdogTerminations/WatchdogTerminationReporter.swift",
        "Sources/Integrations/AnonymousIdentifierManager.swift",
        "Sources/Integrations/CrashReportReceiver.swift",
        "Sources/Integrations/ErrorMessageReceiver.swift",
        "Sources/Integrations/FatalErrorContextNotifier.swift",
        "Sources/Integrations/RUMContextAttributes.swift",
        "Sources/Integrations/SessionReplayDependency.swift",
        "Sources/Integrations/TelemetryInterceptor.swift",
        "Sources/Integrations/TelemetryReceiver.swift",
        "Sources/Integrations/WebViewEventReceiver.swift",
        "Sources/RUM+Internal.swift",
        "Sources/RUM.swift",
        "Sources/RUMConfiguration.swift",
        "Sources/RUMContext/AccessibilityReader.swift",
        "Sources/RUMContext/RUMContext.swift",
        "Sources/RUMContext/RUMContextProvider.swift",
        "Sources/RUMEvent/RUMAccount.swift",
        "Sources/RUMEvent/RUMConnectivityInfoProvider.swift",
        "Sources/RUMEvent/RUMDeviceInfo.swift",
        "Sources/RUMEvent/RUMEventBuilder.swift",
        "Sources/RUMEvent/RUMEventSanitizer.swift",
        "Sources/RUMEvent/RUMOperatingSystemInfo.swift",
        "Sources/RUMEvent/RUMUser.swift",
        "Sources/RUMMetrics/INVMetric.swift",
        "Sources/RUMMetrics/NetworkSettledResourcePredicate.swift",
        "Sources/RUMMetrics/NextViewActionPredicate.swift",
        "Sources/RUMMetrics/TNSMetric.swift",
        "Sources/RUMMonitor.swift",
        "Sources/RUMMonitor/Monitor.swift",
        "Sources/RUMMonitor/RUMCommand.swift",
        "Sources/RUMMonitor/RUMScope.swift",
        "Sources/RUMMonitor/Scopes/RUMApplicationScope.swift",
        "Sources/RUMMonitor/Scopes/RUMResourceScope.swift",
        "Sources/RUMMonitor/Scopes/RUMScopeDependencies.swift",
        "Sources/RUMMonitor/Scopes/RUMSessionScope.swift",
        "Sources/RUMMonitor/Scopes/RUMUserActionScope.swift",
        "Sources/RUMMonitor/Scopes/RUMViewScope.swift",
        "Sources/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRule.swift",
        "Sources/RUMMonitor/Scopes/Utils/ViewCache.swift",
        "Sources/RUMMonitor/Scopes/Utils/ViewIdentifier.swift",
        "Sources/RUMMonitorProtocol+Convenience.swift",
        "Sources/RUMMonitorProtocol+Internal.swift",
        "Sources/RUMMonitorProtocol.swift",
        "Sources/RUMVitals/PerformanceMetric.swift",
        "Sources/RUMVitals/RenderLoop/FrameInfoProvider.swift",
        "Sources/RUMVitals/RenderLoop/RenderLoopObserver.swift",
        "Sources/RUMVitals/RenderLoop/ViewHitchesReader.swift",
        "Sources/RUMVitals/RenderLoop/VitalRefreshRateReader.swift",
        "Sources/RUMVitals/VitalCPUReader.swift",
        "Sources/RUMVitals/VitalInfo.swift",
        "Sources/RUMVitals/VitalInfoSampler.swift",
        "Sources/RUMVitals/VitalMemoryReader.swift",
        "Sources/SDKMetrics/SessionEndedMetric.swift",
        "Sources/SDKMetrics/SessionEndedMetricController.swift",
        "Sources/SDKMetrics/ViewEndedController.swift",
        "Sources/SDKMetrics/ViewEndedMetric.swift",
        "Sources/SDKMetrics/ViewHitchesMetric.swift",
        "Sources/Scrubbing/RUMEventsMapper.swift",
        "Sources/UUIDs/RUMUUID.swift",
        "Sources/UUIDs/RUMUUIDGenerator.swift",
        "Sources/Utils/SwiftUIExtensions.swift",
        "Sources/Utils/UIKitExtensions.swift",
        "Sources/Utils/ValuePublisher.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogPrivate",
      "module_type" : "ClangTarget",
      "name" : "DatadogPrivate",
      "path" : "DatadogCore/Private",
      "product_memberships" : [
        "DatadogCore",
        "DatadogObjc"
      ],
      "sources" : [
        "ObjcAppLaunchHandler.m",
        "ObjcExceptionHandler.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogObjc",
      "module_type" : "SwiftTarget",
      "name" : "DatadogObjc",
      "path" : "DatadogObjc/Sources",
      "product_memberships" : [
        "DatadogObjc"
      ],
      "sources" : [
        "DDInternalLogger+objc.swift",
        "DDURLSessionDelegate+objc.swift",
        "DDURLSessionInstrumentation+objc.swift",
        "Datadog+objc.swift",
        "DatadogConfiguration+objc.swift",
        "Logs/Logs+objc.swift",
        "Logs/LogsDataModels+objc.swift",
        "OpenTracing/OTSpan+objc.swift",
        "OpenTracing/OTSpanContext+objc.swift",
        "OpenTracing/OTTracer+objc.swift",
        "RUM/RUM+objc.swift",
        "RUM/RUMDataModels+objc.swift",
        "RUM/SwiftUIRUMPredicate+objc.swift",
        "Tracing/DDSpan+objc.swift",
        "Tracing/DDSpanContext+objc.swift",
        "Tracing/Propagation/B3HTTPHeadersWriter+objc.swift",
        "Tracing/Propagation/HTTPHeadersWriter+objc.swift",
        "Tracing/Propagation/TraceContextInjection+objc.swift",
        "Tracing/Propagation/TraceSamplingStrategy+objc.swift",
        "Tracing/Propagation/W3CHTTPHeadersWriter+objc.swift",
        "Tracing/Trace+objc.swift",
        "Tracing/Utils/Casting.swift"
      ],
      "target_dependencies" : [
        "DatadogCore",
        "DatadogLogs",
        "DatadogTrace",
        "DatadogRUM"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogLogsTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogLogsTests",
      "path" : "DatadogLogs/Tests",
      "sources" : [
        "ConsoleLoggerTests.swift",
        "Log/LogEventBuilderTests.swift",
        "Log/LogSanitizerTests.swift",
        "Log/SynchronizedAttributesTests.swift",
        "Log/SynchronizedTagsTests.swift",
        "LogMessageReceiverTests.swift",
        "LoggerTests.swift",
        "LogsTests.swift",
        "RemoteLoggerTests.swift",
        "WebViewLogReceiverTests.swift"
      ],
      "target_dependencies" : [
        "DatadogLogs",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogLogs",
      "module_type" : "SwiftTarget",
      "name" : "DatadogLogs",
      "path" : "DatadogLogs/Sources",
      "product_memberships" : [
        "DatadogObjc",
        "DatadogLogs"
      ],
      "sources" : [
        "ConsoleLogger.swift",
        "Feature/LogsFeature.swift",
        "Feature/MessageReceivers.swift",
        "Feature/RequestBuilder.swift",
        "Log/LogEventBuilder.swift",
        "Log/LogEventEncoder.swift",
        "Log/LogEventSanitizer.swift",
        "Log/SynchronizedAttributes.swift",
        "Log/SynchronizedTags.swift",
        "Logger.swift",
        "LoggerProtocol+Internal.swift",
        "LoggerProtocol.swift",
        "Logs+Internal.swift",
        "Logs.swift",
        "RemoteLogger.swift",
        "Scrubbing/LogEventMapper.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogInternalTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogInternalTests",
      "path" : "DatadogInternal/Tests",
      "sources" : [
        "Codable/AnyCodableTests.swift",
        "Codable/AnyEncodableTests.swift",
        "Concurrency/ReadWriteLockTests.swift",
        "Context/AppStateHistoryTests.swift",
        "Context/BundleTypeTests.swift",
        "Context/DeviceInfoTests.swift",
        "CoreRegistryTest.swift",
        "DatadogCoreProtocolTests.swift",
        "Extensions/Data+CryptoTests.swift",
        "Extensions/FixedWidthInteger+ConvenienceTests.swift",
        "Extensions/TimeInterval+ConvenienceTests.swift",
        "MessageBus/FeatureMessageReceiverTests.swift",
        "Models/WebViewMessageTests.swift",
        "NetworkInstrumentation/B3HTTPHeadersReaderTests.swift",
        "NetworkInstrumentation/B3HTTPHeadersWriterTests.swift",
        "NetworkInstrumentation/FirstPartyHostsTests.swift",
        "NetworkInstrumentation/HTTPHeadersReaderTests.swift",
        "NetworkInstrumentation/HTTPHeadersWriterTests.swift",
        "NetworkInstrumentation/HostsSanitizerTests.swift",
        "NetworkInstrumentation/ImmutableRequestTests.swift",
        "NetworkInstrumentation/NetworkInstrumentationFeatureTests.swift",
        "NetworkInstrumentation/SpanIDGeneratorTests.swift",
        "NetworkInstrumentation/SpanIDTests.swift",
        "NetworkInstrumentation/TraceIDGeneratorTests.swift",
        "NetworkInstrumentation/TraceIDTests.swift",
        "NetworkInstrumentation/URLSessionDataDelegateSwizzlerTests.swift",
        "NetworkInstrumentation/URLSessionDelegateAsSuperclassTests.swift",
        "NetworkInstrumentation/URLSessionInterceptorTests.swift",
        "NetworkInstrumentation/URLSessionSwizzlerTests.swift",
        "NetworkInstrumentation/URLSessionTaskDelegateSwizzlerTests.swift",
        "NetworkInstrumentation/URLSessionTaskInterceptionTests.swift",
        "NetworkInstrumentation/URLSessionTaskSwizzlerTests.swift",
        "NetworkInstrumentation/W3CHTTPHeadersReaderTests.swift",
        "NetworkInstrumentation/W3CHTTPHeadersWriterTests.swift",
        "Swizzling/MethodSwizzlerTests.swift",
        "Telemetry/TelemetryTests.swift",
        "Upload/DataCompressionTests.swift",
        "Upload/DataFormatTests.swift",
        "Utils/DeterministicSamplerTests.swift",
        "Utils/ObjcExceptionTests.swift",
        "Utils/ReflectionMirrorTests.swift",
        "Utils/ReflectorTests.swift",
        "Utils/SampleRateTests.swift",
        "Utils/SamplerTests.swift",
        "Utils/SwiftExtensionsTests.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogInternal",
      "module_type" : "SwiftTarget",
      "name" : "DatadogInternal",
      "path" : "DatadogInternal/Sources",
      "product_memberships" : [
        "DatadogCore",
        "DatadogObjc",
        "DatadogLogs",
        "DatadogTrace",
        "DatadogRUM",
        "DatadogSessionReplay",
        "DatadogCrashReporting",
        "DatadogWebViewTracking"
      ],
      "sources" : [
        "Attributes/Attributes.swift",
        "Attributes/AttributesSanitizer.swift",
        "BacktraceReporting/BacktraceReporter.swift",
        "BacktraceReporting/BacktraceReportingFeature.swift",
        "Benchmarks/BenchmarkProfiler.swift",
        "Codable/AnyCodable.swift",
        "Codable/AnyDecodable.swift",
        "Codable/AnyEncodable.swift",
        "Codable/DynamicCodingKey.swift",
        "Concurrency/Flushable.swift",
        "Concurrency/ReadWriteLock.swift",
        "Context/AccountInfo.swift",
        "Context/AppState.swift",
        "Context/ApplicationNotifications.swift",
        "Context/BatteryStatus.swift",
        "Context/BundleType.swift",
        "Context/CarrierInfo.swift",
        "Context/DatadogContext.swift",
        "Context/DatadogSite.swift",
        "Context/DateProvider.swift",
        "Context/DeviceInfo.swift",
        "Context/LaunchTime.swift",
        "Context/NetworkConnectionInfo.swift",
        "Context/Sysctl.swift",
        "Context/TrackingConsent.swift",
        "Context/UserInfo.swift",
        "CoreRegistry.swift",
        "DD.swift",
        "DataStore/DataStore.swift",
        "DatadogCoreProtocol.swift",
        "DatadogFeature.swift",
        "Extensions/Data+Crypto.swift",
        "Extensions/DatadogExtended.swift",
        "Extensions/FixedWidthInteger+Convenience.swift",
        "Extensions/Foundation+Datadog.swift",
        "Extensions/InternalExtended.swift",
        "Extensions/TimeInterval+Convenience.swift",
        "MessageBus/FeatureMessage.swift",
        "MessageBus/FeatureMessageReceiver.swift",
        "Models/CrashReporting/BacktraceReport.swift",
        "Models/CrashReporting/BinaryImage.swift",
        "Models/CrashReporting/Crash.swift",
        "Models/CrashReporting/CrashContext.swift",
        "Models/CrashReporting/DDCrashReport.swift",
        "Models/CrashReporting/DDThread.swift",
        "Models/CrashReporting/LaunchReport.swift",
        "Models/Logs/LogEventAttributes.swift",
        "Models/Logs/LogMessage.swift",
        "Models/RUM/RUMCoreContext.swift",
        "Models/RUM/RUMDataModels.swift",
        "Models/RUM/RUMPayloadMessages.swift",
        "Models/SessionReplay/SessionReplayConfiguration.swift",
        "Models/SessionReplay/SessionReplayCoreContext.swift",
        "Models/Trace/SpanCoreContext.swift",
        "Models/Trace/SpanID.swift",
        "Models/Trace/TraceID.swift",
        "Models/WebViewTracking/WebViewMessage.swift",
        "NetworkInstrumentation/B3/B3HTTPHeaders.swift",
        "NetworkInstrumentation/B3/B3HTTPHeadersReader.swift",
        "NetworkInstrumentation/B3/B3HTTPHeadersWriter.swift",
        "NetworkInstrumentation/Datadog/HTTPHeadersReader.swift",
        "NetworkInstrumentation/Datadog/HTTPHeadersWriter.swift",
        "NetworkInstrumentation/Datadog/TracingHTTPHeaders.swift",
        "NetworkInstrumentation/DatadogURLSessionHandler.swift",
        "NetworkInstrumentation/FirstPartyHosts.swift",
        "NetworkInstrumentation/HostsSanitizer.swift",
        "NetworkInstrumentation/NetworkContext.swift",
        "NetworkInstrumentation/NetworkContextProvider.swift",
        "NetworkInstrumentation/NetworkInstrumentationFeature.swift",
        "NetworkInstrumentation/TraceContext.swift",
        "NetworkInstrumentation/TraceContextInjection.swift",
        "NetworkInstrumentation/TracePropagationHeadersReader.swift",
        "NetworkInstrumentation/TracePropagationHeadersWriter.swift",
        "NetworkInstrumentation/TracingHeaderType.swift",
        "NetworkInstrumentation/URLSession/DatadogURLSessionDelegate.swift",
        "NetworkInstrumentation/URLSession/ImmutableRequest.swift",
        "NetworkInstrumentation/URLSession/NetworkInstrumentationSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionDataDelegateSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionInstrumentation.swift",
        "NetworkInstrumentation/URLSession/URLSessionInterceptor.swift",
        "NetworkInstrumentation/URLSession/URLSessionSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionTask+Tracking.swift",
        "NetworkInstrumentation/URLSession/URLSessionTaskDelegateSwizzler.swift",
        "NetworkInstrumentation/URLSession/URLSessionTaskInterception.swift",
        "NetworkInstrumentation/URLSession/URLSessionTaskSwizzler.swift",
        "NetworkInstrumentation/W3C/W3CHTTPHeaders.swift",
        "NetworkInstrumentation/W3C/W3CHTTPHeadersReader.swift",
        "NetworkInstrumentation/W3C/W3CHTTPHeadersWriter.swift",
        "SDKMetrics/MethodCalledMetric.swift",
        "SDKMetrics/SDKMetricFields.swift",
        "SDKMetrics/UploadQualityMetric.swift",
        "Storage.swift",
        "Storage/PerformancePresetOverride.swift",
        "Storage/Writer.swift",
        "Swizzling/MethodSwizzler.swift",
        "Telemetry/CoreLogger.swift",
        "Telemetry/InternalLogger.swift",
        "Telemetry/Telemetry.swift",
        "Upload/DataCompression.swift",
        "Upload/DataFormat.swift",
        "Upload/DefaultJSONEncoder.swift",
        "Upload/Event.swift",
        "Upload/FeatureRequestBuilder.swift",
        "Upload/URLRequestBuilder.swift",
        "Upload/UploadPerformancePreset.swift",
        "Utils/CustomDump.swift",
        "Utils/DDError.swift",
        "Utils/DateFormatting.swift",
        "Utils/ReflectionMirror.swift",
        "Utils/Reflector.swift",
        "Utils/Sampler.swift",
        "Utils/SwiftExtensions.swift",
        "Utils/UIKitExtensions.swift",
        "Utils/WatchKitExtensions.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogCrashReportingTests",
      "module_type" : "SwiftTarget",
      "name" : "DatadogCrashReportingTests",
      "path" : "DatadogCrashReporting/Tests",
      "sources" : [
        "CrashReportingPluginTests.swift",
        "PLCrashReporterIntegration/CrashReportMinifierTests.swift",
        "PLCrashReporterIntegration/CrashReportTests.swift",
        "PLCrashReporterIntegration/DDCrashReportBuilderTests.swift",
        "PLCrashReporterIntegration/DDCrashReportExporterTests.swift",
        "PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift",
        "PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift"
      ],
      "target_dependencies" : [
        "DatadogCrashReporting",
        "TestUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DatadogCrashReporting",
      "module_type" : "SwiftTarget",
      "name" : "DatadogCrashReporting",
      "path" : "DatadogCrashReporting",
      "product_dependencies" : [
        "CrashReporter"
      ],
      "product_memberships" : [
        "DatadogCrashReporting"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/CrashContext/CrashContextProvider.swift",
        "Sources/CrashReporting.swift",
        "Sources/CrashReportingFeature.swift",
        "Sources/CrashReportingPlugin.swift",
        "Sources/Integrations/BacktraceReporter.swift",
        "Sources/Integrations/CrashReportSender.swift",
        "Sources/PLCrashReporterIntegration/CrashReport.swift",
        "Sources/PLCrashReporterIntegration/CrashReportMinifier.swift",
        "Sources/PLCrashReporterIntegration/DDCrashReportBuilder.swift",
        "Sources/PLCrashReporterIntegration/DDCrashReportExporter.swift",
        "Sources/PLCrashReporterIntegration/PLCrashReporterIntegration.swift",
        "Sources/PLCrashReporterIntegration/PLCrashReporterPlugin.swift",
        "Sources/PLCrashReporterIntegration/Utils/SwiftExtensions.swift",
        "Sources/ThirdPartyCrashReporter.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DatadogCore",
      "module_type" : "SwiftTarget",
      "name" : "DatadogCore",
      "path" : "DatadogCore",
      "product_memberships" : [
        "DatadogCore",
        "DatadogObjc"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DatadogCore/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/Core/Context/AccountInfoPublisher.swift",
        "Sources/Core/Context/ApplicationStatePublisher.swift",
        "Sources/Core/Context/ApplicationVersionPublisher.swift",
        "Sources/Core/Context/BatteryStatusPublisher.swift",
        "Sources/Core/Context/CarrierInfoPublisher.swift",
        "Sources/Core/Context/ContextValuePublisher.swift",
        "Sources/Core/Context/DatadogContextProvider.swift",
        "Sources/Core/Context/LaunchTimePublisher.swift",
        "Sources/Core/Context/LowPowerModePublisher.swift",
        "Sources/Core/Context/NetworkConnectionInfoPublisher.swift",
        "Sources/Core/Context/ServerOffsetPublisher.swift",
        "Sources/Core/Context/TrackingConsentPublisher.swift",
        "Sources/Core/Context/UserInfoPublisher.swift",
        "Sources/Core/DataStore/DataStore+TLV.swift",
        "Sources/Core/DataStore/DataStoreFileReader.swift",
        "Sources/Core/DataStore/DataStoreFileWriter.swift",
        "Sources/Core/DataStore/FeatureDataStore.swift",
        "Sources/Core/DatadogCore.swift",
        "Sources/Core/MessageBus.swift",
        "Sources/Core/Storage/DataEncryption.swift",
        "Sources/Core/Storage/Directories.swift",
        "Sources/Core/Storage/EventGenerator.swift",
        "Sources/Core/Storage/FeatureStorage.swift",
        "Sources/Core/Storage/Files/Directory.swift",
        "Sources/Core/Storage/Files/File.swift",
        "Sources/Core/Storage/FilesOrchestrator.swift",
        "Sources/Core/Storage/Reading/DataReader.swift",
        "Sources/Core/Storage/Reading/FileReader.swift",
        "Sources/Core/Storage/Reading/Reader.swift",
        "Sources/Core/Storage/Storage+TLV.swift",
        "Sources/Core/Storage/Writing/AsyncWriter.swift",
        "Sources/Core/Storage/Writing/FileWriter.swift",
        "Sources/Core/TLV/TLVBlock.swift",
        "Sources/Core/TLV/TLVBlockReader.swift",
        "Sources/Core/Upload/BackgroundTaskCoordinator.swift",
        "Sources/Core/Upload/DataUploadConditions.swift",
        "Sources/Core/Upload/DataUploadDelay.swift",
        "Sources/Core/Upload/DataUploadStatus.swift",
        "Sources/Core/Upload/DataUploadWorker.swift",
        "Sources/Core/Upload/DataUploader.swift",
        "Sources/Core/Upload/FeatureUpload.swift",
        "Sources/Core/Upload/HTTPClient.swift",
        "Sources/Core/Upload/URLSessionClient.swift",
        "Sources/Datadog+Internal.swift",
        "Sources/Datadog.swift",
        "Sources/FeaturesIntegration/CITestIntegration.swift",
        "Sources/Kronos/KronosClock.swift",
        "Sources/Kronos/KronosDNSResolver.swift",
        "Sources/Kronos/KronosData+Bytes.swift",
        "Sources/Kronos/KronosInternetAddress.swift",
        "Sources/Kronos/KronosNSTimer+ClosureKit.swift",
        "Sources/Kronos/KronosNTPClient.swift",
        "Sources/Kronos/KronosNTPPacket.swift",
        "Sources/Kronos/KronosNTPProtocol.swift",
        "Sources/Kronos/KronosTimeFreeze.swift",
        "Sources/Kronos/KronosTimeStorage.swift",
        "Sources/PerformancePreset.swift",
        "Sources/SDKMetrics/BatchMetrics.swift",
        "Sources/SDKMetrics/BenchmarkURLSessionTaskDelegate.swift",
        "Sources/Utils/Cryptography.swift",
        "Sources/Utils/Retrying.swift",
        "Sources/Versioning.swift"
      ],
      "target_dependencies" : [
        "DatadogInternal",
        "DatadogPrivate"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.