Build Information
Failed to build Datadog, reference 3.4.0 (2cddcb), with Swift 6.1 for macOS (SPM) on 11 Dec 2025 11:21:17 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
11 | ///
12 | /// The bus dispatches messages on a serial queue.
13 | internal final class MessageBus {
| `- note: class 'MessageBus' does not conform to the 'Sendable' protocol
14 | /// The message bus GDC queue.
15 | let queue = DispatchQueue(
:
96 |
97 | queue.async {
98 | guard let core = self.core else {
| `- warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
99 | return
100 | }
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:103:37: warning: capture of 'message' with non-sendable type 'FeatureMessage' in a '@Sendable' closure
101 |
102 | let receivers = self.bus.values.filter {
103 | $0.receive(message: message, from: core)
| `- warning: capture of 'message' with non-sendable type 'FeatureMessage' in a '@Sendable' closure
104 | }
105 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessage.swift:10:13: note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
8 |
9 | /// The set of messages that can be transmitted on the Features message bus.
10 | public enum FeatureMessage {
| `- note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
11 | /// A custom payload message.
12 | case payload(Any)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:107:17: warning: capture of 'fallback' with non-sendable type '() -> Void' in a '@Sendable' closure
105 |
106 | if receivers.isEmpty {
107 | fallback()
| |- warning: capture of 'fallback' with non-sendable type '() -> Void' in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
108 | }
109 | }
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:103:37: warning: capture of 'message' with non-sendable type 'FeatureMessage' in an isolated closure; this is an error in the Swift 6 language mode
101 |
102 | let receivers = self.bus.values.filter {
103 | $0.receive(message: message, from: core)
| `- warning: capture of 'message' with non-sendable type 'FeatureMessage' in an isolated closure; this is an error in the Swift 6 language mode
104 | }
105 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessage.swift:10:13: note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
8 |
9 | /// The set of messages that can be transmitted on the Features message bus.
10 | public enum FeatureMessage {
| `- note: enum 'FeatureMessage' does not conform to the 'Sendable' protocol
11 | /// A custom payload message.
12 | case payload(Any)
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:121:13: warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
11 | ///
12 | /// The bus dispatches messages on a serial queue.
13 | internal final class MessageBus {
| `- note: class 'MessageBus' does not conform to the 'Sendable' protocol
14 | /// The message bus GDC queue.
15 | let queue = DispatchQueue(
:
119 | queue.async {
120 | // merge with the current configuration if any
121 | self.configuration = self.configuration.map {
| `- warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
122 | $0.merged(with: configuration)
123 | } ?? configuration
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:122:33: warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in a '@Sendable' closure
120 | // merge with the current configuration if any
121 | self.configuration = self.configuration.map {
122 | $0.merged(with: configuration)
| `- warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in a '@Sendable' closure
123 | } ?? configuration
124 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
8 |
9 | /// Defines the type of configuration telemetry events supported by the SDK.
10 | public struct ConfigurationTelemetry: Equatable {
| `- note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
11 | public let actionNameAttribute: String?
12 | public let allowFallbackToLocalStorage: Bool?
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:122:33: warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in an isolated closure; this is an error in the Swift 6 language mode
120 | // merge with the current configuration if any
121 | self.configuration = self.configuration.map {
122 | $0.merged(with: configuration)
| `- warning: capture of 'configuration' with non-sendable type 'ConfigurationTelemetry' in an isolated closure; this is an error in the Swift 6 language mode
123 | } ?? configuration
124 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
8 |
9 | /// Defines the type of configuration telemetry events supported by the SDK.
10 | public struct ConfigurationTelemetry: Equatable {
| `- note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
11 | public let actionNameAttribute: String?
12 | public let allowFallbackToLocalStorage: Bool?
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:123:18: warning: implicit capture of 'configuration' requires that 'ConfigurationTelemetry' conforms to 'Sendable'; this is an error in the Swift 6 language mode
121 | self.configuration = self.configuration.map {
122 | $0.merged(with: configuration)
123 | } ?? configuration
| `- warning: implicit capture of 'configuration' requires that 'ConfigurationTelemetry' conforms to 'Sendable'; this is an error in the Swift 6 language mode
124 | }
125 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Telemetry/Telemetry.swift:10:15: note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
8 |
9 | /// Defines the type of configuration telemetry events supported by the SDK.
10 | public struct ConfigurationTelemetry: Equatable {
| `- note: struct 'ConfigurationTelemetry' does not conform to the 'Sendable' protocol
11 | public let actionNameAttribute: String?
12 | public let allowFallbackToLocalStorage: Bool?
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/FeaturesIntegration/CITestIntegration.swift:18:16: warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
13 | }
14 |
15 | internal class CITestIntegration {
| `- note: class 'CITestIntegration' does not conform to the 'Sendable' protocol
16 | /// Current and active integration with CIApp.
17 | /// `nil` if the integration is not enabled.
18 | static let active: CITestIntegration? = CITestIntegration()
| |- warning: static property 'active' is not concurrency-safe because non-'Sendable' type 'CITestIntegration?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | /// RUMCITest model to be attached to events, it contains the CI context
20 | let testExecutionId: String
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[604/706] 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 |
[605/706] 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 |
[606/706] Compiling DatadogRUM SessionEndedMetric.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[631/717] Compiling DatadogWebViewTracking WebViewTracking.swift
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:50:53: warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
48 | try runOnMainThreadSync {
49 | try enableOrThrow(
50 | tracking: webView.configuration.userContentController,
| `- warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
51 | hosts: hosts,
52 | hostsSanitizer: HostsSanitizer(),
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:118:56: note: property declared here
116 | /*! @abstract The user content controller to associate with the web view.
117 | */
118 | @property (nonatomic, strong) WKUserContentController *userContentController;
| `- note: property declared here
119 |
120 | /*! @abstract The web extension controller to associate with the web view.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:50:39: warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
48 | try runOnMainThreadSync {
49 | try enableOrThrow(
50 | tracking: webView.configuration.userContentController,
| `- warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
51 | hosts: hosts,
52 | hostsSanitizer: HostsSanitizer(),
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:91:63: note: property declared here
89 | /*! @abstract A copy of the configuration with which the web view was
90 | initialized. */
91 | @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
| `- note: property declared here
92 |
93 | /*! @abstract The web view's navigation delegate. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:58:13: warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
56 | }
57 | } catch let error {
58 | consolePrint("\(error)", .error)
| `- warning: reference to var 'consolePrint' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:37:12: note: var declared here
35 |
36 | /// Function printing `String` content to console.
37 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
| `- note: var declared here
38 | #if canImport(OSLog)
39 | if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:69:48: warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
66 | ///
67 | /// - Parameter webView: The web-view to stop tracking.
68 | public static func disable(webView: WKWebView) {
| `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
69 | let controller = webView.configuration.userContentController
| `- warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:118:56: note: property declared here
116 | /*! @abstract The user content controller to associate with the web view.
117 | */
118 | @property (nonatomic, strong) WKUserContentController *userContentController;
| `- note: property declared here
119 |
120 | /*! @abstract The web extension controller to associate with the web view.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:69:34: warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
66 | ///
67 | /// - Parameter webView: The web-view to stop tracking.
68 | public static func disable(webView: WKWebView) {
| `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
69 | let controller = webView.configuration.userContentController
| `- warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:91:63: note: property declared here
89 | /*! @abstract A copy of the configuration with which the web view was
90 | initialized. */
91 | @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
| `- note: property declared here
92 |
93 | /*! @abstract The web view's navigation delegate. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:70: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
66 | ///
67 | /// - Parameter webView: The web-view to stop tracking.
68 | public static func disable(webView: WKWebView) {
| `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
69 | let controller = webView.configuration.userContentController
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
| `- warning: call to main actor-isolated instance method 'removeScriptMessageHandler(forName:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
72 | controller.removeAllUserScripts()
WebKit.WKUserContentController.removeScriptMessageHandler:2:22: note: calls to instance method 'removeScriptMessageHandler(forName:)' from outside of its actor context are implicitly asynchronous
1 | class WKUserContentController {
2 | @MainActor open func removeScriptMessageHandler(forName name: String)}
| `- note: calls to instance method 'removeScriptMessageHandler(forName:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:70:79: warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
66 | ///
67 | /// - Parameter webView: The web-view to stop tracking.
68 | public static func disable(webView: WKWebView) {
| `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
69 | let controller = webView.configuration.userContentController
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
| `- warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
72 | controller.removeAllUserScripts()
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:14:16: note: static property declared here
12 |
13 | internal class DDScriptMessageHandler: NSObject, WKScriptMessageHandler {
14 | static let name = "DatadogEventBridge"
| `- note: static property declared here
15 |
16 | let emitter: MessageEmitter
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:71:33: warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
66 | ///
67 | /// - Parameter webView: The web-view to stop tracking.
68 | public static func disable(webView: WKWebView) {
| `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
69 | let controller = webView.configuration.userContentController
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
| `- warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
72 | controller.removeAllUserScripts()
73 | others.forEach(controller.addUserScript)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserContentController.h:50:64: note: property declared here
48 | controller.
49 | */
50 | @property (nonatomic, readonly, copy) NSArray<WKUserScript *> *userScripts;
| `- note: property declared here
51 |
52 | /*! @abstract Adds a user script.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:71:58: warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
69 | let controller = webView.configuration.userContentController
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
| `- warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
72 | controller.removeAllUserScripts()
73 | others.forEach(controller.addUserScript)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserScript.h:50:49: note: property declared here
48 |
49 | /* @abstract The script source code. */
50 | @property (nonatomic, readonly, copy) NSString *source;
| `- note: property declared here
51 |
52 | /* @abstract When the script should be injected. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:72:20: warning: call to main actor-isolated instance method 'removeAllUserScripts()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
66 | ///
67 | /// - Parameter webView: The web-view to stop tracking.
68 | public static func disable(webView: WKWebView) {
| `- note: add '@MainActor' to make static method 'disable(webView:)' part of global actor 'MainActor'
69 | let controller = webView.configuration.userContentController
70 | controller.removeScriptMessageHandler(forName: DDScriptMessageHandler.name)
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
72 | controller.removeAllUserScripts()
| `- warning: call to main actor-isolated instance method 'removeAllUserScripts()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
73 | others.forEach(controller.addUserScript)
74 | }
WebKit.WKUserContentController.removeAllUserScripts:2:22: note: calls to instance method 'removeAllUserScripts()' from outside of its actor context are implicitly asynchronous
1 | class WKUserContentController {
2 | @MainActor open func removeAllUserScripts()}
| `- note: calls to instance method 'removeAllUserScripts()' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:73:35: warning: converting function value of type '@MainActor @Sendable (WKUserScript) -> Void' to '(WKUserScript) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
71 | let others = controller.userScripts.filter { !$0.source.starts(with: Self.jsCodePrefix) }
72 | controller.removeAllUserScripts()
73 | others.forEach(controller.addUserScript)
| `- warning: converting function value of type '@MainActor @Sendable (WKUserScript) -> Void' to '(WKUserScript) throws -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
74 | }
75 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:93:37: warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | static let jsCodePrefix = "/* DatadogEventBridge */"
79 |
80 | static func enableOrThrow(
| `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
81 | tracking controller: WKUserContentController,
82 | hosts: Set<String>,
:
91 | }
92 |
93 | let isTracking = controller.userScripts.contains { $0.source.starts(with: Self.jsCodePrefix) }
| `- warning: main actor-isolated property 'userScripts' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
94 | guard !isTracking else {
95 | DD.logger.warn("`startTrackingDatadogEvents(core:hosts:)` was called more than once for the same WebView. Second call will be ignored. Make sure you call it only once.")
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserContentController.h:50:64: note: property declared here
48 | controller.
49 | */
50 | @property (nonatomic, readonly, copy) NSArray<WKUserScript *> *userScripts;
| `- note: property declared here
51 |
52 | /*! @abstract Adds a user script.
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:93:63: warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
91 | }
92 |
93 | let isTracking = controller.userScripts.contains { $0.source.starts(with: Self.jsCodePrefix) }
| `- warning: main actor-isolated property 'source' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
94 | guard !isTracking else {
95 | DD.logger.warn("`startTrackingDatadogEvents(core:hosts:)` was called more than once for the same WebView. Second call will be ignored. Make sure you call it only once.")
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserScript.h:50:49: note: property declared here
48 |
49 | /* @abstract The script source code. */
50 | @property (nonatomic, readonly, copy) NSString *source;
| `- note: property declared here
51 |
52 | /* @abstract When the script should be injected. */
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift:99:49: warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
78 | static let jsCodePrefix = "/* DatadogEventBridge */"
79 |
80 | static func enableOrThrow(
| `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
81 | tracking controller: WKUserContentController,
82 | hosts: Set<String>,
:
97 | }
98 |
99 | let bridgeName = DDScriptMessageHandler.name
| `- warning: main actor-isolated static property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
100 |
101 | 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:101: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
78 | static let jsCodePrefix = "/* DatadogEventBridge */"
79 |
80 | static func enableOrThrow(
| `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
81 | tracking controller: WKUserContentController,
82 | hosts: Set<String>,
:
99 | let bridgeName = DDScriptMessageHandler.name
100 |
101 | 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
102 | emitter: MessageEmitter(
103 | 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: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
78 | static let jsCodePrefix = "/* DatadogEventBridge */"
79 |
80 | static func enableOrThrow(
| `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
81 | tracking controller: WKUserContentController,
82 | hosts: Set<String>,
:
106 | )
107 |
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
78 | static let jsCodePrefix = "/* DatadogEventBridge */"
79 |
80 | static func enableOrThrow(
| `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
81 | tracking controller: WKUserContentController,
82 | 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
78 | static let jsCodePrefix = "/* DatadogEventBridge */"
79 |
80 | static func enableOrThrow(
| `- note: add '@MainActor' to make static method 'enableOrThrow(tracking:hosts:hostsSanitizer:logsSampleRate:in:)' part of global actor 'MainActor'
81 | tracking controller: WKUserContentController,
82 | 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:101:30: warning: sending value of non-Sendable type 'MessageEmitter' risks causing data races; this is an error in the Swift 6 language mode
99 | let bridgeName = DDScriptMessageHandler.name
100 |
101 | 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
102 | emitter: MessageEmitter(
103 | logsSampler: Sampler(samplingRate: logsSampleRate),
[632/717] Compiling DatadogWebViewTracking MessageEmitter.swift
[633/717] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:41:10: warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
38 | }
39 |
40 | extension DDScriptMessageHandler: Flushable {
| `- note: add '@preconcurrency' to the 'Flushable' conformance to defer isolation checking to run time
41 | func flush() {
| |- warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'flush()' to make this instance method not isolated to the actor
42 | queue.sync { }
43 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Concurrency/Flushable.swift:13:10: note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
11 | ///
12 | /// **blocks the caller thread**
13 | func flush()
| `- note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:35:37: warning: capture of 'body' with non-sendable type 'Any' in a '@Sendable' closure
33 | let body = message.body
34 | queue.async {
35 | self.emitter.send(body: body, slotId: hash)
| `- warning: capture of 'body' with non-sendable type 'Any' in a '@Sendable' closure
36 | }
37 | }
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:35:18: warning: main actor-isolated property 'emitter' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
14 | static let name = "DatadogEventBridge"
15 |
16 | let emitter: MessageEmitter
| `- note: property declared here
17 |
18 | let queue = DispatchQueue(
:
33 | let body = message.body
34 | queue.async {
35 | self.emitter.send(body: body, slotId: hash)
| `- warning: main actor-isolated property 'emitter' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
36 | }
37 | }
[634/717] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[635/717] Emitting module DatadogWebViewTracking
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/DDScriptMessageHandler.swift:41:10: warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
38 | }
39 |
40 | extension DDScriptMessageHandler: Flushable {
| `- note: add '@preconcurrency' to the 'Flushable' conformance to defer isolation checking to run time
41 | func flush() {
| |- warning: main actor-isolated instance method 'flush()' cannot be used to satisfy nonisolated requirement from protocol 'Flushable'; this is an error in the Swift 6 language mode
| `- note: add 'nonisolated' to 'flush()' to make this instance method not isolated to the actor
42 | queue.sync { }
43 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Concurrency/Flushable.swift:13:10: note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
11 | ///
12 | /// **blocks the caller thread**
13 | func flush()
| `- note: mark the protocol requirement 'flush()' 'async' to allow actor-isolated conformances
14 | }
15 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[636/717] Emitting module DatadogRUM
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[707/717] 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 |
[708/717] 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 |
[709/717] 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 |
[710/717] 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 |
[711/717] 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 |
[712/717] 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 |
[713/717] 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 |
[714/717] 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 |
[715/717] 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 |
[716/717] 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 |
[717/717] 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 |
Fetching https://github.com/microsoft/plcrashreporter.git
Fetching https://github.com/DataDog/opentelemetry-swift-packages.git
[9/834] Fetching opentelemetry-swift-packages
[835/17829] Fetching opentelemetry-swift-packages, plcrashreporter
Fetched https://github.com/microsoft/plcrashreporter.git from cache (2.16s)
Fetched https://github.com/DataDog/opentelemetry-swift-packages.git from cache (2.16s)
Computing version for https://github.com/DataDog/opentelemetry-swift-packages.git
Computed https://github.com/DataDog/opentelemetry-swift-packages.git at 1.13.1 (2.88s)
Computing version for https://github.com/microsoft/plcrashreporter.git
Computed https://github.com/microsoft/plcrashreporter.git at 1.12.2 (0.58s)
Creating working copy for https://github.com/microsoft/plcrashreporter.git
Working copy of https://github.com/microsoft/plcrashreporter.git resolved at 1.12.2
Creating working copy for https://github.com/DataDog/opentelemetry-swift-packages.git
Working copy of https://github.com/DataDog/opentelemetry-swift-packages.git resolved at 1.13.1
warning: 'spi-builder-workspace': found 132 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/Integrations/CrashReportReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDTrace+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.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/CarrierInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUM+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.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/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.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/BatteryStatusPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
warning: 'spi-builder-workspace': found 58 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/RUM_FEATURE.md
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.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/RUMMonitor/Scopes/RUMViewScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.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/RUMViewEventsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMFeatureOperationManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.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/RUMEvent/RUMEventBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/FlagEvaluationReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
warning: 'spi-builder-workspace': found 7 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/212] Compiling DatadogInternal URLSessionTaskInterception.swift
[3/212] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[4/212] Compiling DatadogInternal W3CHTTPHeaders.swift
[5/212] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[6/212] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[7/212] Compiling DatadogInternal MethodCalledMetric.swift
[8/212] Compiling DatadogInternal SDKMetricFields.swift
[9/212] Compiling DatadogInternal UploadQualityMetric.swift
[10/212] Compiling DatadogInternal Storage.swift
[11/212] Compiling DatadogInternal PerformancePresetOverride.swift
[12/212] Compiling DatadogInternal Writer.swift
[13/222] Compiling DatadogInternal B3HTTPHeaders.swift
[14/222] Compiling DatadogInternal B3HTTPHeadersReader.swift
[15/222] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[16/222] Compiling DatadogInternal HTTPHeadersReader.swift
[17/222] Compiling DatadogInternal HTTPHeadersWriter.swift
[18/222] Compiling DatadogInternal TracingHTTPHeaders.swift
[19/222] Compiling DatadogInternal DatadogURLSessionHandler.swift
[20/222] Compiling DatadogInternal FirstPartyHosts.swift
[21/222] Compiling DatadogInternal GraphQLRequestAttributes.swift
[22/222] Compiling DatadogInternal HostsSanitizer.swift
[23/222] Compiling DatadogInternal NetworkContext.swift
[24/222] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[25/222] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[26/222] Compiling DatadogInternal URLSessionInstrumentation.swift
[27/222] Compiling DatadogInternal URLSessionSwizzler.swift
[28/222] Compiling DatadogInternal URLSessionTask+Tracking.swift
[29/222] Compiling DatadogInternal Foundation+Datadog.swift
[30/222] Compiling DatadogInternal InternalExtended.swift
[31/222] Compiling DatadogInternal TimeInterval+Convenience.swift
[32/222] Compiling DatadogInternal FeatureMessage.swift
[33/222] Compiling DatadogInternal FeatureMessageReceiver.swift
[34/222] Compiling DatadogInternal BacktraceReport.swift
[35/222] Compiling DatadogInternal BinaryImage.swift
[36/222] Compiling DatadogInternal Crash.swift
[37/222] Compiling DatadogInternal CrashContext.swift
[38/222] Compiling DatadogInternal DDCrashReport.swift
[39/222] Compiling DatadogInternal DDThread.swift
[40/222] Compiling DatadogInternal LaunchReport.swift
[41/222] Compiling DatadogInternal LogEventAttributes.swift
[42/222] Compiling DatadogInternal NetworkConnectionInfo.swift
[43/222] Compiling DatadogInternal OperatingSystem+Utils.swift
[44/222] Compiling DatadogInternal Sysctl.swift
[45/222] Compiling DatadogInternal TrackingConsent.swift
[46/222] Compiling DatadogInternal LogMessage.swift
[47/222] Compiling DatadogInternal RUMCoreContext.swift
[48/222] Compiling DatadogInternal RUMDataModels.swift
[49/222] Compiling DatadogInternal RUMPayloadMessages.swift
[50/222] Compiling DatadogInternal RUMWebViewContext.swift
[51/222] Compiling DatadogInternal SessionReplayConfiguration.swift
[52/222] Compiling DatadogInternal SessionReplayCoreContext.swift
[53/222] Compiling DatadogInternal SpanCoreContext.swift
[54/222] Compiling DatadogInternal SpanID.swift
[55/222] Compiling DatadogInternal TraceID.swift
[56/222] Compiling DatadogInternal WebViewMessage.swift
[57/222] Compiling DatadogInternal ReadWriteLock.swift
[58/222] Compiling DatadogInternal Threading.swift
[59/222] Compiling DatadogInternal MethodSwizzler.swift
[60/222] Compiling DatadogInternal CoreLogger.swift
[61/222] Compiling DatadogInternal CoreLoggerLevel+objc.swift
[62/222] Compiling DatadogInternal InternalLogger+objc.swift
[63/222] Compiling DatadogInternal InternalLogger.swift
[64/222] Compiling DatadogInternal Telemetry.swift
[65/222] Compiling DatadogInternal DataCompression.swift
[66/222] Compiling DatadogInternal DataFormat.swift
[67/222] Compiling DatadogInternal DefaultJSONEncoder.swift
[68/222] Compiling DatadogInternal Event.swift
[69/222] Compiling DatadogInternal FeatureRequestBuilder.swift
[70/222] Compiling DatadogInternal URLRequestBuilder.swift
[71/222] Compiling DatadogInternal TraceContext.swift
[72/222] Compiling DatadogInternal TraceContextInjection.swift
[73/222] Compiling DatadogInternal TracePropagationHeadersReader.swift
[74/222] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[75/222] Compiling DatadogInternal TracingHeaderType+objc.swift
[76/222] Compiling DatadogInternal TracingHeaderType.swift
[77/222] Compiling DatadogInternal ImmutableRequest.swift
[78/222] Emitting module OpenTelemetryApi
[79/222] Compiling DatadogInternal Attributes.swift
[80/222] Compiling DatadogInternal AttributesSanitizer.swift
[81/222] Compiling DatadogInternal BacktraceReporter.swift
[82/222] Compiling DatadogInternal BacktraceReportingFeature.swift
[83/222] Compiling DatadogInternal BenchmarkProfiler.swift
[84/222] Compiling DatadogInternal AnyCodable.swift
[85/222] Compiling DatadogInternal AnyDecodable.swift
[86/222] Compiling DatadogInternal AnyEncodable.swift
[87/222] Compiling DatadogInternal DynamicCodingKey.swift
[88/222] Compiling DatadogInternal CompletionHandler.swift
[89/222] Compiling DatadogInternal Flushable.swift
[90/222] Compiling OpenTelemetryApi SpanContext.swift
[91/222] Compiling OpenTelemetryApi SpanException.swift
[92/222] Compiling OpenTelemetryApi SpanId.swift
[93/222] Compiling OpenTelemetryApi SpanKind.swift
[94/222] Compiling OpenTelemetryApi Status.swift
[95/222] Compiling OpenTelemetryApi TraceFlags.swift
[96/222] Compiling OpenTelemetryApi TraceId.swift
[97/222] Compiling OpenTelemetryApi TraceState.swift
[98/222] Compiling OpenTelemetryApi Tracer.swift
[99/222] Compiling OpenTelemetryApi TracerProvider.swift
[100/222] Compiling DatadogInternal UserInfo.swift
[101/222] Compiling DatadogInternal CoreRegistry.swift
[102/222] Compiling DatadogInternal DD.swift
[103/222] Compiling DatadogInternal DataStore.swift
[104/222] Compiling DatadogInternal DatadogCoreProtocol.swift
[105/222] Compiling DatadogInternal DatadogFeature.swift
[106/222] Compiling DatadogInternal Data+Crypto.swift
[107/222] Compiling DatadogInternal DatadogExtended.swift
[108/222] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[109/222] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
[167/234] Compiling DatadogInternal DatadogSite.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
[168/234] Compiling DatadogInternal DateProvider.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
[169/234] Compiling DatadogInternal DeviceInfo.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
[170/234] Compiling DatadogInternal LaunchInfo.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
[171/234] Compiling DatadogInternal LocaleInfo.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
[172/234] Compiling DatadogInternal UploadPerformancePreset.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[173/234] Compiling DatadogInternal Assert.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[174/234] Compiling DatadogInternal CustomDump.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[175/234] Compiling DatadogInternal DDError.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[176/234] Compiling DatadogInternal DateFormatting.swift
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Utils/DateFormatting.swift:14:1: warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
12 | }
13 |
14 | extension ISO8601DateFormatter: DateFormatterType, @unchecked Sendable {}
| |- warning: extension declares a conformance of imported type 'ISO8601DateFormatter' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 | extension DateFormatter: DateFormatterType, @unchecked Sendable {}
16 |
[177/234] 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 |
[178/234] 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 |
[179/234] 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 |
[180/234] 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 |
[181/234] 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 |
[182/234] 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 |
[183/234] 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 |
[184/234] Emitting module DatadogInternal
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/Context/AppState.swift:209: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
:
207 | public struct DefaultAppStateProvider: AppStateProvider {
208 | public init() {}
209 | 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
210 | }
211 |
/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 |
[235/604] Compiling DatadogSessionReplay ViewTreeSnapshotProducer.swift
[236/604] Compiling DatadogSessionReplay WindowViewTreeSnapshotProducer.swift
[237/604] Compiling DatadogSessionReplay AppWindowObserver.swift
[238/604] Compiling DatadogSessionReplay KeyWindowObserver.swift
[239/604] Compiling DatadogSessionReplay SessionReplay+objc.swift
[240/604] Compiling DatadogSessionReplay SessionReplay.swift
[241/604] Compiling DatadogSessionReplay SessionReplayConfiguration.swift
[242/604] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides+objc.swift
[243/604] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides.swift
[244/604] Compiling DatadogSessionReplay SessionReplayPrivacyView.swift
[245/614] Compiling DatadogTrace OTSpanContext+objc.swift
[246/614] Compiling DatadogTrace OTTracer+objc.swift
[247/614] Compiling DatadogTrace DDSpan+objc.swift
[248/614] Compiling DatadogTrace DDSpanContext+objc.swift
[249/614] Compiling DatadogCore DataStore+TLV.swift
[250/614] Compiling DatadogCore DataStoreFileReader.swift
[251/614] Compiling DatadogCore DataStoreFileWriter.swift
[252/614] Compiling DatadogCore FeatureDataStore.swift
[253/614] Compiling DatadogCore DatadogCore.swift
[254/614] Compiling DatadogCore MessageBus.swift
[255/614] Compiling DatadogCore DataEncryption.swift
[256/614] Compiling DatadogCrashReporting SwiftExtensions.swift
[257/614] Compiling DatadogCrashReporting ThirdPartyCrashReporter.swift
[258/615] Compiling DatadogSessionReplay NodeRecorder.swift
[259/615] Compiling DatadogSessionReplay Color+Reflection.swift
[260/615] Compiling DatadogSessionReplay Color.swift
[261/615] Compiling DatadogSessionReplay DisplayList+Reflection.swift
[262/615] Compiling DatadogSessionReplay DisplayList.swift
[263/615] Compiling DatadogSessionReplay Drawing.swift
[264/615] Compiling DatadogSessionReplay GraphicsFilter+Reflection.swift
[265/615] Compiling DatadogSessionReplay GraphicsFilter.swift
[266/615] Compiling DatadogSessionReplay GraphicsImage+Reflection.swift
[267/615] Compiling DatadogSessionReplay GraphicsImage.swift
[268/615] Compiling DatadogSessionReplay ImageRenderer.swift
[269/615] Compiling DatadogSessionReplay ImageRepresentable.swift
[270/615] Compiling DatadogSessionReplay ShapeResource.swift
[271/615] Compiling DatadogSessionReplay ShapeResourceBuilder.swift
[272/615] Compiling DatadogSessionReplay SwiftUIWireframesBuilder.swift
[273/615] Compiling DatadogSessionReplay Text+Reflection.swift
[274/615] Compiling DatadogSessionReplay Text.swift
[275/615] Compiling DatadogSessionReplay UIActivityIndicatorRecorder.swift
[276/615] Compiling DatadogSessionReplay UIDatePickerRecorder.swift
[277/615] Compiling DatadogRUM RUM+Internal.swift
[280/617] Compiling DatadogCore ApplicationVersionPublisher.swift
[281/617] Compiling DatadogCore BatteryStatusPublisher.swift
[282/617] Compiling DatadogCrashReporting PLCrashReporterPlugin.swift
[285/617] Compiling DatadogSessionReplay UITabBarRecorder.swift
[286/617] Compiling DatadogSessionReplay UITextFieldRecorder.swift
[287/617] Compiling DatadogSessionReplay UITextViewRecorder.swift
[288/617] Compiling DatadogSessionReplay UIViewRecorder.swift
[289/617] Compiling DatadogSessionReplay UnsupportedViewRecorder.swift
[290/617] Compiling DatadogSessionReplay WKWebViewRecorder.swift
[291/617] Compiling DatadogSessionReplay ViewTreeRecorder.swift
[292/617] Compiling DatadogSessionReplay ViewTreeRecordingContext.swift
[293/617] Compiling DatadogSessionReplay ViewTreeSnapshot.swift
[294/617] Compiling DatadogSessionReplay ViewTreeSnapshotBuilder.swift
[295/617] Compiling DatadogRUM RUM+objc.swift
[296/617] Compiling DatadogRUM RUM.swift
[297/617] Compiling DatadogRUM RUMConfiguration.swift
[298/617] Compiling DatadogRUM AccessibilityReader.swift
[299/617] Compiling DatadogRUM RUMContext.swift
[300/617] Compiling DatadogRUM RUMContextProvider.swift
[301/617] Compiling DatadogRUM RUMAccount.swift
[302/617] Compiling DatadogRUM RUMConnectivityInfoProvider.swift
[303/617] Compiling DatadogSessionReplay UIStepperRecorder.swift
[304/617] Compiling DatadogSessionReplay UISwitchRecorder.swift
[305/617] Emitting module DatadogFlags
[306/617] Compiling DatadogTrace TracingURLSessionHandler.swift
[307/617] Compiling DatadogCore LocaleInfoPublisher.swift
[308/617] Compiling DatadogCrashReporting PLCrashReporterIntegration.swift
[309/617] Compiling DatadogCore AccountInfoPublisher.swift
[310/617] Compiling DatadogCore ApplicationStatePublisher.swift
[312/617] Emitting module DatadogCrashReporting
[315/617] Compiling DatadogFlags FlagsError.swift
[316/617] Compiling DatadogFlags FlagsEvaluationContext.swift
[317/617] Compiling DatadogSessionReplay RecordingCoordinator.swift
[318/617] Compiling DatadogSessionReplay TouchIdentifierGenerator.swift
[319/617] Compiling DatadogSessionReplay TouchSnapshot.swift
[320/617] Compiling DatadogRUM MemoryWarningMonitor.swift
[321/617] Compiling DatadogSessionReplay UIApplicationSwizzler.swift
[322/617] Compiling DatadogSessionReplay WindowTouchSnapshotProducer.swift
[323/617] Compiling DatadogSessionReplay CFType+Safety.swift
[324/617] Compiling DatadogSessionReplay CGImage+SessionReplay.swift
[325/617] Compiling DatadogSessionReplay CGRect+SessionReplay.swift
[326/617] Compiling DatadogSessionReplay CGSize+SessionReplay.swift
[327/617] Compiling DatadogSessionReplay Int64+SessionReplay.swift
[328/617] Compiling DatadogSessionReplay Path+SessionReplay.swift
[329/617] Compiling DatadogSessionReplay SystemColors.swift
[330/617] Compiling DatadogSessionReplay UIColor+SessionReplay.swift
[331/617] Compiling DatadogSessionReplay UIImage+SessionReplay.swift
[332/617] Compiling DatadogSessionReplay UIView+SessionReplay.swift
[333/617] Compiling DatadogSessionReplay Xoshiro.swift
[334/617] Compiling DatadogSessionReplay NodeIDGenerator.swift
[341/617] Compiling DatadogCore BrightnessLevelPublisher.swift
[342/617] Compiling DatadogTrace MessageReceivers.swift
[343/617] Compiling DatadogTrace RequestBuilder.swift
[344/617] Compiling DatadogTrace TraceFeature.swift
[347/617] Compiling DatadogTrace OTSpan+objc.swift
[348/617] Emitting module DatadogSessionReplay
[349/617] Compiling DatadogSessionReplay UIView+SessionReplayPrivacyOverrides+objc.swift
[350/617] Compiling DatadogSessionReplay CGRectExtensions.swift
[351/617] Compiling DatadogSessionReplay Colors.swift
[352/617] Compiling DatadogSessionReplay Errors.swift
[353/617] Compiling DatadogSessionReplay Queue.swift
[354/617] Compiling DatadogSessionReplay MainThreadScheduler.swift
[355/617] Compiling DatadogSessionReplay Scheduler.swift
[356/617] Compiling DatadogSessionReplay RecordWriter.swift
[357/617] Compiling DatadogSessionReplay ResourcesWriter.swift
[358/617] Compiling DatadogSessionReplay SRCompression.swift
[363/618] Emitting module DatadogLogs
[366/618] Compiling DatadogWebViewTracking MessageEmitter.swift
[367/618] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[368/618] Emitting module DatadogWebViewTracking
[369/618] Compiling DatadogWebViewTracking WebViewTracking.swift
[370/618] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[388/622] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[389/622] Compiling DatadogLogs RemoteLogger.swift
[437/622] Compiling DatadogLogs LogEventMapper.swift
[443/622] Emitting module DatadogTrace
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[470/633] 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 |
[471/633] 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 |
[472/633] 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 |
[473/633] 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:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #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 |
[496/639] 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 |
[497/639] 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 |
[498/639] 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 |
[499/639] Compiling DatadogTrace Warnings.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[551/639] 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 |
[552/639] 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 |
[553/639] 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 |
[554/639] 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 |
[555/639] 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 |
[556/639] 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/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift:628:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
626 | internal import DatadogPrivate
627 | #else
628 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
629 | #endif
630 | #endif
[580/639] 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 |
[581/639] 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 |
[582/639] 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 |
[583/639] 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 |
[584/639] 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 |
[585/639] 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 |
[586/639] 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 |
[587/639] 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 |
[588/639] 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 |
[589/639] 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 |
[590/639] Compiling DatadogRUM resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[627/639] 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 |
warning: 'spi-builder-workspace': found 132 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDTrace+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.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/MessageBusTests.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/DataStoreFileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.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/Private/ObjcExceptionHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.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/BatteryStatusPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.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/VitalInfoSamplerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUM+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
warning: 'spi-builder-workspace': found 58 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/FlagEvaluationReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/RUM_FEATURE.md
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMFeatureOperationManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
warning: 'spi-builder-workspace': found 7 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
BUILD FAILURE 6.1 macosSpm