The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build Datadog, reference develop (224c14), with Swift 6.1 for macOS (SPM) on 27 Jun 2025 13:45:59 UTC.

Build Command

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

Build Log

503 |             dateProvider: configuration.dateProvider,
504 |             timeZone: .current,
505 |             printFunction: consolePrint,
    |                            `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
506 |             verbosityLevel: { Datadog.verbosityLevel }
507 |         )
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
   |            `- note: var declared here
34 |     #if canImport(OSLog)
35 |     if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:573:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
571 |         let debug = configuration.processInfo.arguments.contains(LaunchArguments.Debug)
572 |         if debug {
573 |             consolePrint("⚠️ Overriding verbosity, upload frequency, and sample rates due to \(LaunchArguments.Debug) launch argument", .warn)
    |             `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
574 |             Datadog.verbosityLevel = .debug
575 |         }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
   |            `- note: var declared here
34 |     #if canImport(OSLog)
35 |     if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Upload/URLSessionClient.swift:40:13: warning: capture of 'completion' with non-sendable type '(Result<HTTPURLResponse, any Error>) -> Void' in a '@Sendable' closure
38 |     func send(request: URLRequest, delegate: URLSessionTaskDelegate?, completion: @escaping (Result<HTTPURLResponse, Error>) -> Void) {
39 |         let task = session.dataTask(with: request) { data, response, error in
40 |             completion(httpClientResult(for: (data, response, error)))
   |             |- warning: capture of 'completion' with non-sendable type '(Result<HTTPURLResponse, any Error>) -> Void' in a '@Sendable' closure
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
41 |         }
42 |         if #available(iOS 15.0, tvOS 15.0, watchOS 8.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:458:9: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
456 |
457 |         #if os(macOS)
458 |         consolePrint("⚠️ macOS is not officially supported by Datadog SDK: some features may NOT be functional!", .warn)
    |         `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
459 |         #endif
460 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
   |            `- note: var declared here
34 |     #if canImport(OSLog)
35 |     if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:472:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
470 |             )
471 |         } catch {
472 |             consolePrint("\(error)", .error)
    |             `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
473 |             return NOPDatadogCore()
474 |         }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
   |            `- note: var declared here
34 |     #if canImport(OSLog)
35 |     if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:502:12: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
500 |         deleteV1Folders(in: core)
501 |
502 |         DD.logger = InternalLogger(
    |            `- 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
503 |             dateProvider: configuration.dateProvider,
504 |             timeZone: .current,
/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/DatadogCore/Sources/Datadog.swift:505:28: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
503 |             dateProvider: configuration.dateProvider,
504 |             timeZone: .current,
505 |             printFunction: consolePrint,
    |                            `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
506 |             verbosityLevel: { Datadog.verbosityLevel }
507 |         )
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
   |            `- note: var declared here
34 |     #if canImport(OSLog)
35 |     if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Datadog.swift:573:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
571 |         let debug = configuration.processInfo.arguments.contains(LaunchArguments.Debug)
572 |         if debug {
573 |             consolePrint("⚠️ Overriding verbosity, upload frequency, and sample rates due to \(LaunchArguments.Debug) launch argument", .warn)
    |             `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
574 |             Datadog.verbosityLevel = .debug
575 |         }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
   |            `- note: var declared here
34 |     #if canImport(OSLog)
35 |     if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
   |                `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 |     /// Current and active integration with CIApp.
17 |     /// `nil` if the integration is not enabled.
18 |     static let active: CITestIntegration? = CITestIntegration()
   |                |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     /// RUMCITest model to be attached to events, it contains the CI context
20 |     let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
   |                `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 |     /// Current and active integration with CIApp.
17 |     /// `nil` if the integration is not enabled.
18 |     static let active: CITestIntegration? = CITestIntegration()
   |                |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     /// RUMCITest model to be attached to events, it contains the CI context
20 |     let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
   |                `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 |     /// Current and active integration with CIApp.
17 |     /// `nil` if the integration is not enabled.
18 |     static let active: CITestIntegration? = CITestIntegration()
   |                |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     /// RUMCITest model to be attached to events, it contains the CI context
20 |     let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
   |                `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 |     /// Current and active integration with CIApp.
17 |     /// `nil` if the integration is not enabled.
18 |     static let active: CITestIntegration? = CITestIntegration()
   |                |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     /// RUMCITest model to be attached to events, it contains the CI context
20 |     let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
   |                `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 |     /// Current and active integration with CIApp.
17 |     /// `nil` if the integration is not enabled.
18 |     static let active: CITestIntegration? = CITestIntegration()
   |                |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     /// RUMCITest model to be attached to events, it contains the CI context
20 |     let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
   |                `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 |     /// Current and active integration with CIApp.
17 |     /// `nil` if the integration is not enabled.
18 |     static let active: CITestIntegration? = CITestIntegration()
   |                |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     /// RUMCITest model to be attached to events, it contains the CI context
20 |     let testExecutionId: String
/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/652] Compiling DatadogRUM VitalRefreshRateReader.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 |
[564/652] Compiling DatadogRUM VitalCPUReader.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 |
[565/652] Compiling DatadogRUM VitalInfo.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 |
[566/652] Compiling DatadogRUM VitalInfoSampler.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 |
[567/652] Compiling DatadogRUM VitalMemoryReader.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 |
[568/652] Compiling DatadogRUM SessionEndedMetric.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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[569/652] 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 |
[592/652] 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),
[593/652] 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,
[594/652] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[595/652] 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 |     }
[596/652] 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 |
[597/652] Compiling DatadogRUM SessionEndedMetricController.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 |
[598/652] 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 |
[599/652] 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 |
[600/652] 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 |
[601/652] 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 |
[602/652] 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 |
[603/652] 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 |
[604/652] 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 |
[605/652] 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 |
[606/652] 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 |
[607/652] 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 |
/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 |
warning: 'spi-builder-workspace': found 134 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/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.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/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDNSURLSessionDelegate+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDNSURLSessionDelegateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/CrashLogReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /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/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchTimePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUMMonitor+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
warning: 'spi-builder-workspace': found 53 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.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/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.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/CrashReportMinifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.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/204] Compiling DatadogInternal Data+Crypto.swift
[3/204] Compiling DatadogInternal DatadogExtended.swift
[4/204] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[5/204] Compiling DatadogInternal Foundation+Datadog.swift
[6/204] Compiling DatadogInternal InternalExtended.swift
[7/204] Compiling DatadogInternal TimeInterval+Convenience.swift
[8/204] Compiling DatadogInternal FeatureMessage.swift
[9/204] Compiling DatadogInternal FeatureMessageReceiver.swift
[10/204] Compiling DatadogInternal BacktraceReport.swift
[11/204] Compiling DatadogInternal BinaryImage.swift
[12/204] Compiling DatadogInternal Crash.swift
[13/214] Compiling DatadogInternal URLSessionInstrumentation.swift
[14/214] Compiling DatadogInternal URLSessionInterceptor.swift
[15/214] Compiling DatadogInternal URLSessionSwizzler.swift
[16/214] Compiling DatadogInternal Sysctl.swift
[17/214] Compiling DatadogInternal TrackingConsent.swift
[18/214] Compiling DatadogInternal UserInfo.swift
[19/214] Compiling DatadogInternal CoreRegistry.swift
[20/214] Compiling DatadogInternal DD.swift
[21/214] Compiling DatadogInternal DataStore.swift
[22/214] Compiling DatadogInternal DatadogCoreProtocol.swift
[23/214] Compiling DatadogInternal DatadogFeature.swift
[24/214] Compiling DatadogInternal WebViewMessage.swift
[25/214] Compiling DatadogInternal B3HTTPHeaders.swift
[26/214] Compiling DatadogInternal B3HTTPHeadersReader.swift
[27/214] Compiling DatadogInternal TraceContextInjection.swift
[28/214] Compiling DatadogInternal TracePropagationHeadersReader.swift
[29/214] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[30/214] Compiling DatadogInternal TracingHeaderType.swift
[31/214] Compiling DatadogInternal DatadogURLSessionDelegate.swift
[32/214] Compiling DatadogInternal ImmutableRequest.swift
[33/214] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[34/214] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[35/214] Compiling DatadogInternal AccountInfo.swift
[36/214] Compiling DatadogInternal AppState.swift
[37/214] Compiling DatadogInternal ApplicationNotifications.swift
[38/214] Compiling DatadogInternal BatteryStatus.swift
[39/214] Compiling DatadogInternal BrightnessLevel.swift
[40/214] Compiling DatadogInternal BundleType.swift
[41/214] Compiling DatadogInternal CarrierInfo.swift
[42/214] Compiling DatadogInternal DatadogContext.swift
[43/214] Compiling DatadogInternal DatadogSite.swift
[44/214] Compiling DatadogInternal DateProvider.swift
[45/214] Compiling DatadogInternal DeviceInfo.swift
[46/214] Compiling DatadogInternal UploadQualityMetric.swift
[47/214] Compiling DatadogInternal Storage.swift
[48/214] Compiling DatadogInternal LogMessage.swift
[49/214] Compiling DatadogInternal RUMCoreContext.swift
[50/214] Compiling DatadogInternal RUMDataModels.swift
[51/214] Compiling DatadogInternal RUMPayloadMessages.swift
[52/214] Compiling DatadogInternal SessionReplayConfiguration.swift
[53/214] Compiling DatadogInternal SessionReplayCoreContext.swift
[54/214] Compiling DatadogInternal SpanCoreContext.swift
[55/214] Compiling DatadogInternal SpanID.swift
[56/214] Compiling DatadogInternal TraceID.swift
[57/214] Compiling DatadogInternal LaunchTime.swift
[58/214] Compiling DatadogInternal NetworkConnectionInfo.swift
[59/214] Compiling DatadogInternal URLSessionTask+Tracking.swift
[60/214] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
[61/214] Compiling DatadogInternal URLSessionTaskInterception.swift
[62/214] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[63/214] Compiling DatadogInternal W3CHTTPHeaders.swift
[64/214] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[65/214] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[66/214] Compiling DatadogInternal MethodCalledMetric.swift
[67/214] Compiling DatadogInternal SDKMetricFields.swift
[79/225] Emitting module OpenTelemetryApi
[80/225] Compiling DatadogInternal Attributes.swift
[81/225] Compiling DatadogInternal AttributesSanitizer.swift
[82/225] Compiling DatadogInternal BacktraceReporter.swift
[83/225] Compiling DatadogInternal BacktraceReportingFeature.swift
[84/225] Compiling DatadogInternal BenchmarkProfiler.swift
[85/225] Compiling DatadogInternal AnyCodable.swift
[86/225] Compiling DatadogInternal AnyDecodable.swift
[87/225] Compiling DatadogInternal AnyEncodable.swift
[88/225] Compiling DatadogInternal DynamicCodingKey.swift
[89/225] Compiling DatadogInternal Flushable.swift
[90/225] Compiling DatadogInternal ReadWriteLock.swift
[91/225] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[92/225] Compiling DatadogInternal HTTPHeadersReader.swift
[93/225] Compiling DatadogInternal HTTPHeadersWriter.swift
[94/225] Compiling DatadogInternal TracingHTTPHeaders.swift
[95/225] Compiling DatadogInternal DatadogURLSessionHandler.swift
[96/225] Compiling OpenTelemetryApi PropagatedSpan.swift
[97/225] Compiling OpenTelemetryApi PropagatedSpanBuilder.swift
[98/225] Compiling OpenTelemetryApi B3Propagator.swift
[99/225] Compiling OpenTelemetryApi BinaryFormattable.swift
[100/225] Compiling OpenTelemetryApi JaegerPropagator.swift
[101/225] Compiling OpenTelemetryApi TextMapPropagator.swift
[102/225] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[103/225] Compiling OpenTelemetryApi SemanticAttributes.swift
[104/225] Compiling OpenTelemetryApi Span.swift
[105/225] Compiling OpenTelemetryApi SpanBuilder.swift
[106/225] Compiling OpenTelemetryApi SpanContext.swift
[107/225] Compiling OpenTelemetryApi SpanException.swift
[108/225] Compiling OpenTelemetryApi SpanId.swift
[109/225] Compiling OpenTelemetryApi SpanKind.swift
[110/225] Compiling OpenTelemetryApi Status.swift
[111/225] Compiling OpenTelemetryApi TraceFlags.swift
[112/225] Compiling OpenTelemetryApi TraceId.swift
[120/225] Compiling DatadogInternal URLRequestBuilder.swift
[121/225] Compiling DatadogInternal UploadPerformancePreset.swift
[122/225] Compiling DatadogInternal CustomDump.swift
[123/225] Compiling DatadogInternal CrashContext.swift
[124/225] Compiling DatadogInternal DDCrashReport.swift
[125/225] Compiling DatadogInternal DDThread.swift
[126/225] Compiling DatadogInternal LaunchReport.swift
[127/225] Compiling DatadogInternal LogEventAttributes.swift
/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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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 {
    |             `- 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/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 |
[194/225] Compiling DatadogInternal DDError.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 |
[195/225] Compiling DatadogInternal DateFormatting.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 |
[196/225] Compiling DatadogInternal ReflectionMirror.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 |
[197/225] Compiling DatadogInternal Reflector.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 |
[198/225] Compiling DatadogInternal Sampler.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 |
[199/225] 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 |
[200/225] 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 |
[201/225] 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 |
[202/225] 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 {
    |             `- 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 |
[226/543] Emitting module DatadogSessionReplay
[227/552] Compiling DatadogSessionReplay AppWindowObserver.swift
[228/552] Compiling DatadogSessionReplay KeyWindowObserver.swift
[229/552] Compiling DatadogSessionReplay SessionReplay+objc.swift
[230/552] Compiling DatadogRUM RUMResourceScope.swift
[231/552] Compiling DatadogRUM RUMScopeDependencies.swift
[232/552] Compiling DatadogRUM RUMSessionScope.swift
[233/552] Compiling DatadogRUM RUMUserActionScope.swift
[234/552] Compiling DatadogRUM RUMViewScope.swift
[235/552] Compiling DatadogRUM RUMOffViewEventsHandlingRule.swift
[236/552] Compiling DatadogCrashReporting ThirdPartyCrashReporter.swift
[237/553] Compiling DatadogSessionReplay UIViewRecorder.swift
[238/553] Compiling DatadogSessionReplay UnsupportedViewRecorder.swift
[239/553] Compiling DatadogSessionReplay WKWebViewRecorder.swift
[240/553] Compiling DatadogSessionReplay ViewTreeRecorder.swift
[241/553] Compiling DatadogSessionReplay ViewTreeRecordingContext.swift
[242/553] Compiling DatadogSessionReplay ViewTreeSnapshot.swift
[243/553] Compiling DatadogSessionReplay ViewTreeSnapshotBuilder.swift
[244/553] Compiling DatadogRUM RUMMonitor.swift
[245/553] Compiling DatadogRUM Monitor.swift
[246/553] Compiling DatadogCore BackgroundTaskCoordinator.swift
[247/553] Compiling DatadogCore DataUploadConditions.swift
[248/553] Compiling DatadogCore DataUploadDelay.swift
[249/553] Compiling DatadogCore DataUploadStatus.swift
[250/553] Compiling DatadogCore DataUploadWorker.swift
[251/553] Compiling DatadogCore DataStore+TLV.swift
[252/553] Compiling DatadogCore DataStoreFileReader.swift
[253/553] Compiling DatadogCore DataStoreFileWriter.swift
[254/553] Compiling DatadogCore FeatureDataStore.swift
[255/553] Compiling DatadogCore DatadogCore.swift
[256/553] Compiling DatadogCore MessageBus.swift
[257/553] Compiling DatadogCore DataEncryption.swift
[258/553] Compiling DatadogCore KronosNTPClient.swift
[259/553] Compiling DatadogCore KronosNTPPacket.swift
[260/553] Compiling DatadogCore KronosNTPProtocol.swift
[261/553] Compiling DatadogCore KronosTimeFreeze.swift
[262/553] Compiling DatadogCore KronosTimeStorage.swift
[263/553] Compiling DatadogCore PerformancePreset.swift
[264/553] Compiling DatadogSessionReplay UIPickerViewRecorder.swift
[265/553] Compiling DatadogSessionReplay UIProgressViewRecorder.swift
[266/553] Compiling DatadogSessionReplay UISegmentRecorder.swift
[267/553] Compiling DatadogSessionReplay UISliderRecorder.swift
[268/553] Compiling DatadogSessionReplay UIStepperRecorder.swift
[269/553] Compiling DatadogSessionReplay UISwitchRecorder.swift
[270/553] Compiling DatadogSessionReplay UITabBarRecorder.swift
[271/553] Compiling DatadogSessionReplay UITextFieldRecorder.swift
[272/553] Compiling DatadogSessionReplay UITextViewRecorder.swift
[273/553] Compiling DatadogCore Directory.swift
[274/553] Compiling DatadogCore File.swift
[275/553] Compiling DatadogCore FilesOrchestrator.swift
[276/553] Compiling DatadogCore DataReader.swift
[277/553] Compiling DatadogCore DatadogContextProvider.swift
[278/553] Compiling DatadogCore LaunchTimePublisher.swift
[279/553] Compiling DatadogCore LowPowerModePublisher.swift
[280/553] Compiling DatadogCore NetworkConnectionInfoPublisher.swift
[281/553] Compiling DatadogCore ServerOffsetPublisher.swift
[282/553] Compiling DatadogCore TrackingConsentPublisher.swift
[283/553] Compiling DatadogLogs Logs+Internal.swift
[284/554] Compiling DatadogCrashReporting SwiftExtensions.swift
[285/554] Compiling DatadogCrashReporting PLCrashReporterPlugin.swift
[288/554] Compiling DatadogCore AccountInfoPublisher.swift
[289/554] Compiling DatadogCore ApplicationStatePublisher.swift
[290/554] Compiling DatadogCore ApplicationVersionPublisher.swift
[291/554] Compiling DatadogCore BatteryStatusPublisher.swift
[292/554] Compiling DatadogCore BrightnessLevelPublisher.swift
[293/554] Compiling DatadogCore CarrierInfoPublisher.swift
[294/554] Compiling DatadogCore ContextValuePublisher.swift
[295/558] Compiling DatadogCore URLSessionClient.swift
[296/558] Compiling DatadogCore Datadog+Internal.swift
[297/559] Compiling DatadogCore Datadog.swift
[298/559] Compiling DatadogCore CITestIntegration.swift
[299/559] Compiling DatadogCore KronosClock.swift
[300/559] Compiling DatadogCore KronosDNSResolver.swift
[301/559] Compiling DatadogCore KronosData+Bytes.swift
[302/559] Compiling DatadogCore KronosInternetAddress.swift
[303/559] Compiling DatadogCore KronosNSTimer+ClosureKit.swift
[304/559] Compiling DatadogCore TLVBlockReader.swift
[305/560] Compiling DatadogCore UserInfoPublisher.swift
[306/560] Compiling DatadogCore FileReader.swift
[307/560] Compiling DatadogCore Reader.swift
[308/560] Compiling DatadogCore Storage+TLV.swift
[309/560] Compiling DatadogCore AsyncWriter.swift
[310/560] Compiling DatadogCore FileWriter.swift
[311/560] Compiling DatadogCore TLVBlock.swift
[312/560] Compiling DatadogCore DataUploader.swift
[313/560] Compiling DatadogCore FeatureUpload.swift
[314/560] Compiling DatadogCore HTTPClient.swift
[315/560] Compiling DatadogCore EventGenerator.swift
[316/560] Compiling DatadogCore FeatureStorage.swift
[324/560] Compiling DatadogCore Directories.swift
[333/563] Compiling DatadogWebViewTracking WebViewTracking.swift
[334/563] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[337/563] Compiling DatadogCrashReporting PLCrashReporterIntegration.swift
[341/563] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[342/563] Compiling DatadogWebViewTracking MessageEmitter.swift
[343/563] Emitting module DatadogWebViewTracking
[344/563] Compiling DatadogLogs Logs.swift
[345/563] Compiling DatadogLogs RemoteLogger.swift
[346/563] Compiling DatadogSessionReplay CGRectExtensions.swift
[347/563] Compiling DatadogSessionReplay Colors.swift
[348/563] Compiling DatadogSessionReplay Errors.swift
[349/563] Compiling DatadogSessionReplay Queue.swift
[350/563] Compiling DatadogSessionReplay MainThreadScheduler.swift
[351/563] Compiling DatadogSessionReplay Scheduler.swift
[352/563] Compiling DatadogSessionReplay RecordWriter.swift
[353/563] Compiling DatadogSessionReplay ResourcesWriter.swift
[354/563] Compiling DatadogSessionReplay SRCompression.swift
[363/563] Emitting module DatadogTrace
[364/563] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[377/563] Compiling DatadogLogs LogEventMapper.swift
[378/563] Emitting module DatadogLogs
[385/563] 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:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #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 |
[387/563] Compiling DatadogTrace ActiveSpansPool.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 |
[388/563] Compiling DatadogTrace Casting.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 |
[389/563] Compiling DatadogTrace Warnings.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 |
/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 |
[438/574] Emitting module DatadogCrashReporting
[450/574] Compiling DatadogCore BatchMetrics.swift
[451/574] Compiling DatadogCore BenchmarkURLSessionTaskDelegate.swift
[452/574] Compiling DatadogCore Cryptography.swift
[453/574] Compiling DatadogCore Retrying.swift
[454/574] Compiling DatadogCore Versioning.swift
[455/574] 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 |
/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 |
[461/574] Compiling DatadogRUM VitalRefreshRateReader.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 |
[462/574] Compiling DatadogRUM VitalCPUReader.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 |
[463/574] Compiling DatadogRUM VitalInfo.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 |
[464/574] Compiling DatadogRUM VitalInfoSampler.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 |
[465/574] Compiling DatadogRUM VitalMemoryReader.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 |
[466/574] Compiling DatadogRUM SessionEndedMetric.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 |
/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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[485/574] 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/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:601:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
599 |     internal import DatadogPrivate
600 |     #else
601 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
602 |     #endif
603 | #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
/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/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 |
[564/574] Compiling DatadogRUM SessionEndedMetricController.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 |
[565/574] 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 |
[566/574] 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 |
[567/574] 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 |
[568/574] 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 |
[569/574] 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 |
[570/574] 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 |
[571/574] 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 |
[572/574] 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 |
[573/574] 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 |
[574/574] 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 134 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDNSURLSessionDelegate+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/CrashLogReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchTimePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.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/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.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/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /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/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMViewsPredicateTests.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/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDNSURLSessionDelegateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDDatadog+apiTests.m
warning: 'spi-builder-workspace': found 53 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.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/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.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/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.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/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.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/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.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/RUMMonitor/Scopes/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.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/DDCrashReportBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
BUILD FAILURE 6.1 macosSpm