The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Datadog, reference develop (450c7d), with Swift 6.1 for macOS (SPM) on 30 Apr 2026 03:13:57 UTC.

Build Command

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

Build Log

 76 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 77 |
 78 |     static func enableOrThrow(
    |                 `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 79 |         tracking controller: WKUserContentController,
 80 |         hosts: Set<String>,
    :
 97 |         let bridgeName = DDScriptMessageHandler.name
 98 |
 99 |         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
100 |             emitter: MessageEmitter(
101 |                 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:107: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
 76 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 77 |
 78 |     static func enableOrThrow(
    |                 `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 79 |         tracking controller: WKUserContentController,
 80 |         hosts: Set<String>,
    :
105 |
106 |         // Prevent fatal error: `Attempt to add script message handler with name 'DatadogEventBridge' when one already exists.`
107 |         controller.removeScriptMessageHandler(forName: bridgeName)
    |                    `- 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
108 |         controller.add(messageHandler, name: bridgeName)
109 |
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:108: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
 76 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 77 |
 78 |     static func enableOrThrow(
    |                 `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 79 |         tracking controller: WKUserContentController,
 80 |         hosts: Set<String>,
    :
106 |         // Prevent fatal error: `Attempt to add script message handler with name 'DatadogEventBridge' when one already exists.`
107 |         controller.removeScriptMessageHandler(forName: bridgeName)
108 |         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
109 |
110 |         // 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:157: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
 76 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 77 |
 78 |     static func enableOrThrow(
    |                 `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 79 |         tracking controller: WKUserContentController,
 80 |         hosts: Set<String>,
    :
155 |         """
156 |
157 |         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
158 |             WKUserScript(
159 |                 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:158: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
 76 |     static let jsCodePrefix = "/* DatadogEventBridge */"
 77 |
 78 |     static func enableOrThrow(
    |                 `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
 79 |         tracking controller: WKUserContentController,
 80 |         hosts: Set<String>,
    :
156 |
157 |         controller.addUserScript(
158 |             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
159 |                 source: js,
160 |                 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:99:30: warning: sending value of non-Sendable type 'MessageEmitter' risks causing data races; this is an error in the Swift 6 language mode
 97 |         let bridgeName = DDScriptMessageHandler.name
 98 |
 99 |         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
100 |             emitter: MessageEmitter(
101 |                 logsSampler: Sampler(samplingRate: logsSampleRate),
[768/821] 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 |
[769/821] 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 |     }
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[796/821] 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 |
[797/821] 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 |
[798/821] 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 |
[799/821] 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 |
[800/821] 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 |
[801/821] 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 |
[802/821] 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 |
[803/821] 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 |
[804/821] 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 |
[805/821] 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 |
[806/821] 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 |
[807/821] 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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[808/821] 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 |
Fetching https://github.com/open-telemetry/opentelemetry-swift-core
Fetching https://github.com/kstenerud/KSCrash.git
[1/14041] Fetching opentelemetry-swift-core
[984/39865] Fetching opentelemetry-swift-core, kscrash
Fetched https://github.com/kstenerud/KSCrash.git from cache (3.06s)
Fetched https://github.com/open-telemetry/opentelemetry-swift-core from cache (3.06s)
Computing version for https://github.com/open-telemetry/opentelemetry-swift-core
Computed https://github.com/open-telemetry/opentelemetry-swift-core at 2.3.0 (3.71s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (0.67s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.19s)
Computing version for https://github.com/kstenerud/KSCrash.git
Computed https://github.com/kstenerud/KSCrash.git at 2.5.1 (0.66s)
Creating working copy for https://github.com/kstenerud/KSCrash.git
Working copy of https://github.com/kstenerud/KSCrash.git resolved at 2.5.1
Creating working copy for https://github.com/open-telemetry/opentelemetry-swift-core
Working copy of https://github.com/open-telemetry/opentelemetry-swift-core resolved at 2.3.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
warning: 'spi-builder-workspace': found 136 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.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/DisplayLinkerTests.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/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUM+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
    /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/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/FirstFrameReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDLogs+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.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/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/ContextSharingTransformerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/SharedContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/CrossPlatformExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDCrossPlatformExtension+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
warning: 'spi-builder-workspace': found 68 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewDelegateProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+AttributeEncodingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMScrollHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/HeaderCapture/HeaderProcessorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/ThirdPartyDelegateProxy.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.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/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/AppLaunchMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMFeatureOperationManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/RUM_FEATURE.md
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/StartupTypeHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/AppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/FlagEvaluationReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Heatmaps/HeatmapIdentifierStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMAppLaunchManagerTests.swift
warning: 'spi-builder-workspace': found 10 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/CrashFieldDictionaryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogMinifyFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashBacktraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogTypeSafeFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportSenderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogDiagnosticFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashContextCoreProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogCrashReportFilterTests.swift
warning: 'spi-builder-workspace': found 24 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CTorProfilerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SDKMetrics/ProfilingTelemetryControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachProfilerCAPITests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/ctor_profiler.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileCxxTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile_pprof_packer.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_profiler.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilerFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/dd_pprof.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CCallbackContext.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Protos/profile.proto
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingTest.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachSamplingProfilerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.pb-c.c
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SafeReadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_sampling_profiler.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/protobuf-c.c
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileEventTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MockThread.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/AppLaunchProfilerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/RequestBuilderTests.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/281] Compiling DatadogInternal AppState.swift
[3/281] Compiling DatadogInternal ApplicationNotifications.swift
[4/281] Compiling DatadogInternal BatteryStatus.swift
[5/281] Compiling DatadogInternal BrightnessLevel.swift
[6/281] Compiling DatadogInternal BundleType.swift
[7/281] Compiling DatadogInternal CarrierInfo.swift
[8/281] Compiling DatadogInternal DatadogContext.swift
[9/281] Compiling DatadogInternal DatadogSite.swift
[10/281] Compiling DatadogInternal DateProvider.swift
[11/281] Compiling DatadogInternal DeviceInfo.swift
[12/281] Compiling DatadogInternal LaunchInfo.swift
[13/281] Compiling DatadogInternal LocaleInfo.swift
[14/281] Compiling DatadogInternal NetworkConnectionInfo.swift
[15/281] Compiling DatadogInternal OperatingSystem+Utils.swift
[16/281] Compiling DatadogInternal AttributeEncoding.swift
[17/281] Compiling DatadogInternal Attributes.swift
[18/281] Compiling DatadogInternal AttributesSanitizer.swift
[19/297] Compiling OpenTelemetryApi ObservableDoubleGauge.swift
[20/297] Compiling OpenTelemetryApi ObservableDoubleMeasurement.swift
[21/297] Compiling OpenTelemetryApi ObservableDoubleUpDownCounter.swift
[22/297] Compiling OpenTelemetryApi ObservableLongCounter.swift
[23/297] Compiling OpenTelemetryApi ObservableLongGauge.swift
[24/297] Compiling OpenTelemetryApi ObservableLongMeasurement.swift
[25/297] Compiling OpenTelemetryApi ObservableLongUpDownCounter.swift
[26/297] Compiling OpenTelemetryApi OpenTelemetry.swift
[27/297] Compiling OpenTelemetryApi ContextPropagators.swift
[28/297] Compiling OpenTelemetryApi DefaultContextPropagators.swift
[29/297] Compiling OpenTelemetryApi DefaultTracer.swift
[30/297] Compiling OpenTelemetryApi DefaultTracerProvider.swift
[31/297] Compiling OpenTelemetryApi PropagatedSpan.swift
[32/297] Compiling OpenTelemetryApi PropagatedSpanBuilder.swift
[33/297] Compiling OpenTelemetryApi B3Propagator.swift
[34/297] Compiling OpenTelemetryApi BinaryFormattable.swift
[35/297] Compiling DatadogInternal CoreLoggerLevel+objc.swift
[36/297] Compiling DatadogInternal InternalLogger+objc.swift
[37/297] Compiling DatadogInternal InternalLogger.swift
[38/297] Compiling DatadogInternal Telemetry.swift
[39/297] Compiling DatadogInternal DataCompression.swift
[40/297] Compiling DatadogInternal DataFormat.swift
[41/297] Compiling DatadogInternal DefaultJSONEncoder.swift
[42/297] Compiling DatadogInternal Event.swift
[43/297] Compiling DatadogInternal FeatureRequestBuilder.swift
[44/297] Compiling OpenTelemetryApi Profile_attributes.swift
[45/297] Compiling OpenTelemetryApi Rpc_attributes.swift
[46/297] Compiling OpenTelemetryApi SecurityRule_attributes.swift
[47/297] Compiling OpenTelemetryApi Server_attributes.swift
[48/297] Compiling OpenTelemetryApi Service_attributes.swift
[49/297] Compiling OpenTelemetryApi Session_attributes.swift
[50/297] Compiling OpenTelemetryApi Signalr_attributes.swift
[51/297] Compiling OpenTelemetryApi Source_attributes.swift
[52/297] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[53/297] Compiling DatadogInternal URLSessionInstrumentation.swift
[54/297] Compiling DatadogInternal URLSessionSwizzler.swift
[55/297] Compiling DatadogInternal URLSessionTask+Tracking.swift
[56/297] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
[57/297] Compiling DatadogInternal URLSessionTaskInterception.swift
[58/297] Compiling DatadogInternal URLSessionTaskStateSwizzler.swift
[59/297] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[60/297] Compiling DatadogInternal W3CHTTPHeaders.swift
[61/297] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[62/297] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[63/297] Compiling DatadogInternal MethodCalledMetric.swift
[64/297] Compiling DatadogInternal SDKMetricFields.swift
[65/297] Compiling DatadogInternal UploadQualityMetric.swift
[66/297] Compiling DatadogInternal Storage.swift
[67/297] Compiling DatadogInternal PerformancePresetOverride.swift
[68/297] Compiling DatadogInternal Writer.swift
[69/297] Compiling DatadogInternal MethodSwizzler.swift
[70/297] Compiling DatadogInternal CoreLogger.swift
[80/311] Compiling DatadogInternal SamplingMechanismType.swift
[81/311] Compiling DatadogInternal SamplingPriority.swift
[82/311] Compiling DatadogInternal SpanContext.swift
[83/311] Compiling DatadogInternal SpanID.swift
[84/311] Compiling DatadogInternal TraceCoreContext.swift
[85/311] Compiling DatadogInternal TraceID.swift
[86/311] Compiling DatadogInternal WebViewMessage.swift
[87/311] Compiling DatadogInternal B3HTTPHeaders.swift
[88/311] Compiling DatadogInternal B3HTTPHeadersReader.swift
[89/311] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[90/311] Compiling DatadogInternal HTTPHeadersReader.swift
[91/311] Compiling DatadogInternal HTTPHeadersWriter.swift
[92/311] Compiling DatadogInternal TracingHTTPHeaders.swift
[93/311] Compiling DatadogInternal DatadogURLSessionHandler.swift
[94/311] Compiling DatadogInternal FirstPartyHosts.swift
[95/311] Compiling DatadogInternal GraphQLRequestAttributes.swift
[96/311] Compiling DatadogInternal HostsSanitizer.swift
[97/311] Compiling DatadogInternal NetworkContext.swift
[98/311] Compiling DatadogInternal NetworkContextProvider.swift
[99/311] Compiling DatadogInternal NetworkInstrumentationFeature.swift
[100/311] Compiling DatadogInternal TraceContext.swift
[101/311] Compiling DatadogInternal TraceContextInjection.swift
[102/311] Compiling DatadogInternal TracePropagationHeadersReader.swift
[103/311] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[104/311] Compiling DatadogInternal TracingHeaderType+objc.swift
[105/311] Compiling DatadogInternal TracingHeaderType.swift
[106/311] Compiling DatadogInternal ImmutableRequest.swift
[107/311] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[108/311] Compiling DatadogInternal Sysctl.swift
[109/311] Compiling DatadogInternal TrackingConsent.swift
[110/311] Compiling DatadogInternal UserInfo.swift
[111/311] Compiling DatadogInternal CoreRegistry.swift
[112/311] Compiling DatadogInternal DD.swift
[113/311] Compiling DatadogInternal DataStore.swift
[114/311] Compiling DatadogInternal DatadogCoreProtocol.swift
[115/311] Compiling DatadogInternal DatadogFeature.swift
[116/311] Compiling DatadogInternal Data+Crypto.swift
[117/311] Compiling DatadogInternal DatadogExtended.swift
[118/311] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[119/311] Compiling DatadogInternal Foundation+Datadog.swift
[120/311] Compiling DatadogInternal InternalExtended.swift
[121/311] Compiling DatadogInternal TimeInterval+Convenience.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
[139/311] Compiling DatadogInternal BacktraceReporter.swift
[140/311] Compiling DatadogInternal BacktraceReportingFeature.swift
[141/311] Compiling DatadogInternal BenchmarkProfiler.swift
[142/311] Compiling DatadogInternal AnyCodable.swift
[143/311] Compiling DatadogInternal AnyDecodable.swift
[144/311] Compiling DatadogInternal AnyEncodable.swift
[145/311] Compiling DatadogInternal DynamicCodingKey.swift
[146/311] Compiling DatadogInternal CompletionHandler.swift
[147/311] Compiling DatadogInternal Flushable.swift
[148/311] Compiling DatadogInternal ReadWriteLock.swift
[149/311] Compiling DatadogInternal Threading.swift
[150/311] Compiling DatadogInternal AccountInfo.swift
[151/311] Compiling DatadogInternal BinaryImage.swift
[152/311] Compiling DatadogInternal Crash.swift
[153/311] Compiling DatadogInternal CrashContext.swift
[154/311] Compiling DatadogInternal DDCrashReport.swift
[155/311] Compiling DatadogInternal DDThread.swift
[156/311] Compiling DatadogInternal LaunchReport.swift
[157/311] Compiling DatadogInternal LogEventAttributes.swift
[158/311] Compiling DatadogInternal LogMessage.swift
[159/311] Compiling DatadogInternal ProfilingContext.swift
[160/311] Compiling DatadogInternal ProfilingMessages.swift
[161/311] Compiling DatadogInternal ProfilingOptions+objc.swift
[162/311] Compiling DatadogInternal ProfilingOptions.swift
[163/311] Compiling DatadogInternal OperationOptions.swift
[164/311] Compiling DatadogInternal RUMCoreContext.swift
[165/311] Compiling DatadogInternal RUMDataModels.swift
[166/311] Compiling DatadogInternal RUMPayloadMessages.swift
[167/311] Compiling DatadogInternal RUMWebViewContext.swift
[193/311] Compiling DatadogInternal DatadogCoreProtocol+Heatmaps.swift
[194/311] Compiling DatadogInternal HeatmapAttributes.swift
[195/311] Compiling DatadogInternal HeatmapIdentifier.swift
[196/311] Compiling DatadogInternal HeatmapIdentifierRegistry.swift
[197/311] Compiling DatadogInternal HeatmapIdentifierRegistryFeature.swift
[198/311] Compiling DatadogInternal FeatureMessage.swift
[199/311] Compiling DatadogInternal FeatureMessageReceiver.swift
[200/311] Compiling DatadogInternal BacktraceReport.swift
[235/311] Emitting module OpenTelemetryApi
[236/311] Compiling DatadogInternal SessionReplayConfiguration.swift
[237/311] Compiling DatadogInternal SessionReplayCoreContext.swift
[238/311] Compiling DatadogInternal ActiveSpanProvider.swift
[253/311] Compiling OpenTelemetryApi JaegerPropagator.swift
[254/311] Compiling OpenTelemetryApi TextMapPropagator.swift
[255/311] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[256/311] Compiling OpenTelemetryApi SemanticAttributes.swift
[257/311] Compiling OpenTelemetryApi Span.swift
[258/311] Compiling OpenTelemetryApi SpanBuilder.swift
[259/311] Compiling OpenTelemetryApi SpanContext.swift
[260/311] Compiling OpenTelemetryApi SpanException.swift
[261/311] Compiling OpenTelemetryApi SpanId.swift
[262/311] Compiling OpenTelemetryApi SpanKind.swift
[263/311] Compiling OpenTelemetryApi Status.swift
[264/311] Compiling OpenTelemetryApi TraceFlags.swift
[265/311] Compiling OpenTelemetryApi TraceId.swift
[266/311] Compiling OpenTelemetryApi TraceState.swift
[267/311] Compiling OpenTelemetryApi Tracer.swift
[268/311] Compiling OpenTelemetryApi TracerProvider.swift
[269/311] Compiling DatadogInternal MultipartFormData.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 |
[270/311] Compiling DatadogInternal URLRequestBuilder.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 |
[271/311] Compiling DatadogInternal UploadPerformancePreset.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 |
[272/311] Compiling DatadogInternal Assert.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 |
[273/311] Compiling DatadogInternal CustomDump.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 |
[274/311] Compiling DatadogInternal DDError.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
   | |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[275/311] 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 |
[276/311] Compiling DatadogInternal DeterministicSampler.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 |
[277/311] 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 |
[278/311] 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 |
[279/311] 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 |
[280/311] 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 |
[281/311] 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 |
[282/311] 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 |
[283/311] Emitting module DatadogInternal
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:208: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
    :
206 | public struct DefaultAppStateProvider: AppStateProvider {
207 |     public init() {}
208 |     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
209 | }
210 |
/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/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Heatmaps/HeatmapIdentifier.swift:32:17: warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
30 |
31 |         data.withUnsafeBytes {
32 |             _ = CC_MD5($0.baseAddress, CC_LONG(data.count), &digest)
   |                 `- warning: 'CC_MD5' was deprecated in macOS 10.15: This function is cryptographically broken and should not be used in security contexts. Clients should migrate to SHA256 (or stronger).
33 |         }
34 |
[312/720] Compiling DatadogSessionReplay ViewTreeSnapshotProducer.swift
[313/720] Compiling DatadogSessionReplay WindowViewTreeSnapshotProducer.swift
[314/720] Compiling DatadogSessionReplay AppWindowObserver.swift
[315/720] Compiling DatadogSessionReplay KeyWindowObserver.swift
[316/720] Compiling DatadogSessionReplay SessionReplay+objc.swift
[317/720] Compiling DatadogSessionReplay SessionReplay.swift
[318/720] Compiling DatadogSessionReplay SessionReplayConfiguration.swift
[319/720] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides+objc.swift
[320/720] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides.swift
[321/720] Compiling DatadogRUM StartupTypeHandler.swift
[322/730] Compiling DatadogCore MessageBus.swift
[323/730] Compiling DatadogCore DataEncryption.swift
[324/730] Compiling DatadogCore Directories.swift
[325/730] Compiling DatadogCore EventGenerator.swift
[326/730] Compiling DatadogCore LaunchInfoPublisher.swift
[327/730] Compiling DatadogCore LocaleInfoPublisher.swift
[328/730] Compiling DatadogCore LowPowerModePublisher.swift
[329/730] Compiling DatadogCore NetworkConnectionInfoPublisher.swift
[330/730] Compiling DatadogCore ServerOffsetPublisher.swift
[331/730] Compiling DatadogCore TrackingConsentPublisher.swift
[332/730] Compiling DatadogCore UserInfoPublisher.swift
[333/730] Compiling DatadogSessionReplay UISwitchRecorder.swift
[334/730] Compiling DatadogSessionReplay UITabBarRecorder.swift
[335/730] Compiling DatadogSessionReplay UITextFieldRecorder.swift
[336/730] Compiling DatadogSessionReplay UITextViewRecorder.swift
[337/730] Compiling DatadogSessionReplay UIViewRecorder.swift
[338/730] Compiling DatadogSessionReplay UnsupportedViewRecorder.swift
[339/730] Compiling DatadogSessionReplay WKWebViewRecorder.swift
[340/730] Compiling DatadogSessionReplay ViewTreeRecorder.swift
[341/730] Compiling DatadogSessionReplay ViewTreeRecordingContext.swift
[342/730] Compiling DatadogSessionReplay ViewTreeSnapshot.swift
[343/730] Compiling DatadogSessionReplay ViewTreeSnapshotBuilder.swift
[344/730] Compiling DatadogProfiling Profiling.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/Profiling.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
14 | internal import DatadogMachProfiler
15 | #else
16 | @_implementationOnly import DatadogMachProfiler
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
17 | #endif
18 | // swiftlint:enable duplicate_imports
[345/731] Compiling DatadogProfiling ProfilingTelemetryController.swift
[346/731] Compiling DatadogCore DataStore+TLV.swift
[347/731] Compiling DatadogCore AccountInfoPublisher.swift
[348/731] Compiling DatadogCore ApplicationStatePublisher.swift
[349/731] Compiling DatadogCore ApplicationVersionPublisher.swift
[350/731] Compiling DatadogCore BatteryStatusPublisher.swift
[351/731] Compiling DatadogCore BrightnessLevelPublisher.swift
[352/731] Compiling DatadogCore CarrierInfoPublisher.swift
[353/731] Compiling DatadogCore ContextValuePublisher.swift
[354/731] Compiling DatadogCore DatadogContextProvider.swift
[355/731] Compiling DatadogCore FeatureStorage.swift
[356/731] Compiling DatadogCore Directory.swift
[357/731] Compiling DatadogProfiling ProfilingConfiguration.swift
[358/731] Compiling DatadogProfiling ProfileEvent.swift
[359/731] Compiling DatadogProfiling ProfilerFeature.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/ProfilerFeature.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
14 | internal import DatadogMachProfiler
15 | #else
16 | @_implementationOnly import DatadogMachProfiler
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
17 | #endif
18 | // swiftlint:enable duplicate_imports
[360/731] Compiling DatadogCore KronosClock.swift
[361/731] Compiling DatadogCore KronosDNSResolver.swift
[362/731] Compiling DatadogCore KronosData+Bytes.swift
[363/731] Compiling DatadogCore KronosInternetAddress.swift
[364/731] Compiling DatadogCore DataUploadDelay.swift
[365/731] Compiling DatadogCore DataUploadStatus.swift
[366/731] Compiling DatadogCore DataUploadWorker.swift
[367/731] Compiling DatadogCore DataUploader.swift
[368/731] Compiling DatadogCore FeatureUpload.swift
[369/731] Compiling DatadogCore HTTPClient.swift
[370/731] Compiling DatadogCore URLSessionClient.swift
[371/731] Compiling DatadogRUM WebViewEventReceiver.swift
[372/731] Compiling DatadogRUM RUM+Internal.swift
[373/731] Compiling DatadogRUM RUM+objc.swift
[374/731] Compiling DatadogRUM RUM.swift
[375/731] Compiling DatadogRUM RUMConfiguration.swift
[376/731] Compiling DatadogRUM AccessibilityReader.swift
[377/731] Compiling DatadogRUM RUMContext.swift
[378/731] Compiling DatadogSessionReplay UIProgressViewRecorder.swift
[379/731] Compiling DatadogSessionReplay UISegmentRecorder.swift
[380/731] Compiling DatadogSessionReplay UISliderRecorder.swift
[381/731] Compiling DatadogSessionReplay UIStepperRecorder.swift
[382/731] Compiling DatadogCore Datadog+Internal.swift
[383/731] Compiling DatadogCore Datadog+objc.swift
[384/731] Compiling DatadogCore Datadog.swift
[385/731] Compiling DatadogCore DatadogConfiguration+objc.swift
[386/731] Compiling DatadogCore DatadogConfiguration.swift
[387/731] Compiling DatadogCore ContextSharingFeature.swift
[388/731] Compiling DatadogCore ContextSharingTransformer.swift
[389/731] Compiling DatadogCore DataStoreFileReader.swift
[390/731] Compiling DatadogCore DataStoreFileWriter.swift
[391/731] Compiling DatadogCore FeatureDataStore.swift
[392/731] Compiling DatadogCore DatadogCore.swift
[393/731] Emitting module DatadogSessionReplay
[396/732] Compiling DatadogCrashReporting DatadogMinifyFilter.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogMinifyFilter.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 12 | internal import KSCrashRecording
 13 | #else
 14 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 15 | #endif
 16 | // swiftlint:enable duplicate_imports
[397/732] Compiling DatadogProfiling RequestBuilder.swift
[398/732] Compiling DatadogProfiling AppLaunchMetric.swift
[399/732] Compiling DatadogProfiling ConfigurationMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/SDKMetrics/ConfigurationMetric.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
13 | internal import DatadogMachProfiler
14 | #else
15 | @_implementationOnly import DatadogMachProfiler
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
[400/732] Compiling DatadogCore DataUploadConditions.swift
[401/732] Compiling DatadogCore KronosNSTimer+ClosureKit.swift
[402/732] Compiling DatadogCore KronosNTPClient.swift
[403/732] Compiling DatadogCore KronosNTPPacket.swift
[404/732] Compiling DatadogCore KronosNTPProtocol.swift
[405/732] Compiling DatadogCore KronosTimeFreeze.swift
[406/732] Compiling DatadogCore KronosTimeStorage.swift
[407/732] Compiling DatadogCore URLSessionInstrumentation+objc.swift
[408/732] Compiling DatadogCore SharedContext.swift
[409/732] Compiling DatadogCore CrossPlatformExtension.swift
[410/732] Compiling DatadogCore CITestIntegration.swift
[411/732] Compiling DatadogCore File.swift
[412/732] Compiling DatadogCore FilesOrchestrator.swift
[413/732] Compiling DatadogCore DataReader.swift
[414/732] Compiling DatadogCore FileReader.swift
[415/732] Compiling DatadogCore Reader.swift
[416/732] Compiling DatadogCore Storage+TLV.swift
[417/732] Compiling DatadogCore AsyncWriter.swift
[418/732] Compiling DatadogCore FileWriter.swift
[419/732] Compiling DatadogCore TLVBlock.swift
[420/732] Compiling DatadogCore TLVBlockReader.swift
[421/732] Compiling DatadogCore BackgroundTaskCoordinator.swift
[426/733] Compiling DatadogCrashReporting KSCrashPlugin.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashPlugin.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 15 | internal import KSCrashFilters
 16 | #else
 17 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 18 | @_implementationOnly import KSCrashFilters
 19 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashPlugin.swift:18:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #else
 17 | @_implementationOnly import KSCrashRecording
 18 | @_implementationOnly import KSCrashFilters
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 19 | #endif
 20 | // swiftlint:enable duplicate_imports
[435/736] Emitting module DatadogProfiling
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/AppLaunchProfiler.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
 14 | internal import DatadogMachProfiler
 15 | #else
 16 | @_implementationOnly import DatadogMachProfiler
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/ProfilerFeature.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
14 | internal import DatadogMachProfiler
15 | #else
16 | @_implementationOnly import DatadogMachProfiler
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
17 | #endif
18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/Profiling.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
14 | internal import DatadogMachProfiler
15 | #else
16 | @_implementationOnly import DatadogMachProfiler
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
17 | #endif
18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/SDKMetrics/ConfigurationMetric.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
13 | internal import DatadogMachProfiler
14 | #else
15 | @_implementationOnly import DatadogMachProfiler
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
[436/736] Compiling DatadogProfiling AppLaunchProfiler.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Sources/AppLaunchProfiler.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
 14 | internal import DatadogMachProfiler
 15 | #else
 16 | @_implementationOnly import DatadogMachProfiler
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogProfiling' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
[439/736] Emitting module DatadogCrashReporting
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/AnyCrashReport.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
13 | internal import KSCrashRecording
14 | #else
15 | @_implementationOnly import KSCrashRecording
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/CrashFieldDictionary.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 13 | internal import KSCrashRecording
 14 | #else
 15 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #endif
 17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogCrashReportFilter.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 14 | internal import KSCrashRecording
 15 | #else
 16 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogDiagnosticFilter.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 13 | internal import KSCrashRecording
 14 | #else
 15 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #endif
 17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogMinifyFilter.swift:14:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 12 | internal import KSCrashRecording
 13 | #else
 14 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 15 | #endif
 16 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogTypeSafeFilter.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
13 | internal import KSCrashRecording
14 | #else
15 | @_implementationOnly import KSCrashRecording
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashBacktrace.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 14 | internal import KSCrashRecording
 15 | #else
 16 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashPlugin.swift:17:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 15 | internal import KSCrashFilters
 16 | #else
 17 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 18 | @_implementationOnly import KSCrashFilters
 19 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashPlugin.swift:18:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #else
 17 | @_implementationOnly import KSCrashRecording
 18 | @_implementationOnly import KSCrashFilters
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 19 | #endif
 20 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashBacktrace.swift:27:9: warning: stored property 'telemetry' of 'Sendable'-conforming struct 'KSCrashBacktrace' has non-sendable type 'any Telemetry'; this is an error in the Swift 6 language mode
 25 | internal struct KSCrashBacktrace: BacktraceReporting {
 26 |     /// Telemetry interface for reporting errors during backtrace generation.
 27 |     let telemetry: Telemetry
    |         `- warning: stored property 'telemetry' of 'Sendable'-conforming struct 'KSCrashBacktrace' has non-sendable type 'any Telemetry'; this is an error in the Swift 6 language mode
 28 |
 29 |     /// Creates a new KSCrash-based backtrace generator.
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:187:17: note: protocol 'Telemetry' does not conform to the 'Sendable' protocol
185 | /// The `Telemetry` protocol defines methods to collect debug information
186 | /// and detect execution errors of the Datadog SDK.
187 | public protocol Telemetry {
    |                 `- note: protocol 'Telemetry' does not conform to the 'Sendable' protocol
188 |     /// Sends a Telemetry message.
189 |     ///
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashBacktrace.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 | // swiftlint:disable duplicate_imports
[450/736] Compiling DatadogLogs RemoteLogger.swift
[451/736] Compiling DatadogCrashReporting KSCrashBacktrace.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashBacktrace.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 14 | internal import KSCrashRecording
 15 | #else
 16 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashBacktrace.swift:27:9: warning: stored property 'telemetry' of 'Sendable'-conforming struct 'KSCrashBacktrace' has non-sendable type 'any Telemetry'; this is an error in the Swift 6 language mode
 25 | internal struct KSCrashBacktrace: BacktraceReporting {
 26 |     /// Telemetry interface for reporting errors during backtrace generation.
 27 |     let telemetry: Telemetry
    |         `- warning: stored property 'telemetry' of 'Sendable'-conforming struct 'KSCrashBacktrace' has non-sendable type 'any Telemetry'; this is an error in the Swift 6 language mode
 28 |
 29 |     /// Creates a new KSCrash-based backtrace generator.
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:187:17: note: protocol 'Telemetry' does not conform to the 'Sendable' protocol
185 | /// The `Telemetry` protocol defines methods to collect debug information
186 | /// and detect execution errors of the Datadog SDK.
187 | public protocol Telemetry {
    |                 `- note: protocol 'Telemetry' does not conform to the 'Sendable' protocol
188 |     /// Sends a Telemetry message.
189 |     ///
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/KSCrashBacktrace.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 | // swiftlint:disable duplicate_imports
[452/736] Compiling DatadogCrashReporting DatadogTypeSafeFilter.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogTypeSafeFilter.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
13 | internal import KSCrashRecording
14 | #else
15 | @_implementationOnly import KSCrashRecording
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
[453/736] Compiling DatadogSessionReplay UIView+SessionReplayPrivacyOverrides+objc.swift
[454/736] Compiling DatadogSessionReplay CGRectExtensions.swift
[455/736] Compiling DatadogSessionReplay Colors.swift
[456/736] Compiling DatadogSessionReplay Errors.swift
[457/736] Compiling DatadogSessionReplay Queue.swift
[458/736] Compiling DatadogSessionReplay Scheduler.swift
[459/736] Compiling DatadogSessionReplay ScreenChangeScheduler.swift
[460/736] Compiling DatadogSessionReplay RecordWriter.swift
[461/736] Compiling DatadogSessionReplay ResourcesWriter.swift
[462/736] Compiling DatadogSessionReplay SRCompression.swift
[463/736] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[464/736] Compiling DatadogWebViewTracking MessageEmitter.swift
[465/736] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[466/736] Emitting module DatadogWebViewTracking
[467/736] Compiling DatadogWebViewTracking WebViewTracking.swift
[468/736] Compiling DatadogProfiling resource_bundle_accessor.swift
[469/736] Emitting module DatadogFlags
[479/741] Emitting module DatadogLogs
[480/741] Emitting module DatadogTrace
[489/741] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[490/741] Compiling DatadogLogs LogEventMapper.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogCrashReportFilter.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 14 | internal import KSCrashRecording
 15 | #else
 16 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogDiagnosticFilter.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 13 | internal import KSCrashRecording
 14 | #else
 15 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #endif
 17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogCrashReportFilter.swift:16:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 14 | internal import KSCrashRecording
 15 | #else
 16 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 17 | #endif
 18 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/DatadogDiagnosticFilter.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 13 | internal import KSCrashRecording
 14 | #else
 15 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #endif
 17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/AnyCrashReport.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
13 | internal import KSCrashRecording
14 | #else
15 | @_implementationOnly import KSCrashRecording
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/CrashFieldDictionary.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 13 | internal import KSCrashRecording
 14 | #else
 15 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #endif
 17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/AnyCrashReport.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
13 | internal import KSCrashRecording
14 | #else
15 | @_implementationOnly import KSCrashRecording
   |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
16 | #endif
17 | // swiftlint:enable duplicate_imports
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Sources/KSCrashIntegration/CrashFieldDictionary.swift:15:22: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 13 | internal import KSCrashRecording
 14 | #else
 15 | @_implementationOnly import KSCrashRecording
    |                      `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCrashReporting' may lead to instability during execution
 16 | #endif
 17 | // swiftlint:enable duplicate_imports
[520/741] Emitting module DatadogCore
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.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:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
[533/748] Compiling DatadogFlags FlagValue.swift
[534/748] Compiling DatadogFlags FlagsError.swift
[540/748] Compiling DatadogFlags FlagsEvaluationContext.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 |
[576/760] Compiling DatadogTrace TraceConfiguration.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 |
[577/760] Compiling DatadogTrace Tracer.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 |
[578/760] 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 |
[579/760] 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 |
[580/760] 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 |
[598/760] 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 |
[599/760] 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 |
[600/760] 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 |
[601/760] 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 |
[602/760] 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 |
[603/760] 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 |
[604/760] Compiling DatadogRUM AppLaunchMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[605/760] Compiling DatadogRUM AppLaunchMetricController.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/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.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/LaunchInfoPublisher.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/LaunchInfoPublisher.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/LaunchInfoPublisher.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/LaunchInfoPublisher.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/LaunchInfoPublisher.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/LaunchInfoPublisher.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/LaunchInfoPublisher.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:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:639:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
637 |     internal import DatadogPrivate
638 |     #else
639 |     @_implementationOnly import DatadogPrivate
    |                          `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
640 |     #endif
641 | #endif
[702/760] Compiling DatadogCore PerformancePreset.swift
[703/760] Compiling DatadogCore BatchMetrics.swift
[704/760] Compiling DatadogCore BenchmarkURLSessionTaskDelegate.swift
[705/760] Compiling DatadogCore Cryptography.swift
[706/760] Compiling DatadogCore Retrying.swift
[707/760] Compiling DatadogCore Versioning.swift
[708/760] 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/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
  6 |
  7 | import Foundation
  8 | import UIKit
    |        `- error: no such module 'UIKit'
  9 | import DatadogInternal
 10 |
[735/760] 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 |
[736/760] 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 |
[737/760] 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 |
[738/760] 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 |
[739/760] 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 |
[740/760] 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 |
[741/760] 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 |
[742/760] 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 |
[743/760] 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 |
[744/760] 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 |
[745/760] 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 |
[746/760] 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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[747/760] 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 |
warning: 'spi-builder-workspace': found 136 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUM+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/Upload/DataUploaderTests.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/NetworkConnectionInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/ContextSharingTransformerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDCrossPlatformExtension+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/FirstFrameReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
    /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/LowPowerModePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDLogs+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/CrossPlatformExtensionTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/SharedContextTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDTrace+apiTests.m
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.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/Utils/Casting+Tracing.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+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/TracingWithLoggingIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
warning: 'spi-builder-workspace': found 68 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewDelegateProxyTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/UIKitExtensionsTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/ThirdPartyDelegateProxy.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/AppStateManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+AttributeEncodingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/RUM_FEATURE.md
    /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/Instrumentation/Actions/UIKit/UIScrollViewSwizzlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Heatmaps/HeatmapIdentifierStoreTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMFeatureOperationManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/StartupTypeHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/AppLaunchMetricControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/HeaderCapture/HeaderProcessorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMScrollHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMAppLaunchManagerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/FlagEvaluationReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
warning: 'spi-builder-workspace': found 10 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogCrashReportFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/CrashFieldDictionaryTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashContextCoreProviderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogDiagnosticFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogMinifyFilterTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashPluginTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashBacktraceTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportSenderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogTypeSafeFilterTests.swift
warning: 'spi-builder-workspace': found 24 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/RequestBuilderTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilerFeatureTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SafeReadTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile_pprof_packer.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/protobuf-c.c
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_profiler.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/ctor_profiler.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachSamplingProfilerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileCxxTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/dd_pprof.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingTest.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.pb-c.c
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CTorProfilerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/AppLaunchProfilerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_sampling_profiler.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachProfilerCAPITests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MockThread.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Protos/profile.proto
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CCallbackContext.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingConfigurationTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SDKMetrics/ProfilingTelemetryControllerTests.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileMocks.swift
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.cpp
    /Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileEventTests.swift
BUILD FAILURE 6.1 macosSpm