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 (0ece71), with Swift 6.1 for macOS (SPM) on 16 Jun 2025 14:39:03 UTC.

Build Command

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

Build Log

12 | /// Logging, Tracing or RUM and upload it to Datadog servers.
13 | public enum TrackingConsent: Codable {
   |             `- note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
14 |     /// The permission to persist and send data to the Datadog servers was granted.
15 |     /// Any previously stored pending data will be marked as ready for sent.
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
  6 |
  7 | import Foundation
  8 | import DatadogInternal
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
  9 |
 10 | internal struct FeatureStorage {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:67:25: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 65 |                 switch consent {
 66 |                 case .notGranted:
 67 |                     try directories.unauthorized.deleteAllFiles()
    |                         `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 68 |                 case .granted:
 69 |                     try directories.unauthorized.moveAllFiles(to: directories.authorized)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:85:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 83 |         queue.async {
 84 |             do {
 85 |                 try directories.unauthorized.deleteAllFiles()
    |                     `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 86 |             } catch {
 87 |                 telemetry.error("Failed clear unauthorized data in \(featureName)", error: error)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:95:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 93 |         queue.async {
 94 |             do {
 95 |                 try directories.unauthorized.deleteAllFiles()
    |                     `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 96 |                 try directories.authorized.deleteAllFiles()
 97 |             } catch {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:125:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
123 |
124 |         if trackName == nil {
125 |             DD.logger.error("Can't determine track name for feature named '\(featureName)'")
    |                `- 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
126 |         }
127 |
/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/Core/Storage/FeatureStorage.swift:65:24: warning: capture of 'consent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
 63 |         queue.async {
 64 |             do {
 65 |                 switch consent {
    |                        `- warning: capture of 'consent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
 66 |                 case .notGranted:
 67 |                     try directories.unauthorized.deleteAllFiles()
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
11 | /// This value should be used to grant the permission for Datadog SDK to store data collected in
12 | /// Logging, Tracing or RUM and upload it to Datadog servers.
13 | public enum TrackingConsent: Codable {
   |             `- note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
14 |     /// The permission to persist and send data to the Datadog servers was granted.
15 |     /// Any previously stored pending data will be marked as ready for sent.
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
  6 |
  7 | import Foundation
  8 | import DatadogInternal
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
  9 |
 10 | internal struct FeatureStorage {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:67:25: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 65 |                 switch consent {
 66 |                 case .notGranted:
 67 |                     try directories.unauthorized.deleteAllFiles()
    |                         `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 68 |                 case .granted:
 69 |                     try directories.unauthorized.moveAllFiles(to: directories.authorized)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:85:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 83 |         queue.async {
 84 |             do {
 85 |                 try directories.unauthorized.deleteAllFiles()
    |                     `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 86 |             } catch {
 87 |                 telemetry.error("Failed clear unauthorized data in \(featureName)", error: error)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:95:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 93 |         queue.async {
 94 |             do {
 95 |                 try directories.unauthorized.deleteAllFiles()
    |                     `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 96 |                 try directories.authorized.deleteAllFiles()
 97 |             } catch {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:125:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
123 |
124 |         if trackName == nil {
125 |             DD.logger.error("Can't determine track name for feature named '\(featureName)'")
    |                `- 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
126 |         }
127 |
/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/Core/Storage/FeatureStorage.swift:65:24: warning: capture of 'consent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
 63 |         queue.async {
 64 |             do {
 65 |                 switch consent {
    |                        `- warning: capture of 'consent' with non-sendable type 'TrackingConsent' in a '@Sendable' closure
 66 |                 case .notGranted:
 67 |                     try directories.unauthorized.deleteAllFiles()
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/TrackingConsent.swift:13:13: note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
11 | /// This value should be used to grant the permission for Datadog SDK to store data collected in
12 | /// Logging, Tracing or RUM and upload it to Datadog servers.
13 | public enum TrackingConsent: Codable {
   |             `- note: enum 'TrackingConsent' does not conform to the 'Sendable' protocol
14 |     /// The permission to persist and send data to the Datadog servers was granted.
15 |     /// Any previously stored pending data will be marked as ready for sent.
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
  6 |
  7 | import Foundation
  8 | import DatadogInternal
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
  9 |
 10 | internal struct FeatureStorage {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:67:25: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 65 |                 switch consent {
 66 |                 case .notGranted:
 67 |                     try directories.unauthorized.deleteAllFiles()
    |                         `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 68 |                 case .granted:
 69 |                     try directories.unauthorized.moveAllFiles(to: directories.authorized)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:85:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 83 |         queue.async {
 84 |             do {
 85 |                 try directories.unauthorized.deleteAllFiles()
    |                     `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 86 |             } catch {
 87 |                 telemetry.error("Failed clear unauthorized data in \(featureName)", error: error)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:95:21: warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
  8 | import DatadogInternal
  9 |
 10 | internal struct FeatureStorage {
    |                 `- note: consider making struct 'FeatureStorage' conform to the 'Sendable' protocol
 11 |     /// The name of this Feature, used to distinguish storage instances in telemetry and logs.
 12 |     let featureName: String
    :
 93 |         queue.async {
 94 |             do {
 95 |                 try directories.unauthorized.deleteAllFiles()
    |                     `- warning: capture of 'self' with non-sendable type 'FeatureStorage' in a '@Sendable' closure
 96 |                 try directories.authorized.deleteAllFiles()
 97 |             } catch {
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Storage/FeatureStorage.swift:125:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
123 |
124 |         if trackName == nil {
125 |             DD.logger.error("Can't determine track name for feature named '\(featureName)'")
    |                `- 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
126 |         }
127 |
/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/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[548/649] Compiling DatadogRUM CrashReportReceiver.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 |
[549/649] Compiling DatadogRUM ErrorMessageReceiver.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 |
[550/649] Compiling DatadogRUM FatalErrorContextNotifier.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 |
[551/649] Compiling DatadogRUM RUMContextAttributes.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 |
[552/649] Compiling DatadogRUM SessionReplayDependency.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 |
[553/649] Compiling DatadogRUM TelemetryInterceptor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[554/649] Compiling DatadogRUM TelemetryReceiver.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)
[566/649] Emitting module DatadogRUM
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.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/649] 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 |
[602/649] 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),
[603/649] 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 |     }
[604/649] 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,
[605/649] Compiling DatadogWebViewTracking WebViewTracking+objc.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 |
[639/649] 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 |
[640/649] 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 |
[641/649] 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 |
[642/649] 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 |
[643/649] 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 |
[644/649] 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 |
[645/649] 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 |
[646/649] 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 |
[647/649] 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 |
[648/649] 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 |
[649/649] 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 133 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDNSURLSessionDelegate+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDNSURLSessionDelegateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/CrashLogReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchTimePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUMMonitor+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.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/DatadogObjc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.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/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.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/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.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/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.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/Instrumentation/Actions/SwiftUIComponentDetectorTests.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/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
warning: 'spi-builder-workspace': found 7 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.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/203] Compiling DatadogInternal NetworkConnectionInfo.swift
[3/203] Compiling DatadogInternal Sysctl.swift
[4/203] Compiling DatadogInternal TrackingConsent.swift
[5/203] Compiling DatadogInternal UserInfo.swift
[6/203] Compiling DatadogInternal CoreRegistry.swift
[7/203] Compiling DatadogInternal DD.swift
[8/203] Compiling DatadogInternal DataStore.swift
[9/203] Compiling DatadogInternal DatadogCoreProtocol.swift
[10/203] Compiling DatadogInternal DatadogFeature.swift
[11/203] Compiling DatadogInternal Data+Crypto.swift
[12/203] Compiling DatadogInternal DatadogExtended.swift
[13/203] Compiling DatadogInternal AccountInfo.swift
[14/203] Compiling DatadogInternal AppState.swift
[15/203] Compiling DatadogInternal ApplicationNotifications.swift
[16/203] Compiling DatadogInternal BatteryStatus.swift
[17/203] Compiling DatadogInternal BundleType.swift
[18/203] Compiling DatadogInternal CarrierInfo.swift
[19/203] Compiling DatadogInternal DatadogContext.swift
[20/203] Compiling DatadogInternal DatadogSite.swift
[21/203] Compiling DatadogInternal DateProvider.swift
[22/203] Compiling DatadogInternal DeviceInfo.swift
[23/203] Compiling DatadogInternal LaunchTime.swift
[24/213] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[25/213] Compiling DatadogInternal Foundation+Datadog.swift
[26/213] Compiling DatadogInternal InternalExtended.swift
[27/213] Compiling DatadogInternal TimeInterval+Convenience.swift
[28/213] Compiling DatadogInternal FeatureMessage.swift
[29/213] Compiling DatadogInternal FeatureMessageReceiver.swift
[30/213] Compiling DatadogInternal BacktraceReport.swift
[31/213] Compiling DatadogInternal BinaryImage.swift
[32/213] Compiling DatadogInternal Crash.swift
[33/213] Compiling DatadogInternal CrashContext.swift
[34/213] Compiling DatadogInternal DDCrashReport.swift
[35/213] Compiling DatadogInternal FirstPartyHosts.swift
[36/213] Compiling DatadogInternal HostsSanitizer.swift
[37/213] Compiling DatadogInternal NetworkContext.swift
[38/213] Compiling DatadogInternal NetworkContextProvider.swift
[39/213] Compiling DatadogInternal NetworkInstrumentationFeature.swift
[40/213] Compiling DatadogInternal TraceContext.swift
[41/213] Compiling DatadogInternal RUMCoreContext.swift
[42/213] Compiling DatadogInternal RUMDataModels.swift
[43/213] Compiling DatadogInternal RUMPayloadMessages.swift
[44/213] Compiling DatadogInternal SessionReplayConfiguration.swift
[45/213] Compiling DatadogInternal SessionReplayCoreContext.swift
[46/213] Compiling DatadogInternal TraceContextInjection.swift
[47/213] Compiling DatadogInternal TracePropagationHeadersReader.swift
[48/213] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[49/213] Compiling DatadogInternal TracingHeaderType.swift
[50/213] Compiling DatadogInternal DatadogURLSessionDelegate.swift
[51/213] Compiling DatadogInternal ImmutableRequest.swift
[52/213] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[53/213] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[54/213] Compiling DatadogInternal URLSessionInstrumentation.swift
[55/213] Compiling DatadogInternal URLSessionInterceptor.swift
[56/213] Compiling DatadogInternal URLSessionSwizzler.swift
[57/213] Compiling DatadogInternal URLSessionTask+Tracking.swift
[58/213] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
[59/213] Compiling DatadogInternal URLSessionTaskInterception.swift
[60/213] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[61/213] Compiling DatadogInternal W3CHTTPHeaders.swift
[62/213] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[63/213] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[64/213] Compiling DatadogInternal MethodCalledMetric.swift
[65/213] Compiling DatadogInternal SDKMetricFields.swift
[66/213] Compiling DatadogInternal UploadQualityMetric.swift
[67/213] Compiling DatadogInternal Storage.swift
[68/224] Emitting module OpenTelemetryApi
[69/224] Compiling DatadogInternal Attributes.swift
[70/224] Compiling DatadogInternal AttributesSanitizer.swift
[71/224] Compiling DatadogInternal BacktraceReporter.swift
[72/224] Compiling DatadogInternal BacktraceReportingFeature.swift
[73/224] Compiling DatadogInternal BenchmarkProfiler.swift
[74/224] Compiling DatadogInternal AnyCodable.swift
[75/224] Compiling DatadogInternal AnyDecodable.swift
[76/224] Compiling DatadogInternal AnyEncodable.swift
[77/224] Compiling DatadogInternal DynamicCodingKey.swift
[78/224] Compiling DatadogInternal Flushable.swift
[79/224] Compiling DatadogInternal ReadWriteLock.swift
[84/224] Compiling DatadogInternal PerformancePresetOverride.swift
[85/224] Compiling DatadogInternal Writer.swift
[86/224] Compiling DatadogInternal MethodSwizzler.swift
[87/224] Compiling DatadogInternal CoreLogger.swift
[88/224] Compiling DatadogInternal InternalLogger.swift
[89/224] Compiling DatadogInternal Telemetry.swift
[101/224] Compiling DatadogInternal DDThread.swift
[102/224] Compiling DatadogInternal LaunchReport.swift
[103/224] Compiling DatadogInternal LogEventAttributes.swift
[104/224] Compiling DatadogInternal LogMessage.swift
[112/224] Compiling DatadogInternal DataCompression.swift
[113/224] Compiling DatadogInternal DataFormat.swift
[114/224] Compiling DatadogInternal DefaultJSONEncoder.swift
[115/224] Compiling DatadogInternal Event.swift
[116/224] Compiling DatadogInternal FeatureRequestBuilder.swift
[117/224] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[118/224] Compiling DatadogInternal HTTPHeadersReader.swift
[119/224] Compiling DatadogInternal HTTPHeadersWriter.swift
[120/224] Compiling DatadogInternal TracingHTTPHeaders.swift
[121/224] Compiling DatadogInternal DatadogURLSessionHandler.swift
[144/224] Compiling OpenTelemetryApi SpanContext.swift
[145/224] Compiling OpenTelemetryApi SpanException.swift
[146/224] Compiling OpenTelemetryApi SpanId.swift
[147/224] Compiling OpenTelemetryApi SpanKind.swift
[148/224] Compiling OpenTelemetryApi Status.swift
[149/224] Compiling OpenTelemetryApi TraceFlags.swift
[150/224] Compiling DatadogInternal URLRequestBuilder.swift
[151/224] Compiling DatadogInternal UploadPerformancePreset.swift
[152/224] Compiling DatadogInternal CustomDump.swift
[153/224] Compiling DatadogInternal DDError.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 |
/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/224] 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 |
[195/224] 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 |
[196/224] 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 |
[197/224] 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 |
[198/224] 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 |
[199/224] 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 |
[200/224] 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 |
[201/224] 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 |
[225/540] Compiling DatadogRUM RUMEventBuilder.swift
[226/540] Compiling DatadogRUM RUMEventSanitizer.swift
[227/540] Compiling DatadogRUM RUMOperatingSystemInfo.swift
[228/540] Compiling DatadogRUM RUMUser.swift
[229/540] Compiling DatadogRUM INVMetric.swift
[230/540] Compiling DatadogRUM NetworkSettledResourcePredicate.swift
[231/540] Compiling DatadogRUM NextViewActionPredicate.swift
[232/540] Compiling DatadogRUM TNSMetric.swift
[233/540] Compiling DatadogRUM RUMMonitor.swift
[234/549] Compiling DatadogCrashReporting ThirdPartyCrashReporter.swift
[235/550] Compiling DatadogSessionReplay SwiftUIWireframesBuilder.swift
[236/550] Compiling DatadogSessionReplay Text+Reflection.swift
[237/550] Compiling DatadogSessionReplay Text.swift
[238/550] Compiling DatadogSessionReplay UIActivityIndicatorRecorder.swift
[239/550] Compiling DatadogSessionReplay UIDatePickerRecorder.swift
[240/550] Compiling DatadogSessionReplay UIHostingViewRecorder.swift
[241/550] Compiling DatadogSessionReplay UIImageResource.swift
[242/550] Compiling DatadogRUM TelemetryReceiver.swift
[243/550] Compiling DatadogRUM WebViewEventReceiver.swift
[244/550] Compiling DatadogCrashReporting SwiftExtensions.swift
[245/550] Emitting module DatadogSessionReplay
[246/550] Compiling DatadogCrashReporting PLCrashReporterPlugin.swift
[247/550] Compiling DatadogRUM RUM+Internal.swift
[248/550] Compiling DatadogRUM RUM.swift
[249/550] Compiling DatadogRUM RUMConfiguration.swift
[250/550] Compiling DatadogRUM AccessibilityReader.swift
[251/550] Compiling DatadogRUM RUMContext.swift
[252/550] Compiling DatadogRUM RUMContextProvider.swift
[253/550] Compiling DatadogRUM RUMAccount.swift
[254/550] Compiling DatadogRUM RUMConnectivityInfoProvider.swift
[255/550] Compiling DatadogRUM RUMDeviceInfo.swift
[256/550] Compiling DatadogRUM Monitor.swift
[257/550] Compiling DatadogRUM RUMCommand.swift
[258/550] Compiling DatadogRUM RUMScope.swift
[259/550] Compiling DatadogRUM RUMApplicationScope.swift
[260/550] Compiling DatadogRUM RUMResourceScope.swift
[261/550] Compiling DatadogRUM RUMScopeDependencies.swift
[262/550] Compiling DatadogRUM RUMSessionScope.swift
[263/550] Compiling DatadogRUM RUMUserActionScope.swift
[264/550] Compiling DatadogRUM RUMViewScope.swift
[265/550] Compiling DatadogSessionReplay EnrichedRecord.swift
[266/550] Compiling DatadogSessionReplay EnrichedResource.swift
[267/551] Compiling DatadogSessionReplay ResourcesProcessor.swift
[268/551] Compiling DatadogSessionReplay SnapshotProcessor.swift
[269/551] Compiling DatadogSessionReplay PrivacyLevel.swift
[270/551] Compiling DatadogSessionReplay Recorder.swift
[271/551] Compiling DatadogSessionReplay RecordingCoordinator.swift
[272/551] Compiling DatadogSessionReplay TouchIdentifierGenerator.swift
[273/551] Compiling DatadogSessionReplay TouchSnapshot.swift
[274/551] Compiling DatadogSessionReplay TouchSnapshotProducer.swift
[275/551] Compiling DatadogSessionReplay UIApplicationSwizzler.swift
[276/551] Compiling DatadogSessionReplay WindowTouchSnapshotProducer.swift
[277/551] Compiling DatadogCore ApplicationVersionPublisher.swift
[278/551] Compiling DatadogCore BatteryStatusPublisher.swift
[281/551] Compiling DatadogSessionReplay SRDataModels+UIKit.swift
[282/551] Compiling DatadogSessionReplay SRDataModels.swift
[283/551] Compiling DatadogSessionReplay RecordsBuilder.swift
[284/551] Compiling DatadogSessionReplay WireframesBuilder.swift
[285/551] Compiling DatadogSessionReplay Diff+SRWireframes.swift
[286/551] Compiling DatadogSessionReplay Diff.swift
[287/551] Compiling DatadogSessionReplay NodesFlattener.swift
[288/551] Compiling DatadogSessionReplay TextObfuscator.swift
[289/551] Compiling DatadogCore LowPowerModePublisher.swift
[290/551] Compiling DatadogSessionReplay WebViewRecordReceiver.swift
[291/551] Compiling DatadogCore CarrierInfoPublisher.swift
[292/551] Compiling DatadogCore ContextValuePublisher.swift
[293/551] Compiling DatadogSessionReplay Xoshiro.swift
[294/551] Compiling DatadogSessionReplay NodeIDGenerator.swift
[295/551] Compiling DatadogSessionReplay NodeRecorder.swift
[296/551] Compiling DatadogSessionReplay Color+Reflection.swift
[297/551] Compiling DatadogSessionReplay Color.swift
[298/551] Compiling DatadogSessionReplay DisplayList+Reflection.swift
[299/551] Compiling DatadogSessionReplay DisplayList.swift
[300/551] Compiling DatadogSessionReplay Image+Reflection.swift
[301/551] Compiling DatadogSessionReplay Image.swift
[302/551] Compiling DatadogSessionReplay CFType+Safety.swift
[303/551] Compiling DatadogSessionReplay CGImage+SessionReplay.swift
[304/551] Compiling DatadogSessionReplay CGRect+SessionReplay.swift
[305/551] Compiling DatadogSessionReplay CGSize+SessionReplay.swift
[306/551] Compiling DatadogSessionReplay Int64+SessionReplay.swift
[307/551] Compiling DatadogSessionReplay SystemColors.swift
[308/551] Compiling DatadogSessionReplay UIColor+SessionReplay.swift
[309/551] Compiling DatadogSessionReplay UIImage+SessionReplay.swift
[310/551] Compiling DatadogSessionReplay UIView+SessionReplay.swift
[314/554] Compiling DatadogLogs Logs.swift
[315/554] Compiling DatadogLogs RemoteLogger.swift
[316/554] Compiling DatadogLogs Logs+Internal.swift
[317/554] Compiling DatadogWebViewTracking MessageEmitter.swift
[318/554] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[319/554] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[320/554] Emitting module DatadogWebViewTracking
[321/554] Compiling DatadogWebViewTracking WebViewTracking.swift
[322/554] Compiling DatadogCore AccountInfoPublisher.swift
[323/554] Compiling DatadogCore ApplicationStatePublisher.swift
[324/554] Emitting module DatadogCrashReporting
[331/554] Compiling DatadogCore DatadogContextProvider.swift
[332/554] Compiling DatadogCore LaunchTimePublisher.swift
[349/554] Compiling DatadogSessionReplay CGRectExtensions.swift
[350/554] Compiling DatadogSessionReplay Colors.swift
[351/554] Compiling DatadogSessionReplay Errors.swift
[352/554] Compiling DatadogSessionReplay Queue.swift
[353/554] Compiling DatadogSessionReplay MainThreadScheduler.swift
[354/554] Compiling DatadogSessionReplay Scheduler.swift
[355/554] Compiling DatadogSessionReplay RecordWriter.swift
[356/554] Compiling DatadogSessionReplay ResourcesWriter.swift
[357/554] Compiling DatadogSessionReplay SRCompression.swift
[358/554] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[368/560] Emitting module DatadogTrace
[373/560] Compiling DatadogLogs LogEventMapper.swift
[384/560] Emitting module DatadogLogs
[387/560] 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:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #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 |
[418/571] Compiling DatadogCrashReporting PLCrashReporterIntegration.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 |
[424/571] 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 |
[425/571] 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 |
[426/571] 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 |
[452/571] Compiling DatadogRUM ViewHitchesReader.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 |
[453/571] 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 |
[454/571] 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 |
[455/571] 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 |
[456/571] 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 |
[457/571] 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 |
[458/571] 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 |
[466/571] Compiling DatadogCore BatchMetrics.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[467/571] Compiling DatadogCore BenchmarkURLSessionTaskDelegate.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[468/571] Compiling DatadogCore Cryptography.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[469/571] Compiling DatadogCore Retrying.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[470/571] Compiling DatadogCore Versioning.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[471/571] 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 |
/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/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:597:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
595 |     internal import DatadogPrivate
596 |     #else
597 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
598 |     #endif
599 | #endif
error: emit-module command failed with exit code 1 (use -v to see invocation)
[526/571] Emitting module DatadogRUM
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[561/571] 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 |
[562/571] 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 |
[563/571] 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 |
[564/571] 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 |
[565/571] 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 |
[566/571] 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 |
[567/571] 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 |
[568/571] 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 |
[569/571] 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 |
[570/571] 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 |
[571/571] 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 133 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/Upload/DataUploaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchTimePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/CrashLogReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDSwiftUIRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDNSURLSessionDelegate+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDNSURLSessionDelegateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.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/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDConfiguration+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/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.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/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.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/TLV/TLVBlockReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogObjc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.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/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.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/PLCrashReporterIntegrationTests.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/CrashReportTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
BUILD FAILURE 6.1 macosSpm