Build Information
Failed to build Datadog, reference 3.10.0 (66439c), with Swift 6.1 for macOS (SPM) on 20 Apr 2026 11:29:31 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
98 |
99 | let messageHandler = DDScriptMessageHandler(
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:14:16: note: static property declared here
12 |
13 | internal class DDScriptMessageHandler: NSObject, WKScriptMessageHandler {
14 | static let name = "DatadogEventBridge"
| `- note: static property declared here
15 |
16 | let emitter: MessageEmitter
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:99:30: warning: call to main actor-isolated initializer 'init(emitter:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
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),
error: emit-module command failed with exit code 1 (use -v to see invocation)
[755/819] 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 |
[761/819] Compiling DatadogRUM SwiftUIRUMViewsPredicate+objc.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[762/819] Compiling DatadogRUM SwiftUIRUMViewsPredicate.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 |
[763/819] Compiling DatadogRUM SwiftUIViewHandler.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 |
[764/819] Compiling DatadogRUM SwiftUIViewModifier.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 |
[765/819] Compiling DatadogRUM SwiftUIViewNameExtractor.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 |
[766/819] Compiling DatadogRUM SwiftUIViewPath.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 |
[767/819] Compiling DatadogRUM TopLevelReflector.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 |
[768/819] Compiling DatadogRUM UIKitRUMViewsPredicate.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 |
[795/819] 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 |
[796/819] 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 |
[797/819] 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 |
[798/819] 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 |
[799/819] 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 |
[800/819] 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 |
[801/819] 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 |
[802/819] 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 |
[803/819] 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 |
[804/819] 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 |
[805/819] 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 |
[806/819] Compiling DatadogRUM resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
Fetching https://github.com/open-telemetry/opentelemetry-swift-core
Fetching https://github.com/kstenerud/KSCrash.git
[1/14002] Fetching opentelemetry-swift-core
[702/39309] Fetching opentelemetry-swift-core, kscrash
Fetched https://github.com/open-telemetry/opentelemetry-swift-core from cache (1.71s)
Fetched https://github.com/kstenerud/KSCrash.git from cache (1.71s)
Computing version for https://github.com/open-telemetry/opentelemetry-swift-core
Computed https://github.com/open-telemetry/opentelemetry-swift-core at 2.3.0 (2.32s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (0.62s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.09s)
Computing version for https://github.com/kstenerud/KSCrash.git
Computed https://github.com/kstenerud/KSCrash.git at 2.5.1 (0.61s)
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/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
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
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/DDTracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.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/EventGeneratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/ContextSharingTransformerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/FirstFrameReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDCrossPlatformExtension+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/CrossPlatformExtensionTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/SharedContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.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/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/Core/Persistence/FilesOrchestrator+MetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDLogs+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.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/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.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/OpenTracing/OTSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUM+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/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/Datadog/DatadogCore/DatadogCoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
warning: 'spi-builder-workspace': found 67 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMFeatureOperationManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMAppLaunchManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/HeaderCapture/HeaderProcessorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMScrollHandlerTests.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/RUMMonitorProtocol+InternalTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewDelegateProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/ThirdPartyDelegateProxy.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Heatmaps/HeatmapIdentifierStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/StartupTypeHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/FlagEvaluationReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/RUM_FEATURE.md
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/AppStateManagerTests.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/RUMViewEventsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/AppLaunchMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.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/DatadogDiagnosticFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportSenderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogMinifyFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogCrashReportFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogTypeSafeFilterTests.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/KSCrashBacktraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashPluginTests.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/SDKMetrics/ProfilingTelemetryControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileCxxTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/ctor_profiler.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.pb-c.c
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/protobuf-c.c
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Protos/profile.proto
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachSamplingProfilerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CTorProfilerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/dd_pprof.cpp
/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/ProfileMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilerFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileEventTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachProfilerCAPITests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CCallbackContext.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_sampling_profiler.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingTest.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SafeReadTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_profiler.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile_pprof_packer.cpp
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 OpenTelemetryApi StringUtils.swift
[3/281] Compiling OpenTelemetryApi SwiftExtensions.swift
[4/281] Compiling OpenTelemetryApi TracestateUtils.swift
[5/281] Compiling OpenTelemetryApi DefaultLogger.swift
[6/281] Compiling OpenTelemetryApi DefaultLoggerProvider.swift
[7/281] Compiling OpenTelemetryApi EventBuilder.swift
[8/281] Compiling OpenTelemetryApi LogRecordBuilder.swift
[9/281] Compiling OpenTelemetryApi Logger.swift
[10/281] Compiling OpenTelemetryApi LoggerBuilder.swift
[11/281] Compiling OpenTelemetryApi LoggerProvider.swift
[12/281] Compiling OpenTelemetryApi Severity.swift
[13/281] Compiling OpenTelemetryApi DefaultMeter.swift
[14/281] Compiling OpenTelemetryApi DefaultMeterProvider.swift
[15/281] Compiling OpenTelemetryApi DoubleCounter.swift
[16/281] Compiling OpenTelemetryApi DoubleCounterBuilder.swift
[17/281] Compiling OpenTelemetryApi DoubleGauge.swift
[18/281] Compiling OpenTelemetryApi DoubleGaugeBuilder.swift
[19/297] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[20/297] Compiling DatadogInternal URLSessionInstrumentation.swift
[21/297] Compiling DatadogInternal URLSessionSwizzler.swift
[22/297] Compiling DatadogInternal URLSessionTask+Tracking.swift
[23/297] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
[24/297] Compiling DatadogInternal URLSessionTaskInterception.swift
[25/297] Compiling DatadogInternal URLSessionTaskStateSwizzler.swift
[26/297] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[27/297] Compiling DatadogInternal W3CHTTPHeaders.swift
[28/297] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[29/297] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[30/297] Compiling DatadogInternal MethodCalledMetric.swift
[31/297] Compiling DatadogInternal SDKMetricFields.swift
[32/297] Compiling DatadogInternal UploadQualityMetric.swift
[33/311] Compiling DatadogInternal CarrierInfo.swift
[34/311] Compiling DatadogInternal DatadogContext.swift
[35/311] Compiling DatadogInternal DatadogSite.swift
[36/311] Compiling DatadogInternal DateProvider.swift
[37/311] Compiling DatadogInternal DeviceInfo.swift
[38/311] Compiling DatadogInternal LaunchInfo.swift
[39/311] Compiling DatadogInternal LocaleInfo.swift
[40/311] Compiling DatadogInternal NetworkConnectionInfo.swift
[41/311] Compiling DatadogInternal OperatingSystem+Utils.swift
[42/311] Compiling DatadogInternal DatadogCoreProtocol+Heatmaps.swift
[43/311] Compiling DatadogInternal HeatmapAttributes.swift
[44/311] Compiling DatadogInternal HeatmapIdentifier.swift
[45/311] Compiling DatadogInternal HeatmapIdentifierRegistry.swift
[46/311] Compiling DatadogInternal HeatmapIdentifierRegistryFeature.swift
[47/311] Compiling DatadogInternal FeatureMessage.swift
[48/311] Compiling DatadogInternal FeatureMessageReceiver.swift
[49/311] Compiling DatadogInternal AttributeEncoding.swift
[50/311] Compiling DatadogInternal Attributes.swift
[51/311] Compiling DatadogInternal AttributesSanitizer.swift
[52/311] Compiling DatadogInternal BacktraceReporter.swift
[53/311] Compiling DatadogInternal BacktraceReportingFeature.swift
[54/311] Compiling DatadogInternal BenchmarkProfiler.swift
[55/311] Compiling DatadogInternal AnyCodable.swift
[56/311] Compiling DatadogInternal AnyDecodable.swift
[57/311] Compiling DatadogInternal AnyEncodable.swift
[58/311] Compiling DatadogInternal DynamicCodingKey.swift
[59/311] Compiling DatadogInternal CompletionHandler.swift
[60/311] Compiling DatadogInternal Flushable.swift
[61/311] Compiling DatadogInternal ReadWriteLock.swift
[62/311] Compiling DatadogInternal Threading.swift
[63/311] Compiling DatadogInternal AccountInfo.swift
[64/311] Compiling DatadogInternal Sysctl.swift
[65/311] Compiling DatadogInternal TrackingConsent.swift
[66/311] Compiling DatadogInternal UserInfo.swift
[67/311] Compiling DatadogInternal CoreRegistry.swift
[68/311] Compiling DatadogInternal DD.swift
[69/311] Compiling DatadogInternal DataStore.swift
[70/311] Compiling DatadogInternal DatadogCoreProtocol.swift
[71/311] Compiling DatadogInternal DatadogFeature.swift
[72/311] Compiling DatadogInternal Data+Crypto.swift
[73/311] Compiling DatadogInternal DatadogExtended.swift
[74/311] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[75/311] Compiling DatadogInternal Foundation+Datadog.swift
[76/311] Compiling DatadogInternal InternalExtended.swift
[77/311] Compiling DatadogInternal TimeInterval+Convenience.swift
[78/311] Compiling DatadogInternal AppState.swift
[79/311] Compiling DatadogInternal ApplicationNotifications.swift
[80/311] Compiling DatadogInternal BatteryStatus.swift
[81/311] Compiling DatadogInternal BrightnessLevel.swift
[82/311] Compiling DatadogInternal BundleType.swift
[83/311] Compiling DatadogInternal SamplingMechanismType.swift
[84/311] Compiling DatadogInternal SamplingPriority.swift
[85/311] Compiling DatadogInternal SpanContext.swift
[86/311] Compiling DatadogInternal SpanID.swift
[87/311] Compiling DatadogInternal TraceCoreContext.swift
[88/311] Compiling DatadogInternal TraceID.swift
[89/311] Compiling DatadogInternal WebViewMessage.swift
[90/311] Compiling DatadogInternal B3HTTPHeaders.swift
[91/311] Compiling DatadogInternal B3HTTPHeadersReader.swift
[92/311] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[93/311] Compiling DatadogInternal HTTPHeadersReader.swift
[94/311] Compiling DatadogInternal HTTPHeadersWriter.swift
[95/311] Compiling DatadogInternal TracingHTTPHeaders.swift
[96/311] Compiling DatadogInternal DatadogURLSessionHandler.swift
[97/311] Compiling DatadogInternal FirstPartyHosts.swift
[98/311] Compiling DatadogInternal GraphQLRequestAttributes.swift
[99/311] Compiling DatadogInternal HostsSanitizer.swift
[100/311] Compiling DatadogInternal NetworkContext.swift
[101/311] Compiling DatadogInternal NetworkContextProvider.swift
[102/311] Compiling DatadogInternal NetworkInstrumentationFeature.swift
[103/311] Compiling DatadogInternal TraceContext.swift
[104/311] Compiling DatadogInternal TraceContextInjection.swift
[105/311] Compiling DatadogInternal TracePropagationHeadersReader.swift
[106/311] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[107/311] Compiling DatadogInternal TracingHeaderType+objc.swift
[108/311] Compiling DatadogInternal TracingHeaderType.swift
[109/311] Compiling DatadogInternal ImmutableRequest.swift
[110/311] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[111/311] Compiling DatadogInternal Storage.swift
[112/311] Compiling DatadogInternal PerformancePresetOverride.swift
[113/311] Compiling DatadogInternal Writer.swift
[114/311] Compiling DatadogInternal MethodSwizzler.swift
[115/311] Compiling DatadogInternal CoreLogger.swift
[116/311] Compiling DatadogInternal CoreLoggerLevel+objc.swift
[117/311] Compiling DatadogInternal InternalLogger+objc.swift
[118/311] Compiling DatadogInternal InternalLogger.swift
[119/311] Compiling DatadogInternal Telemetry.swift
[120/311] Compiling DatadogInternal DataCompression.swift
[121/311] Compiling DatadogInternal DataFormat.swift
[122/311] Compiling DatadogInternal DefaultJSONEncoder.swift
[123/311] Compiling DatadogInternal Event.swift
[124/311] Compiling DatadogInternal FeatureRequestBuilder.swift
[145/311] Compiling DatadogInternal LogEventAttributes.swift
[146/311] Compiling DatadogInternal LogMessage.swift
[147/311] Compiling DatadogInternal ProfilingContext.swift
[148/311] Compiling DatadogInternal ProfilingMessages.swift
[149/311] Compiling DatadogInternal ProfilingOptions+objc.swift
[150/311] Compiling DatadogInternal ProfilingOptions.swift
[151/311] Compiling DatadogInternal OperationOptions.swift
[152/311] Compiling DatadogInternal RUMCoreContext.swift
[153/311] Compiling DatadogInternal RUMDataModels.swift
[154/311] Compiling DatadogInternal RUMPayloadMessages.swift
[155/311] Compiling DatadogInternal RUMWebViewContext.swift
[156/311] Compiling DatadogInternal SessionReplayConfiguration.swift
[157/311] Compiling DatadogInternal BacktraceReport.swift
[158/311] Compiling DatadogInternal BinaryImage.swift
[159/311] Compiling DatadogInternal Crash.swift
[160/311] Compiling DatadogInternal CrashContext.swift
[161/311] Compiling DatadogInternal DDCrashReport.swift
[162/311] Compiling DatadogInternal DDThread.swift
[163/311] Compiling DatadogInternal LaunchReport.swift
[173/311] Compiling DatadogInternal SessionReplayCoreContext.swift
[174/311] Compiling DatadogInternal ActiveSpanProvider.swift
[200/311] Compiling DatadogInternal MultipartFormData.swift
[201/311] Compiling DatadogInternal URLRequestBuilder.swift
[202/311] Compiling DatadogInternal UploadPerformancePreset.swift
[203/311] Compiling DatadogInternal Assert.swift
[204/311] Compiling DatadogInternal CustomDump.swift
[205/311] Compiling DatadogInternal DDError.swift
[206/311] Compiling DatadogInternal DateFormatting.swift
[207/311] Emitting module OpenTelemetryApi
[225/311] Compiling OpenTelemetryApi JaegerPropagator.swift
[226/311] Compiling OpenTelemetryApi TextMapPropagator.swift
[227/311] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[228/311] Compiling OpenTelemetryApi SemanticAttributes.swift
[229/311] Compiling OpenTelemetryApi Span.swift
[230/311] Compiling OpenTelemetryApi SpanBuilder.swift
[231/311] Compiling OpenTelemetryApi SpanContext.swift
[232/311] Compiling OpenTelemetryApi SpanException.swift
[233/311] Compiling OpenTelemetryApi SpanId.swift
[234/311] Compiling OpenTelemetryApi SpanKind.swift
[235/311] Compiling OpenTelemetryApi Status.swift
[236/311] Compiling OpenTelemetryApi TraceFlags.swift
[237/311] Compiling OpenTelemetryApi TraceId.swift
[238/311] Compiling OpenTelemetryApi TraceState.swift
[239/311] Compiling OpenTelemetryApi Tracer.swift
[240/311] Compiling OpenTelemetryApi TracerProvider.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[248/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 |
[249/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 |
[250/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 |
[251/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 |
[252/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 |
[253/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 |
[254/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 |
[255/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 |
/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 |
[312/718] Compiling DatadogProfiling ProfilingTelemetryController.swift
[313/719] Compiling DatadogSessionReplay UISwitchRecorder.swift
[314/719] Compiling DatadogSessionReplay UITabBarRecorder.swift
[315/719] Compiling DatadogSessionReplay UITextFieldRecorder.swift
[316/719] Compiling DatadogSessionReplay UITextViewRecorder.swift
[317/719] Compiling DatadogSessionReplay UIViewRecorder.swift
[318/719] Compiling DatadogSessionReplay UnsupportedViewRecorder.swift
[319/719] Compiling DatadogSessionReplay WKWebViewRecorder.swift
[320/719] Compiling DatadogSessionReplay ViewTreeRecorder.swift
[321/719] Compiling DatadogSessionReplay ViewTreeRecordingContext.swift
[322/719] Compiling DatadogSessionReplay ViewTreeSnapshot.swift
[323/719] Compiling DatadogSessionReplay ViewTreeSnapshotBuilder.swift
[324/729] Compiling DatadogCore BatteryStatusPublisher.swift
[325/729] Compiling DatadogCore BrightnessLevelPublisher.swift
[326/729] Compiling DatadogCore CarrierInfoPublisher.swift
[327/729] Compiling DatadogCore ContextValuePublisher.swift
[328/729] Compiling DatadogCore DatadogContextProvider.swift
[329/729] Compiling DatadogCore SharedContext.swift
[330/729] Compiling DatadogCore CrossPlatformExtension.swift
[331/729] Compiling DatadogCore CITestIntegration.swift
[332/729] Compiling DatadogCore KronosClock.swift
[333/729] Compiling DatadogCore KronosDNSResolver.swift
[334/729] Emitting module DatadogSessionReplay
[335/729] Compiling DatadogSessionReplay TouchSnapshotProducer.swift
[336/729] Compiling DatadogSessionReplay UIApplicationSwizzler.swift
[337/729] Compiling DatadogSessionReplay WindowTouchSnapshotProducer.swift
[338/729] Compiling DatadogSessionReplay CFType+Safety.swift
[339/729] Compiling DatadogSessionReplay CGImage+SessionReplay.swift
[340/729] Compiling DatadogSessionReplay CGRect+SessionReplay.swift
[341/729] Compiling DatadogSessionReplay CGSize+SessionReplay.swift
[342/729] Compiling DatadogSessionReplay Int64+SessionReplay.swift
[343/729] Compiling DatadogSessionReplay Path+SessionReplay.swift
[344/729] Compiling DatadogSessionReplay SystemColors.swift
[345/729] Compiling DatadogSessionReplay UIColor+SessionReplay.swift
[346/729] Compiling DatadogCore Datadog.swift
[347/729] Compiling DatadogCore DatadogConfiguration+objc.swift
[348/729] Compiling DatadogCore DatadogConfiguration.swift
[349/729] Compiling DatadogCore ContextSharingFeature.swift
[350/729] Compiling DatadogCore ContextSharingTransformer.swift
[351/729] Compiling DatadogCore DataUploadDelay.swift
[352/729] Compiling DatadogCore DataUploadStatus.swift
[353/729] Compiling DatadogCore DataUploadWorker.swift
[354/729] Compiling DatadogCore DataUploader.swift
[355/729] Compiling DatadogCore FeatureUpload.swift
[356/729] Compiling DatadogCore HTTPClient.swift
[357/729] Compiling DatadogCore URLSessionClient.swift
[358/729] Compiling DatadogSessionReplay GraphicsImage+Reflection.swift
[359/729] Compiling DatadogSessionReplay GraphicsImage.swift
[360/729] Compiling DatadogSessionReplay ImageRenderer.swift
[361/729] Compiling DatadogSessionReplay ImageRepresentable.swift
[362/729] Compiling DatadogSessionReplay ShapeResource.swift
[363/729] Compiling DatadogSessionReplay ShapeResourceBuilder.swift
[364/729] Compiling DatadogSessionReplay SwiftUIWireframesBuilder.swift
[365/729] Compiling DatadogSessionReplay Text+Reflection.swift
[366/729] Compiling DatadogSessionReplay Text.swift
[367/729] Compiling DatadogSessionReplay UIActivityIndicatorRecorder.swift
[368/729] 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
[369/729] Compiling DatadogProfiling AppLaunchMetric.swift
[370/729] 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
[371/729] Compiling DatadogCore FeatureDataStore.swift
[372/729] Compiling DatadogCore DatadogCore.swift
[373/730] Compiling DatadogProfiling ProfileEvent.swift
[374/730] Compiling DatadogCore LowPowerModePublisher.swift
[375/730] Compiling DatadogCore NetworkConnectionInfoPublisher.swift
[376/730] Compiling DatadogCore ServerOffsetPublisher.swift
[377/730] Compiling DatadogCore TrackingConsentPublisher.swift
[378/730] Compiling DatadogCore UserInfoPublisher.swift
[379/730] Compiling DatadogCore DataStore+TLV.swift
[380/730] Compiling DatadogCore KronosNSTimer+ClosureKit.swift
[381/730] Compiling DatadogCore KronosNTPClient.swift
[382/730] Compiling DatadogCore KronosNTPPacket.swift
[383/730] Compiling DatadogCore KronosNTPProtocol.swift
[384/730] Compiling DatadogCore KronosTimeFreeze.swift
[385/730] Compiling DatadogCore KronosData+Bytes.swift
[386/730] Compiling DatadogCore KronosInternetAddress.swift
[387/730] Compiling DatadogCore FeatureStorage.swift
[388/730] Compiling DatadogCore Directory.swift
[389/730] Compiling DatadogCore File.swift
[390/730] Compiling DatadogCore FilesOrchestrator.swift
[391/730] Compiling DatadogCore DataReader.swift
[392/730] Compiling DatadogCore FileReader.swift
[393/730] Compiling DatadogCore Reader.swift
[394/730] Compiling DatadogCore LaunchInfoPublisher.swift
[395/730] Compiling DatadogCore LocaleInfoPublisher.swift
[396/730] Compiling DatadogCore KronosTimeStorage.swift
[397/730] Compiling DatadogCore URLSessionInstrumentation+objc.swift
[398/730] Compiling DatadogCore Storage+TLV.swift
[399/730] Compiling DatadogCore AsyncWriter.swift
[400/730] Compiling DatadogCore FileWriter.swift
[401/730] Compiling DatadogCore TLVBlock.swift
[402/730] Compiling DatadogCore TLVBlockReader.swift
[403/730] Compiling DatadogCore BackgroundTaskCoordinator.swift
[404/730] Compiling DatadogCore DataUploadConditions.swift
[405/730] Compiling DatadogCore Datadog+Internal.swift
[406/730] Compiling DatadogCore Datadog+objc.swift
[407/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
[408/730] Compiling DatadogProfiling ProfilingConfiguration.swift
[409/730] Compiling DatadogProfiling RequestBuilder.swift
[410/730] Compiling DatadogCore DataStoreFileReader.swift
[411/730] Compiling DatadogCore DataStoreFileWriter.swift
[412/730] 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
[413/730] 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
[414/730] Compiling DatadogCore ApplicationStatePublisher.swift
[415/730] Compiling DatadogCore ApplicationVersionPublisher.swift
[420/733] Compiling DatadogCore AccountInfoPublisher.swift
[426/733] Compiling DatadogCore MessageBus.swift
[427/733] Compiling DatadogCore DataEncryption.swift
[428/733] Compiling DatadogCore Directories.swift
[429/733] Compiling DatadogCore EventGenerator.swift
[433/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
[436/734] Compiling DatadogLogs RemoteLogger.swift
[446/734] Compiling DatadogProfiling resource_bundle_accessor.swift
[447/734] Compiling DatadogSessionReplay UIView+SessionReplayPrivacyOverrides+objc.swift
[448/734] Compiling DatadogSessionReplay CGRectExtensions.swift
[449/734] Compiling DatadogSessionReplay Colors.swift
[450/734] Compiling DatadogSessionReplay Errors.swift
[451/734] Compiling DatadogSessionReplay Queue.swift
[452/734] Compiling DatadogSessionReplay Scheduler.swift
[453/734] Compiling DatadogSessionReplay ScreenChangeScheduler.swift
[454/734] Compiling DatadogSessionReplay RecordWriter.swift
[455/734] Compiling DatadogSessionReplay ResourcesWriter.swift
[456/734] Compiling DatadogSessionReplay SRCompression.swift
[459/734] 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
[460/734] 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
[463/734] 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
[464/734] 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
[465/734] Emitting module DatadogFlags
[466/734] Compiling DatadogWebViewTracking MessageEmitter.swift
[467/734] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[468/734] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[469/734] Emitting module DatadogWebViewTracking
[470/734] Compiling DatadogWebViewTracking WebViewTracking.swift
/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
/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
[487/734] Emitting module DatadogLogs
[488/734] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[499/739] Emitting module DatadogTrace
[517/739] Compiling DatadogFlags FlagValue.swift
[518/739] Compiling DatadogFlags FlagsError.swift
[519/739] Compiling DatadogFlags FlagsEvaluationContext.swift
[537/739] Compiling DatadogLogs LogEventMapper.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 |
[549/739] 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 |
[550/739] 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 |
[551/739] 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 |
[552/739] 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 |
[553/739] 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 |
[554/739] 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 |
[555/739] 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 |
[556/739] 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/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[591/751] 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 |
[592/751] 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 |
[593/751] 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 |
[594/751] 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 |
[595/751] 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 |
[634/758] 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
/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
/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/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[714/758] Compiling DatadogCore PerformancePreset.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 |
[715/758] Compiling DatadogCore BatchMetrics.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[716/758] Compiling DatadogCore BenchmarkURLSessionTaskDelegate.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[717/758] Compiling DatadogCore Cryptography.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[718/758] Compiling DatadogCore Retrying.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[719/758] Compiling DatadogCore Versioning.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[720/758] 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 |
[726/758] 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 |
[727/758] 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 |
[728/758] 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 |
[729/758] 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 |
[730/758] 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 |
[731/758] 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 |
[732/758] 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 |
[733/758] 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 |
[734/758] 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 |
[735/758] 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 |
[736/758] 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 |
[737/758] 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)
[745/758] 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/Datadog/RUM/UIViewControllerSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.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/FeatureContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/ContextSharingTransformerTests.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/Core/Upload/DataUploadStatusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/CrossPlatformExtensionTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDCrossPlatformExtension+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.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/KronosTimeStorageTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Extensions/ContextSharing/SharedContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.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/FileTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDLogs+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/FirstFrameReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDTrace+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
warning: 'spi-builder-workspace': found 67 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogRUM/RUM_FEATURE.md
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/AppLaunchMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/AppStateManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/FlagEvaluationReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Heatmaps/HeatmapIdentifierStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/StartupTypeHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMFeatureOperationManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewDelegateProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMScrollHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/HeaderCapture/HeaderProcessorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/ThirdPartyDelegateProxy.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.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/RUMMonitor/RUMCommandTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMAppLaunchManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/UIKit/UIScrollViewSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.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/Monitor+GlobalAttributesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.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/DatadogDiagnosticFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogTypeSafeFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashBacktraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportSenderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/CrashFieldDictionaryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogCrashReportFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashContextCoreProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/DatadogMinifyFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/KSCrashIntegration/KSCrashPluginTests.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/Mach/mach_sampling_profiler.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SDKMetrics/ProfilingTelemetryControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/dd_pprof.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/AppLaunchProfilerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.pb-c.c
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile_pprof_packer.cpp
/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/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/CTorProfilerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/ctor_profiler.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilerFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileCxxTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfileMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/mach_profiler.cpp
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingTest.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/SafeReadTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Mach/profile.cpp
/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/Mach/protobuf-c.c
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/ProfilingConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachProfilerCAPITests.swift
/Users/admin/builder/spi-builder-workspace/DatadogProfiling/Tests/MachSamplingProfilerTests.swift
BUILD FAILURE 6.1 macosSpm