The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Datadog, reference develop (cddef3), with Swift 6.1 for macOS (SPM) on 5 May 2025 15:42:18 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

    |                                             |- warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
    |                                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:23: warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                       |- warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
    |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:29: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                             `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:13: warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |             |- warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:20: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |                    `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:102:26: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
100 |             block(&self.context)
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
    |                          `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
103 |             }
104 |         }
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:23: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 73 |     /// - Parameter receiver: The receiver closure.
 74 |     func publish(to receiver: @escaping ContextValueReceiver<DatadogContext>) {
 75 |         queue.async { self.receivers.append(receiver) }
    |                       `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:45: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
 73 |     /// - Parameter receiver: The receiver closure.
 74 |     func publish(to receiver: @escaping ContextValueReceiver<DatadogContext>) {
 75 |         queue.async { self.receivers.append(receiver) }
    |                                             |- warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
    |                                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:23: warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                       |- warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
    |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:29: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                             `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:13: warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |             |- warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:20: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |                    `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:102:26: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
100 |             block(&self.context)
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
    |                          `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
103 |             }
104 |         }
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:23: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 73 |     /// - Parameter receiver: The receiver closure.
 74 |     func publish(to receiver: @escaping ContextValueReceiver<DatadogContext>) {
 75 |         queue.async { self.receivers.append(receiver) }
    |                       `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:45: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
 73 |     /// - Parameter receiver: The receiver closure.
 74 |     func publish(to receiver: @escaping ContextValueReceiver<DatadogContext>) {
 75 |         queue.async { self.receivers.append(receiver) }
    |                                             |- warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
    |                                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:23: warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                       |- warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
    |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:29: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                             `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:13: warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |             |- warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:20: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |                    `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:102:26: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
100 |             block(&self.context)
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
    |                          `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
103 |             }
104 |         }
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:23: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 73 |     /// - Parameter receiver: The receiver closure.
 74 |     func publish(to receiver: @escaping ContextValueReceiver<DatadogContext>) {
 75 |         queue.async { self.receivers.append(receiver) }
    |                       `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:75:45: warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
 73 |     /// - Parameter receiver: The receiver closure.
 74 |     func publish(to receiver: @escaping ContextValueReceiver<DatadogContext>) {
 75 |         queue.async { self.receivers.append(receiver) }
    |                                             |- warning: capture of 'receiver' with non-sendable type 'ContextValueReceiver<DatadogContext>' (aka '(DatadogContext) -> ()') in a '@Sendable' closure
    |                                             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:23: warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                       |- warning: capture of 'block' with non-sendable type '(DatadogContext) -> Void' in a '@Sendable' closure
    |                       `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:92:29: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 90 |     /// - Parameter block: The block closure called with the current context.
 91 |     func read(block: @escaping (DatadogContext) -> Void) {
 92 |         queue.async { block(self.context) }
    |                             `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 93 |     }
 94 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:13: warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |             |- warning: capture of 'block' with non-sendable type '(inout DatadogContext) -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:100:20: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
 98 |     func write(block: @escaping (inout DatadogContext) -> Void) {
 99 |         queue.async {
100 |             block(&self.context)
    |                    `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in a '@Sendable' closure
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/DatadogContextProvider.swift:102:26: warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
 37 | ///
 38 | /// All subscriptions will be cancelled when the provider is deallocated.
 39 | internal final class DatadogContextProvider {
    |                      `- note: class 'DatadogContextProvider' does not conform to the 'Sendable' protocol
 40 |     /// The current `context`.
 41 |     ///
    :
100 |             block(&self.context)
101 |             self.receivers.forEach { receiver in
102 |                 receiver(self.context)
    |                          `- warning: capture of 'self' with non-sendable type 'DatadogContextProvider' in an isolated closure; this is an error in the Swift 6 language mode
103 |             }
104 |         }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[531/630] Emitting module DatadogRUM
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[563/640] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:41:10: warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
38 | }
39 |
40 | extension DDScriptMessageHandler: Flushable {
   |                                   `- note: add '@preconcurrency' to the 'Flushable' conformance to defer isolation checking to run time
41 |     func flush() {
   |          |- warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'flush()' to make this instance method not isolated to the actor
42 |         queue.sync { }
43 |     }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Concurrency/Flushable.swift:13:10: note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
11 |     ///
12 |     /// **blocks the caller thread**
13 |     func flush()
   |          `- note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:35:37: warning: capture of 'body' with non-sendable type 'Any' in a '@Sendable' closure
33 |         let body = message.body
34 |         queue.async {
35 |             self.emitter.send(body: body, slotId: hash)
   |                                     `- warning: capture of 'body' with non-sendable type 'Any' in a '@Sendable' closure
36 |         }
37 |     }
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:35:18: warning: main actor-isolated property 'emitter' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
14 |     static let name = "DatadogEventBridge"
15 |
16 |     let emitter: MessageEmitter
   |         `- note: property declared here
17 |
18 |     let queue = DispatchQueue(
   :
33 |         let body = message.body
34 |         queue.async {
35 |             self.emitter.send(body: body, slotId: hash)
   |                  `- warning: main actor-isolated property 'emitter' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
36 |         }
37 |     }
[564/640] Emitting module DatadogWebViewTracking
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:41:10: warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
38 | }
39 |
40 | extension DDScriptMessageHandler: Flushable {
   |                                   `- note: add '@preconcurrency' to the 'Flushable' conformance to defer isolation checking to run time
41 |     func flush() {
   |          |- warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
   |          `- note: add 'nonisolated' to 'flush()' to make this instance method not isolated to the actor
42 |         queue.sync { }
43 |     }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Concurrency/Flushable.swift:13:10: note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
11 |     ///
12 |     /// **blocks the caller thread**
13 |     func flush()
   |          `- note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
14 | }
15 |
[565/640] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[566/640] Compiling DatadogWebViewTracking MessageEmitter.swift
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:35:23: 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
33 |     override func send(body: Any, slotId: String? = nil) {
34 |         guard let core = core else {
35 |             return DD.logger.debug("Core must not be nil when using WebViewTracking")
   |                       `- 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
36 |         }
37 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 |     /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 |     /// SDK verbosity and send us their console log.
20 |     public static var logger: CoreLogger = InternalLogger(
   |                       `- note: static property declared here
21 |         dateProvider: SystemDateProvider(),
22 |         timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:59: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
57 |             }
58 |         } catch {
59 |             DD.logger.error("Encountered an error when receiving web view event", error: error)
   |                `- 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
60 |             core.telemetry.error("Encountered an error when receiving web view event", error: error)
61 |         }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 |     /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 |     /// SDK verbosity and send us their console log.
20 |     public static var logger: CoreLogger = InternalLogger(
   |                       `- note: static property declared here
21 |         dateProvider: SystemDateProvider(),
22 |         timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:70: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
68 |
69 |         core.send(message: .webview(message), else: {
70 |             DD.logger.warn("A WebView log is lost because Logging is disabled in the SDK")
   |                `- 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
71 |         })
72 |     }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 |     /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 |     /// SDK verbosity and send us their console log.
20 |     public static var logger: CoreLogger = InternalLogger(
   |                       `- note: static property declared here
21 |         dateProvider: SystemDateProvider(),
22 |         timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:76: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
74 |     private func send(rum message: WebViewMessage, in core: DatadogCoreProtocol) {
75 |         core.send(message: .webview(message), else: {
76 |             DD.logger.warn("A WebView RUM event is lost because RUM is disabled in the SDK")
   |                `- 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
77 |         })
78 |     }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 |     /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 |     /// SDK verbosity and send us their console log.
20 |     public static var logger: CoreLogger = InternalLogger(
   |                       `- note: static property declared here
21 |         dateProvider: SystemDateProvider(),
22 |         timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:86: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
84 |
85 |         core.send(message: .webview(.record(event, view)), else: {
86 |             DD.logger.warn("A WebView Replay record is lost because Session Replay is disabled in the SDK")
   |                `- 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
87 |         })
88 |     }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 |     /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 |     /// SDK verbosity and send us their console log.
20 |     public static var logger: CoreLogger = InternalLogger(
   |                       `- note: static property declared here
21 |         dateProvider: SystemDateProvider(),
22 |         timeZone: .current,
[567/640] Compiling DatadogWebViewTracking WebViewTracking.swift
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:46:45: warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 37 |     ///   where 0 means no logs will be sent and 100 means all will be uploaded. Default: `100`.
 38 |     ///   - core: Datadog SDK core to use for tracking.
 39 |     public static func enable(
    |                        `- note: add '@MainActor' to make static method 'enable(webView:hosts:logsSampleRate:in:)' part of global actor 'MainActor'
 40 |         webView: WKWebView,
 41 |         hosts: Set<String> = [],
    :
 44 |     ) {
 45 |         enable(
 46 |             tracking: webView.configuration.userContentController,
    |                                             `- warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 47 |             hosts: hosts,
 48 |             hostsSanitizer: HostsSanitizer(),
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:118:56: note: property declared here
116 | /*! @abstract The user content controller to associate with the web view.
117 | */
118 | @property (nonatomic, strong) WKUserContentController *userContentController;
    |                                                        `- note: property declared here
119 |
120 | /*! @abstract The web extension controller to associate with the web view.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:46:31: warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 37 |     ///   where 0 means no logs will be sent and 100 means all will be uploaded. Default: `100`.
 38 |     ///   - core: Datadog SDK core to use for tracking.
 39 |     public static func enable(
    |                        `- note: add '@MainActor' to make static method 'enable(webView:hosts:logsSampleRate:in:)' part of global actor 'MainActor'
 40 |         webView: WKWebView,
 41 |         hosts: Set<String> = [],
    :
 44 |     ) {
 45 |         enable(
 46 |             tracking: webView.configuration.userContentController,
    |                               `- warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 47 |             hosts: hosts,
 48 |             hostsSanitizer: HostsSanitizer(),
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:91:63: note: property declared here
 89 | /*! @abstract A copy of the configuration with which the web view was
 90 |  initialized. */
 91 | @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
    |                                                               `- note: property declared here
 92 |
 93 | /*! @abstract The web view's navigation delegate. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:61:48: warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 58 |     ///
 59 |     /// - Parameter webView: The web-view to stop tracking.
 60 |     public static func disable(webView: WKWebView) {
    |                        `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
 61 |         let controller = webView.configuration.userContentController
    |                                                `- warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:118:56: note: property declared here
116 | /*! @abstract The user content controller to associate with the web view.
117 | */
118 | @property (nonatomic, strong) WKUserContentController *userContentController;
    |                                                        `- note: property declared here
119 |
120 | /*! @abstract The web extension controller to associate with the web view.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:61:34: warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 58 |     ///
 59 |     /// - Parameter webView: The web-view to stop tracking.
 60 |     public static func disable(webView: WKWebView) {
    |                        `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
 61 |         let controller = webView.configuration.userContentController
    |                                  `- warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:91:63: note: property declared here
 89 | /*! @abstract A copy of the configuration with which the web view was
 90 |  initialized. */
 91 | @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
    |                                                               `- note: property declared here
 92 |
 93 | /*! @abstract The web view's navigation delegate. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:62:20: warning: call to main actor-isolated instance method 'removeScriptMessageHandler(forName:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 58 |     ///
 59 |     /// - Parameter webView: The web-view to stop tracking.
 60 |     public static func disable(webView: WKWebView) {
    |                        `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
 61 |         let controller = webView.configuration.userContentController
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
    |                    `- warning: call to main actor-isolated instance method 'removeScriptMessageHandler(forName:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
 64 |         controller.removeAllUserScripts()
WebKit.WKUserContentController.removeScriptMessageHandler:2:22: note: calls to instance method 'removeScriptMessageHandler(forName:)' from outside of its actor context are implicitly asynchronous
1 | class WKUserContentController {
2 | @MainActor open func removeScriptMessageHandler(forName name: String)}
  |                      `- note: calls to instance method 'removeScriptMessageHandler(forName:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:62:79: warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 58 |     ///
 59 |     /// - Parameter webView: The web-view to stop tracking.
 60 |     public static func disable(webView: WKWebView) {
    |                        `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
 61 |         let controller = webView.configuration.userContentController
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
    |                                                                               `- warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
 64 |         controller.removeAllUserScripts()
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:14:16: note: static property declared here
12 |
13 | internal class DDScriptMessageHandler: NSObject, WKScriptMessageHandler {
14 |     static let name = "DatadogEventBridge"
   |                `- note: static property declared here
15 |
16 |     let emitter: MessageEmitter
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:63:33: warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 58 |     ///
 59 |     /// - Parameter webView: The web-view to stop tracking.
 60 |     public static func disable(webView: WKWebView) {
    |                        `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
 61 |         let controller = webView.configuration.userContentController
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
    |                                 `- warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 64 |         controller.removeAllUserScripts()
 65 |         others.forEach(controller.addUserScript)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserContentController.h:50:64: note: property declared here
 48 |  controller.
 49 | */
 50 | @property (nonatomic, readonly, copy) NSArray<WKUserScript *> *userScripts;
    |                                                                `- note: property declared here
 51 |
 52 | /*! @abstract Adds a user script.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:63:58: warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 61 |         let controller = webView.configuration.userContentController
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
    |                                                          `- warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 64 |         controller.removeAllUserScripts()
 65 |         others.forEach(controller.addUserScript)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserScript.h:50:49: note: property declared here
48 |
49 | /* @abstract The script source code. */
50 | @property (nonatomic, readonly, copy) NSString *source;
   |                                                 `- note: property declared here
51 |
52 | /* @abstract When the script should be injected. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:64:20: warning: call to main actor-isolated instance method 'removeAllUserScripts()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 58 |     ///
 59 |     /// - Parameter webView: The web-view to stop tracking.
 60 |     public static func disable(webView: WKWebView) {
    |                        `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
 61 |         let controller = webView.configuration.userContentController
 62 |         controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
 64 |         controller.removeAllUserScripts()
    |                    `- warning: call to main actor-isolated instance method 'removeAllUserScripts()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 65 |         others.forEach(controller.addUserScript)
 66 |     }
WebKit.WKUserContentController.removeAllUserScripts:2:22: note: calls to instance method 'removeAllUserScripts()' from outside of its actor context are implicitly asynchronous
1 | class WKUserContentController {
2 | @MainActor open func removeAllUserScripts()}
  |                      `- note: calls to instance method 'removeAllUserScripts()' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:65:35: warning: converting function value of type '@MainActor @Sendable (WKUserScript) -> Void' to '(WKUserScript) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
 63 |         let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
 64 |         controller.removeAllUserScripts()
 65 |         others.forEach(controller.addUserScript)
    |                                   `- warning: converting function value of type '@MainActor @Sendable (WKUserScript) -> Void' to '(WKUserScript) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:79:37: warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 70 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 71 |
 72 |     static func enable(
    |                 `- note: add '@MainActor' to make static method 'enable(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 73 |         tracking controller: WKUserContentController,
 74 |         hosts: Set<String>,
    :
 77 |         in core: DatadogCoreProtocol
 78 |     ) {
 79 |         let isTracking = controller.userScripts.contains { $0.source.starts(with: Self.jsCodePrefix) }
    |                                     `- warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |         guard !isTracking else {
 81 |             DD.logger.warn("`startTrackingDatadogEvents(core:hosts:)` was called more than once for the same WebView. Second call will be ignored. Make sure you call it only once.")
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserContentController.h:50:64: note: property declared here
 48 |  controller.
 49 | */
 50 | @property (nonatomic, readonly, copy) NSArray<WKUserScript *> *userScripts;
    |                                                                `- note: property declared here
 51 |
 52 | /*! @abstract Adds a user script.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:79:63: warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 77 |         in core: DatadogCoreProtocol
 78 |     ) {
 79 |         let isTracking = controller.userScripts.contains { $0.source.starts(with: Self.jsCodePrefix) }
    |                                                               `- warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 80 |         guard !isTracking else {
 81 |             DD.logger.warn("`startTrackingDatadogEvents(core:hosts:)` was called more than once for the same WebView. Second call will be ignored. Make sure you call it only once.")
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserScript.h:50:49: note: property declared here
48 |
49 | /* @abstract The script source code. */
50 | @property (nonatomic, readonly, copy) NSString *source;
   |                                                 `- note: property declared here
51 |
52 | /* @abstract When the script should be injected. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:81: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
 79 |         let isTracking = controller.userScripts.contains { $0.source.starts(with: Self.jsCodePrefix) }
 80 |         guard !isTracking else {
 81 |             DD.logger.warn("`startTrackingDatadogEvents(core:hosts:)` was called more than once for the same WebView. Second call will be ignored. Make sure you call it only once.")
    |                `- 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
 82 |             return
 83 |        }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 |     /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 |     /// SDK verbosity and send us their console log.
20 |     public static var logger: CoreLogger = InternalLogger(
   |                       `- note: static property declared here
21 |         dateProvider: SystemDateProvider(),
22 |         timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:85:49: warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 70 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 71 |
 72 |     static func enable(
    |                 `- note: add '@MainActor' to make static method 'enable(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 73 |         tracking controller: WKUserContentController,
 74 |         hosts: Set<String>,
    :
 83 |        }
 84 |
 85 |         let bridgeName = DDScriptMessageHandler.name
    |                                                 `- warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 86 |
 87 |         let messageHandler = DDScriptMessageHandler(
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:14:16: note: static property declared here
12 |
13 | internal class DDScriptMessageHandler: NSObject, WKScriptMessageHandler {
14 |     static let name = "DatadogEventBridge"
   |                `- note: static property declared here
15 |
16 |     let emitter: MessageEmitter
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:87:30: warning: call to main actor-isolated initializer 'init(emitter:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 70 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 71 |
 72 |     static func enable(
    |                 `- note: add '@MainActor' to make static method 'enable(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 73 |         tracking controller: WKUserContentController,
 74 |         hosts: Set<String>,
    :
 85 |         let bridgeName = DDScriptMessageHandler.name
 86 |
 87 |         let messageHandler = DDScriptMessageHandler(
    |                              `- warning: call to main actor-isolated initializer 'init(emitter:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 88 |             emitter: MessageEmitter(
 89 |                 logsSampler: Sampler(samplingRate: logsSampleRate),
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:23:5: note: calls to initializer 'init(emitter:)' from outside of its actor context are implicitly asynchronous
21 |     )
22 |
23 |     init(emitter: MessageEmitter) {
   |     |- note: calls to initializer 'init(emitter:)' from outside of its actor context are implicitly asynchronous
   |     `- note: main actor isolation inferred from conformance to protocol 'WKScriptMessageHandler'
24 |         self.emitter = emitter
25 |     }
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:94:20: warning: call to main actor-isolated instance method 'add(_:name:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 70 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 71 |
 72 |     static func enable(
    |                 `- note: add '@MainActor' to make static method 'enable(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 73 |         tracking controller: WKUserContentController,
 74 |         hosts: Set<String>,
    :
 92 |         )
 93 |
 94 |         controller.add(messageHandler, name: bridgeName)
    |                    `- warning: call to main actor-isolated instance method 'add(_:name:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 95 |
 96 |         // WebKit installs message handlers with the given name format below
WebKit.WKUserContentController.add:2:22: note: calls to instance method 'add(_:name:)' from outside of its actor context are implicitly asynchronous
1 | class WKUserContentController {
2 | @MainActor open func add(_ scriptMessageHandler: any WKScriptMessageHandler, name: String)}
  |                      `- note: calls to instance method 'add(_:name:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:143:20: warning: call to main actor-isolated instance method 'addUserScript' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 70 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 71 |
 72 |     static func enable(
    |                 `- note: add '@MainActor' to make static method 'enable(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 73 |         tracking controller: WKUserContentController,
 74 |         hosts: Set<String>,
    :
141 |         """
142 |
143 |         controller.addUserScript(
    |                    `- warning: call to main actor-isolated instance method 'addUserScript' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
144 |             WKUserScript(
145 |                 source: js,
WebKit.WKUserContentController.addUserScript:2:22: note: calls to instance method 'addUserScript' from outside of its actor context are implicitly asynchronous
1 | class WKUserContentController {
2 | @MainActor open func addUserScript(_ userScript: WKUserScript)}
  |                      `- note: calls to instance method 'addUserScript' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:144:13: warning: call to main actor-isolated initializer 'init(source:injectionTime:forMainFrameOnly:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 70 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 71 |
 72 |     static func enable(
    |                 `- note: add '@MainActor' to make static method 'enable(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 73 |         tracking controller: WKUserContentController,
 74 |         hosts: Set<String>,
    :
142 |
143 |         controller.addUserScript(
144 |             WKUserScript(
    |             `- warning: call to main actor-isolated initializer 'init(source:injectionTime:forMainFrameOnly:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
145 |                 source: js,
146 |                 injectionTime: .atDocumentStart,
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserScript.h:64:1: note: calls to initializer 'init(source:injectionTime:forMainFrameOnly:)' from outside of its actor context are implicitly asynchronous
62 |  @discussion Calling this method is the same as calling `initWithSource:injectionTime:forMainFrameOnly:inContentWorld:` with a `contentWorld` value of `WKContentWorld.pageWorld`
63 |  */
64 | - (instancetype)initWithSource:(NSString *)source injectionTime:(WKUserScriptInjectionTime)injectionTime forMainFrameOnly:(BOOL)forMainFrameOnly;
   | `- note: calls to initializer 'init(source:injectionTime:forMainFrameOnly:)' from outside of its actor context are implicitly asynchronous
65 |
66 | /*! @abstract Returns an initialized user script that can be added to a @link WKUserContentController @/link.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:87:30: warning: sending value of non-Sendable type 'MessageEmitter' risks causing data races; this is an error in the Swift 6 language mode
 85 |         let bridgeName = DDScriptMessageHandler.name
 86 |
 87 |         let messageHandler = DDScriptMessageHandler(
    |                              |- warning: sending value of non-Sendable type 'MessageEmitter' risks causing data races; this is an error in the Swift 6 language mode
    |                              `- note: sending task-isolated value of non-Sendable type 'MessageEmitter' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
 88 |             emitter: MessageEmitter(
 89 |                 logsSampler: Sampler(samplingRate: logsSampleRate),
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[631/640] Compiling DatadogRUM ViewEndedController.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[632/640] Compiling DatadogRUM ViewEndedMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[633/640] Compiling DatadogRUM ViewHitchesMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[634/640] Compiling DatadogRUM RUMEventsMapper.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[635/640] Compiling DatadogRUM RUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[636/640] Compiling DatadogRUM RUMUUIDGenerator.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[637/640] Compiling DatadogRUM SwiftUIExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[638/640] Compiling DatadogRUM UIKitExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[639/640] Compiling DatadogRUM ValuePublisher.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[640/640] Compiling DatadogRUM resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
warning: 'spi-builder-workspace': found 130 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/CrashLogReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDNSURLSessionDelegate+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchTimePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUMMonitor+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDNSURLSessionDelegateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
warning: 'spi-builder-workspace': found 51 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
warning: 'spi-builder-workspace': found 7 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/199] Compiling DatadogInternal Attributes.swift
[3/199] Compiling DatadogInternal AttributesSanitizer.swift
[4/199] Compiling DatadogInternal BacktraceReporter.swift
[5/199] Compiling DatadogInternal BacktraceReportingFeature.swift
[6/199] Compiling DatadogInternal BenchmarkProfiler.swift
[7/199] Compiling DatadogInternal AnyCodable.swift
[8/199] Compiling DatadogInternal AnyDecodable.swift
[9/199] Compiling DatadogInternal AnyDecoder.swift
[10/199] Compiling DatadogInternal AnyEncodable.swift
[11/199] Compiling DatadogInternal AnyEncoder.swift
[12/199] Compiling DatadogInternal DynamicCodingKey.swift
[13/209] Compiling DatadogInternal DatadogExtended.swift
[14/209] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[15/209] Compiling DatadogInternal Foundation+Datadog.swift
[16/209] Compiling DatadogInternal InternalExtended.swift
[17/209] Compiling DatadogInternal TimeInterval+Convenience.swift
[18/209] Compiling DatadogInternal FeatureBaggage.swift
[19/209] Compiling DatadogInternal FeatureMessage.swift
[20/209] Compiling DatadogInternal FeatureMessageReceiver.swift
[21/209] Compiling DatadogInternal BacktraceReport.swift
[22/209] Compiling DatadogInternal BinaryImage.swift
[23/209] Compiling DatadogInternal DDCrashReport.swift
[24/209] Compiling DatadogInternal Flushable.swift
[25/209] Compiling DatadogInternal ReadWriteLock.swift
[26/209] Compiling DatadogInternal AppState.swift
[27/209] Compiling DatadogInternal ApplicationNotifications.swift
[28/209] Compiling DatadogInternal BatteryStatus.swift
[29/209] Compiling DatadogInternal BundleType.swift
[30/209] Compiling DatadogInternal CarrierInfo.swift
[31/209] Compiling DatadogInternal DatadogContext.swift
[32/209] Compiling DatadogInternal DatadogSite.swift
[33/209] Compiling DatadogInternal DateProvider.swift
[34/209] Compiling DatadogInternal DeviceInfo.swift
[35/209] Compiling DatadogInternal LaunchTime.swift
[36/209] Compiling DatadogInternal NetworkConnectionInfo.swift
[37/209] Compiling DatadogInternal Sysctl.swift
[38/209] Compiling DatadogInternal TrackingConsent.swift
[39/209] Compiling DatadogInternal UserInfo.swift
[40/209] Compiling DatadogInternal CoreRegistry.swift
[41/209] Compiling DatadogInternal DD.swift
[42/209] Compiling DatadogInternal DataStore.swift
[43/209] Compiling DatadogInternal DatadogCoreProtocol.swift
[44/209] Compiling DatadogInternal DatadogFeature.swift
[45/209] Compiling DatadogInternal Data+Crypto.swift
[46/209] Compiling DatadogInternal TracePropagationHeadersReader.swift
[47/209] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[48/209] Compiling DatadogInternal TracingHeaderType.swift
[49/209] Compiling DatadogInternal DatadogURLSessionDelegate.swift
[50/209] Compiling DatadogInternal ImmutableRequest.swift
[51/209] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[52/209] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[53/209] Compiling DatadogInternal URLSessionInstrumentation.swift
[54/209] Compiling DatadogInternal URLSessionInterceptor.swift
[55/209] Compiling DatadogInternal URLSessionSwizzler.swift
[56/209] Compiling DatadogInternal URLSessionTask+Tracking.swift
[57/219] Emitting module OpenTelemetryApi
[58/219] Compiling DatadogInternal PerformancePresetOverride.swift
[59/219] Compiling DatadogInternal Writer.swift
[60/219] Compiling DatadogInternal MethodSwizzler.swift
[61/219] Compiling DatadogInternal CoreLogger.swift
[62/219] Compiling DatadogInternal InternalLogger.swift
[63/219] Compiling DatadogInternal Telemetry.swift
[64/219] Compiling DatadogInternal DataCompression.swift
[65/219] Compiling DatadogInternal DataFormat.swift
[66/219] Compiling DatadogInternal DefaultJSONEncoder.swift
[67/219] Compiling DatadogInternal Event.swift
[69/219] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
[70/219] Compiling DatadogInternal URLSessionTaskInterception.swift
[71/219] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[72/219] Compiling DatadogInternal W3CHTTPHeaders.swift
[73/219] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[74/219] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[75/219] Compiling DatadogInternal MethodCalledMetric.swift
[76/219] Compiling DatadogInternal SDKMetricFields.swift
[77/219] Compiling DatadogInternal UploadQualityMetric.swift
[78/219] Compiling DatadogInternal Storage.swift
[79/219] Compiling DatadogInternal TracingHTTPHeaders.swift
[80/219] Compiling DatadogInternal DatadogURLSessionHandler.swift
[81/219] Compiling DatadogInternal FirstPartyHosts.swift
[82/219] Compiling DatadogInternal HostsSanitizer.swift
[83/219] Compiling DatadogInternal NetworkContext.swift
[84/219] Compiling DatadogInternal NetworkContextProvider.swift
[85/219] Compiling DatadogInternal NetworkInstrumentationFeature.swift
[86/219] Compiling DatadogInternal SpanID.swift
[87/219] Compiling DatadogInternal TraceContext.swift
[88/219] Compiling DatadogInternal TraceContextInjection.swift
[89/219] Compiling DatadogInternal TraceID.swift
[101/219] Compiling DatadogInternal DDThread.swift
[102/219] Compiling DatadogInternal LaunchReport.swift
[103/219] Compiling DatadogInternal GlobalRUMAttributes.swift
[104/219] Compiling DatadogInternal RUMDataModels.swift
[105/219] Compiling DatadogInternal SessionReplayConfiguration.swift
[106/219] Compiling DatadogInternal WebViewMessage.swift
[107/219] Compiling DatadogInternal B3HTTPHeaders.swift
[108/219] Compiling DatadogInternal B3HTTPHeadersReader.swift
[109/219] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[110/219] Compiling DatadogInternal HTTPHeadersReader.swift
[111/219] Compiling DatadogInternal HTTPHeadersWriter.swift
[142/219] Compiling OpenTelemetryApi SpanContext.swift
[143/219] Compiling OpenTelemetryApi SpanException.swift
[146/219] Compiling DatadogInternal UploadPerformancePreset.swift
[147/219] Compiling DatadogInternal CustomDump.swift
[148/219] Compiling DatadogInternal DDError.swift
[149/219] Compiling DatadogInternal DateFormatting.swift
[150/219] Compiling DatadogInternal ReflectionMirror.swift
[151/219] Compiling DatadogInternal Reflector.swift
[152/219] Compiling DatadogInternal Sampler.swift
[153/219] Compiling DatadogInternal SwiftExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[173/219] Compiling DatadogInternal UIKitExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[174/219] Compiling DatadogInternal WatchKitExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[175/219] Emitting module DatadogInternal
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:213:16: warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
 17 |
 18 | /// Application state.
 19 | public enum AppState: Codable, PassthroughAnyCodable {
    |             `- note: consider making enum 'AppState' conform to the 'Sendable' protocol
 20 |     /// The app is running in the foreground and currently receiving events.
 21 |     case active
    :
211 | public struct DefaultAppStateProvider: AppStateProvider {
212 |     public init() {}
213 |     public let current: AppState = .active
    |                `- warning: stored property 'current' of 'Sendable'-conforming struct 'DefaultAppStateProvider' has non-sendable type 'AppState'; this is an error in the Swift 6 language mode
214 | }
215 |
[220/532] Compiling DatadogCrashReporting ThirdPartyCrashReporter.swift
[221/533] Compiling DatadogCore EventGenerator.swift
[222/533] Compiling DatadogCore FeatureStorage.swift
[223/533] Compiling DatadogCore Directory.swift
[224/533] Compiling DatadogSessionReplay PrivacyLevel.swift
[225/533] Compiling DatadogSessionReplay Recorder.swift
[226/533] Compiling DatadogCore DataReader.swift
[227/533] Compiling DatadogCore FileReader.swift
[228/533] Compiling DatadogCore Reader.swift
[229/533] Compiling DatadogCore Storage+TLV.swift
[230/533] Compiling DatadogCore AsyncWriter.swift
[231/542] Compiling DatadogLogs Logs.swift
[232/543] Emitting module DatadogSessionReplay
[233/543] Compiling DatadogSessionReplay EnrichedResource.swift
[234/543] Compiling DatadogSessionReplay SRDataModels+UIKit.swift
[235/543] Compiling DatadogSessionReplay SwiftUIWireframesBuilder.swift
[236/543] Compiling DatadogSessionReplay Text+Reflection.swift
[237/543] Compiling DatadogSessionReplay Text.swift
[238/543] Compiling DatadogSessionReplay UIActivityIndicatorRecorder.swift
[239/543] Compiling DatadogSessionReplay UIDatePickerRecorder.swift
[240/543] Compiling DatadogSessionReplay UIHostingViewRecorder.swift
[241/543] Compiling DatadogSessionReplay UIImageResource.swift
[242/543] Compiling DatadogSessionReplay UIImageViewRecorder.swift
[243/543] Compiling DatadogSessionReplay UILabelRecorder.swift
[244/543] Compiling DatadogSessionReplay UINavigationBarRecorder.swift
[245/543] Compiling DatadogSessionReplay UIPickerViewRecorder.swift
[246/543] Compiling DatadogSessionReplay UIProgressViewRecorder.swift
[247/543] Compiling DatadogSessionReplay UISegmentRecorder.swift
[248/543] Compiling DatadogSessionReplay UISliderRecorder.swift
[249/543] Compiling DatadogSessionReplay UIStepperRecorder.swift
[250/543] Compiling DatadogSessionReplay UISwitchRecorder.swift
[251/543] Compiling DatadogSessionReplay UITabBarRecorder.swift
[252/543] Compiling DatadogSessionReplay UITextFieldRecorder.swift
[253/543] Compiling DatadogSessionReplay UITextViewRecorder.swift
[254/543] Compiling DatadogSessionReplay UIViewRecorder.swift
[255/543] Compiling DatadogSessionReplay UnsupportedViewRecorder.swift
[256/543] Compiling DatadogSessionReplay WKWebViewRecorder.swift
[257/543] Compiling DatadogSessionReplay ViewTreeRecorder.swift
[258/543] Compiling DatadogSessionReplay ViewTreeRecordingContext.swift
[259/543] Compiling DatadogSessionReplay ViewTreeSnapshot.swift
[260/543] Compiling DatadogSessionReplay ViewTreeSnapshotBuilder.swift
[261/543] Compiling DatadogSessionReplay ViewTreeSnapshotProducer.swift
[262/543] Compiling DatadogSessionReplay WindowViewTreeSnapshotProducer.swift
[263/543] Compiling DatadogSessionReplay AppWindowObserver.swift
[264/543] Compiling DatadogSessionReplay KeyWindowObserver.swift
[265/543] Compiling DatadogSessionReplay SessionReplay+objc.swift
[266/543] Compiling DatadogSessionReplay SessionReplay.swift
[267/543] Compiling DatadogSessionReplay SessionReplayConfiguration.swift
[268/543] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides+objc.swift
[269/543] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides.swift
[270/543] Compiling DatadogSessionReplay UIView+SessionReplayPrivacyOverrides+objc.swift
[275/546] Compiling DatadogSessionReplay WindowTouchSnapshotProducer.swift
[276/546] Compiling DatadogSessionReplay CFType+Safety.swift
[277/546] Compiling DatadogSessionReplay CGImage+SessionReplay.swift
[278/546] Compiling DatadogSessionReplay CGRect+SessionReplay.swift
[279/546] Compiling DatadogSessionReplay CGSize+SessionReplay.swift
[280/546] Compiling DatadogSessionReplay Int64+SessionReplay.swift
[281/546] Compiling DatadogTrace ActiveSpansPool.swift
[282/546] Compiling DatadogTrace Casting.swift
[283/546] Compiling DatadogTrace Warnings.swift
[284/546] Compiling DatadogSessionReplay UIView+SessionReplay.swift
[285/546] Compiling DatadogCrashReporting SwiftExtensions.swift
[286/546] Compiling DatadogSessionReplay Xoshiro.swift
[287/546] Compiling DatadogSessionReplay NodeIDGenerator.swift
[288/546] Compiling DatadogSessionReplay NodeRecorder.swift
[289/546] Compiling DatadogSessionReplay Color+Reflection.swift
[290/546] Compiling DatadogSessionReplay Color.swift
[291/546] Compiling DatadogSessionReplay DisplayList+Reflection.swift
[292/546] Compiling DatadogSessionReplay DisplayList.swift
[293/546] Compiling DatadogSessionReplay Image+Reflection.swift
[294/546] Compiling DatadogSessionReplay Image.swift
[295/546] Compiling DatadogSessionReplay WebViewRecordReceiver.swift
[296/546] Compiling DatadogSessionReplay EnrichedRecord.swift
[297/546] Compiling DatadogCore NetworkConnectionInfoPublisher.swift
[298/546] Compiling DatadogCore ServerOffsetPublisher.swift
[299/546] Compiling DatadogCrashReporting PLCrashReporterPlugin.swift
[300/546] Compiling DatadogCore DatadogCore.swift
[301/546] Compiling DatadogCore MessageBus.swift
[302/546] Compiling DatadogCore DataEncryption.swift
[303/546] Compiling DatadogCore Directories.swift
[304/546] Compiling DatadogWebViewTracking MessageEmitter.swift
[305/546] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[306/546] Emitting module DatadogWebViewTracking
[311/546] Compiling DatadogCore ApplicationStatePublisher.swift
[312/546] Compiling DatadogCore ApplicationVersionPublisher.swift
[313/546] Compiling DatadogCore BatteryStatusPublisher.swift
[314/546] Compiling DatadogCore CarrierInfoPublisher.swift
[315/546] Compiling DatadogCore ContextValuePublisher.swift
[316/546] Compiling DatadogCore DatadogContextProvider.swift
[317/546] Compiling DatadogCore LaunchTimePublisher.swift
[318/546] Compiling DatadogCore LowPowerModePublisher.swift
[325/546] Compiling DatadogCore DataStoreFileWriter.swift
[326/546] Compiling DatadogCore FeatureDataStore.swift
[331/546] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[332/546] Compiling DatadogWebViewTracking WebViewTracking.swift
[333/546] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[346/546] Compiling DatadogSessionReplay CGRectExtensions.swift
[347/546] Compiling DatadogSessionReplay Colors.swift
[348/546] Compiling DatadogSessionReplay Errors.swift
[349/546] Compiling DatadogSessionReplay Queue.swift
[350/546] Compiling DatadogSessionReplay MainThreadScheduler.swift
[351/546] Compiling DatadogSessionReplay Scheduler.swift
[352/546] Compiling DatadogSessionReplay RecordWriter.swift
[353/546] Compiling DatadogSessionReplay ResourcesWriter.swift
[354/546] Compiling DatadogSessionReplay SRCompression.swift
[355/546] Compiling DatadogLogs RemoteLogger.swift
[356/546] Compiling DatadogLogs LogEventMapper.swift
[357/546] Emitting module DatadogTrace
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[373/556] Emitting module DatadogCrashReporting
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
[392/556] Emitting module DatadogCore
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchTimePublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 |     internal import DatadogPrivate
14 |     #else
15 |     @_implementationOnly import DatadogPrivate
   |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 |     #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[459/562] Emitting module DatadogLogs
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[487/562] Compiling DatadogCore BatchMetrics.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[488/562] Compiling DatadogCore BenchmarkURLSessionTaskDelegate.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[489/562] Compiling DatadogCore Cryptography.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[490/562] Compiling DatadogCore Retrying.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[491/562] Compiling DatadogCore Versioning.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[492/562] Compiling DatadogCore resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[502/562] Emitting module DatadogRUM
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:535:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
533 |     internal import DatadogPrivate
534 |     #else
535 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
536 |     #endif
537 | #endif
[553/562] Compiling DatadogRUM ViewEndedController.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[554/562] Compiling DatadogRUM ViewEndedMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[555/562] Compiling DatadogRUM ViewHitchesMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[556/562] Compiling DatadogRUM RUMEventsMapper.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[557/562] Compiling DatadogRUM RUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[558/562] Compiling DatadogRUM RUMUUIDGenerator.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[559/562] Compiling DatadogRUM SwiftUIExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[560/562] Compiling DatadogRUM UIKitExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[561/562] Compiling DatadogRUM ValuePublisher.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[562/562] Compiling DatadogRUM resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
warning: 'spi-builder-workspace': found 130 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUMMonitor+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchTimePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDNSURLSessionDelegate+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/CrashLogReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDNSURLSessionDelegateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceTests.swift
warning: 'spi-builder-workspace': found 51 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
warning: 'spi-builder-workspace': found 7 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
BUILD FAILURE 6.1 macosSpm