Build Information
Failed to build Datadog, reference 3.0.0 (f60c78
), with Swift 6.1 for macOS (SPM) on 2 Sep 2025 21:09:28 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
| `- warning: capture of 'core' with non-sendable type 'any DatadogCoreProtocol' in a '@Sendable' closure
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DatadogCoreProtocol.swift:14:17: note: protocol 'DatadogCoreProtocol' does not conform to the 'Sendable' protocol
12 | /// Any reference to `DatadogCoreProtocol` must be captured as `weak` within a Feature. This is to avoid
13 | /// retain cycle of core holding the Feature and vice-versa.
14 | public protocol DatadogCoreProtocol: AnyObject, MessageSending, AdditionalContextSharing, Storage {
| `- note: protocol 'DatadogCoreProtocol' does not conform to the 'Sendable' protocol
15 | // Remove `DatadogCoreProtocol` conformance to `MessageSending` and `BaggageSharing` once
16 | // all features are migrated to depend on `FeatureScope` interface.
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
6 |
7 | import Foundation
8 | import DatadogInternal
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DatadogInternal'
9 |
10 | /// The message-bus sends messages to a set of registered receivers.
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:71:23: 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(
:
69 | /// - key: The key associated with the receiver.
70 | func connect(_ receiver: FeatureMessageReceiver, forKey key: String) {
71 | queue.async { self.bus[key] = receiver }
| `- warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
72 | }
73 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:71:39: warning: capture of 'receiver' with non-sendable type 'any FeatureMessageReceiver' in a '@Sendable' closure
69 | /// - key: The key associated with the receiver.
70 | func connect(_ receiver: FeatureMessageReceiver, forKey key: String) {
71 | queue.async { self.bus[key] = receiver }
| `- warning: capture of 'receiver' with non-sendable type 'any FeatureMessageReceiver' in a '@Sendable' closure
72 | }
73 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/MessageBus/FeatureMessageReceiver.swift:14:17: note: protocol 'FeatureMessageReceiver' does not conform to the 'Sendable' protocol
12 | /// The message is composed of a key and a dictionary of attributes. The message format is a loose
13 | /// agreement between Features - all messages supported by a Feature should be properly documented.
14 | public protocol FeatureMessageReceiver {
| `- note: protocol 'FeatureMessageReceiver' does not conform to the 'Sendable' protocol
15 | /// Receives messages from the message bus.
16 | ///
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:78:23: 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(
:
76 | /// - Parameter key: The key to remove along with its associated receiver.
77 | func removeReceiver(forKey key: String) {
78 | queue.async { self.bus.removeValue(forKey: key) }
| `- warning: capture of 'self' with non-sendable type 'MessageBus' in a '@Sendable' closure
79 | }
80 |
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/MessageBus.swift:98:30: 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(
:
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/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.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/683] 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 |
[585/683] 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 |
[586/683] 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 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.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)
[620/683] 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 |
[621/683] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[622/683] 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 | }
[623/683] 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 |
[624/683] Compiling DatadogWebViewTracking MessageEmitter.swift
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:35:23: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 | override func send(body: Any, slotId: String? = nil) {
34 | guard let core = core else {
35 | return DD.logger.debug("Core must not be nil when using WebViewTracking")
| `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 | }
37 |
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 | /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 | /// SDK verbosity and send us their console log.
20 | public static var logger: CoreLogger = InternalLogger(
| `- note: static property declared here
21 | dateProvider: SystemDateProvider(),
22 | timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:59:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
57 | }
58 | } catch {
59 | DD.logger.error("Encountered an error when receiving web view event", error: error)
| `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
60 | core.telemetry.error("Encountered an error when receiving web view event", error: error)
61 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 | /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 | /// SDK verbosity and send us their console log.
20 | public static var logger: CoreLogger = InternalLogger(
| `- note: static property declared here
21 | dateProvider: SystemDateProvider(),
22 | timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:70:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
68 |
69 | core.send(message: .webview(message), else: {
70 | DD.logger.warn("A WebView log is lost because Logging is disabled in the SDK")
| `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
71 | })
72 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 | /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 | /// SDK verbosity and send us their console log.
20 | public static var logger: CoreLogger = InternalLogger(
| `- note: static property declared here
21 | dateProvider: SystemDateProvider(),
22 | timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:76:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
74 | private func send(rum message: WebViewMessage, in core: DatadogCoreProtocol) {
75 | core.send(message: .webview(message), else: {
76 | DD.logger.warn("A WebView RUM event is lost because RUM is disabled in the SDK")
| `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
77 | })
78 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 | /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 | /// SDK verbosity and send us their console log.
20 | public static var logger: CoreLogger = InternalLogger(
| `- note: static property declared here
21 | dateProvider: SystemDateProvider(),
22 | timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/MessageEmitter.swift:86:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
84 |
85 | core.send(message: .webview(.record(event, view)), else: {
86 | DD.logger.warn("A WebView Replay record is lost because Session Replay is disabled in the SDK")
| `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
87 | })
88 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 | /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 | /// SDK verbosity and send us their console log.
20 | public static var logger: CoreLogger = InternalLogger(
| `- note: static property declared here
21 | dateProvider: SystemDateProvider(),
22 | timeZone: .current,
[625/683] 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:33:12: note: var declared here
31 |
32 | /// Function printing `String` content to console.
33 | public var consolePrint: @Sendable (String, CoreLoggerLevel) -> Void = { message, level in
| `- note: var declared here
34 | #if canImport(OSLog)
35 | if #available(iOS 14.0, tvOS 14.0, *) {
/Users/admin/builder/spi-builder-workspace/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:95:16: warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
93 | let isTracking = controller.userScripts.contains { $0.source.starts(with: Self.jsCodePrefix) }
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.")
| `- warning: reference to static property 'logger' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
96 | return
97 | }
/Users/admin/builder/spi-builder-workspace/DatadogInternal/Sources/DD.swift:20:23: note: static property declared here
18 | /// to the SDK user**. Think of possible logs that we may want to receive from our users when asking them to enable
19 | /// SDK verbosity and send us their console log.
20 | public static var logger: CoreLogger = InternalLogger(
| `- note: static property declared here
21 | dateProvider: SystemDateProvider(),
22 | timeZone: .current,
/Users/admin/builder/spi-builder-workspace/DatadogWebViewTracking/Sources/WebViewTracking.swift: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),
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[638/683] 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 |
[639/683] 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 |
[640/683] 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 |
[641/683] 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 |
[642/683] 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 |
[643/683] 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 |
[644/683] 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 |
[645/683] 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 |
[646/683] 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 |
[647/683] 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 |
[648/683] Compiling DatadogRUM resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
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/DatadogCore+FeatureDirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/URLSessionAutoInstrumentation/Interception/URLFiltering/FirstPartyURLsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMInternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.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/Utils/CryptographyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/EventGeneratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUM+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LaunchInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDUIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDTrace+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/LoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/RUM/RUMDataModels+objcTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/FeatureContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/CustomObjcViewController.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/CarrierInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/DatadogPrivate/ObjcExceptionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/DisplayLinkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
warning: 'spi-builder-workspace': found 55 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsWatchdogThreadTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/ErrorMessageReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.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/Utils/SwiftExtensionTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportExporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.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/210] Compiling DatadogInternal SessionReplayConfiguration.swift
[3/210] Compiling DatadogInternal SessionReplayCoreContext.swift
[4/210] Compiling DatadogInternal SpanCoreContext.swift
[5/210] Compiling DatadogInternal SpanID.swift
[6/210] Compiling DatadogInternal TraceID.swift
[7/210] Compiling DatadogInternal WebViewMessage.swift
[8/210] Compiling DatadogInternal Foundation+Datadog.swift
[9/210] Compiling DatadogInternal InternalExtended.swift
[10/210] Compiling DatadogInternal TimeInterval+Convenience.swift
[11/210] Compiling DatadogInternal FeatureMessage.swift
[12/210] Compiling DatadogInternal FeatureMessageReceiver.swift
[13/210] Compiling DatadogInternal HTTPHeadersReader.swift
[14/210] Compiling DatadogInternal HTTPHeadersWriter.swift
[15/210] Compiling DatadogInternal TracingHTTPHeaders.swift
[16/210] Compiling DatadogInternal DatadogURLSessionHandler.swift
[17/210] Compiling DatadogInternal FirstPartyHosts.swift
[18/210] Compiling DatadogInternal HostsSanitizer.swift
[19/210] Compiling DatadogInternal NetworkContext.swift
[20/210] Compiling DatadogInternal NetworkContextProvider.swift
[21/210] Compiling DatadogInternal NetworkInstrumentationFeature.swift
[22/210] Compiling DatadogInternal TraceContext.swift
[23/210] Compiling DatadogInternal TraceContextInjection.swift
[24/210] Compiling DatadogInternal BacktraceReport.swift
[25/210] Compiling DatadogInternal BinaryImage.swift
[26/210] Compiling DatadogInternal Crash.swift
[27/210] Compiling DatadogInternal CrashContext.swift
[28/210] Compiling DatadogInternal DDCrashReport.swift
[29/210] Compiling DatadogInternal DDThread.swift
[30/210] Compiling DatadogInternal LaunchReport.swift
[31/210] Compiling DatadogInternal B3HTTPHeaders.swift
[32/210] Compiling DatadogInternal B3HTTPHeadersReader.swift
[33/210] Compiling DatadogInternal B3HTTPHeadersWriter.swift
[34/220] Compiling DatadogInternal Threading.swift
[35/220] Compiling DatadogInternal AccountInfo.swift
[36/220] Compiling DatadogInternal OperatingSystem+Utils.swift
[37/220] Compiling DatadogInternal Sysctl.swift
[38/220] Compiling DatadogInternal TrackingConsent.swift
[39/220] Compiling DatadogInternal UserInfo.swift
[40/220] Compiling DatadogInternal CoreRegistry.swift
[41/220] Compiling DatadogInternal DD.swift
[42/220] Compiling DatadogInternal DataStore.swift
[43/220] Compiling DatadogInternal DatadogCoreProtocol.swift
[44/220] Compiling DatadogInternal DatadogFeature.swift
[45/220] Compiling DatadogInternal URLSessionTaskDelegateSwizzler.swift
[46/220] Compiling DatadogInternal URLSessionTaskInterception.swift
[47/220] Compiling DatadogInternal URLSessionTaskSwizzler.swift
[48/220] Compiling DatadogInternal W3CHTTPHeaders.swift
[49/220] Compiling DatadogInternal W3CHTTPHeadersReader.swift
[50/220] Compiling DatadogInternal W3CHTTPHeadersWriter.swift
[51/220] Compiling DatadogInternal MethodCalledMetric.swift
[52/220] Compiling DatadogInternal SDKMetricFields.swift
[53/220] Compiling DatadogInternal UploadQualityMetric.swift
[54/220] Compiling DatadogInternal Storage.swift
[55/220] Compiling DatadogInternal PerformancePresetOverride.swift
[56/220] Compiling DatadogInternal DateProvider.swift
[57/220] Compiling DatadogInternal DeviceInfo.swift
[58/220] Compiling DatadogInternal LaunchInfo.swift
[59/220] Compiling DatadogInternal LocaleInfo.swift
[60/220] Compiling DatadogInternal NetworkConnectionInfo.swift
[61/220] Compiling DatadogInternal LogEventAttributes.swift
[62/220] Compiling DatadogInternal LogMessage.swift
[63/220] Compiling DatadogInternal RUMCoreContext.swift
[64/220] Compiling DatadogInternal RUMDataModels.swift
[65/220] Compiling DatadogInternal RUMPayloadMessages.swift
[66/220] Compiling DatadogInternal RUMWebViewContext.swift
[69/220] Compiling DatadogInternal TracePropagationHeadersReader.swift
[70/220] Compiling DatadogInternal TracePropagationHeadersWriter.swift
[71/220] Compiling DatadogInternal TracingHeaderType+objc.swift
[72/220] Compiling DatadogInternal TracingHeaderType.swift
[73/220] Compiling DatadogInternal ImmutableRequest.swift
[74/220] Compiling DatadogInternal NetworkInstrumentationSwizzler.swift
[75/220] Compiling DatadogInternal URLSessionDataDelegateSwizzler.swift
[76/220] Compiling DatadogInternal URLSessionInstrumentation.swift
[77/220] Compiling DatadogInternal URLSessionSwizzler.swift
[78/220] Compiling DatadogInternal URLSessionTask+Tracking.swift
[79/232] Emitting module OpenTelemetryApi
[80/232] Compiling DatadogInternal Attributes.swift
[81/232] Compiling DatadogInternal AttributesSanitizer.swift
[82/232] Compiling DatadogInternal BacktraceReporter.swift
[83/232] Compiling DatadogInternal BacktraceReportingFeature.swift
[84/232] Compiling DatadogInternal BenchmarkProfiler.swift
[85/232] Compiling DatadogInternal AnyCodable.swift
[86/232] Compiling DatadogInternal AnyDecodable.swift
[87/232] Compiling DatadogInternal AnyEncodable.swift
[88/232] Compiling DatadogInternal DynamicCodingKey.swift
[89/232] Compiling DatadogInternal Flushable.swift
[90/232] Compiling DatadogInternal ReadWriteLock.swift
[91/232] Compiling DatadogInternal Data+Crypto.swift
[92/232] Compiling DatadogInternal DatadogExtended.swift
[93/232] Compiling DatadogInternal FixedWidthInteger+Convenience.swift
[94/232] Compiling DatadogInternal AppState.swift
[95/232] Compiling DatadogInternal ApplicationNotifications.swift
[96/232] Compiling DatadogInternal BatteryStatus.swift
[97/232] Compiling DatadogInternal BrightnessLevel.swift
[98/232] Compiling DatadogInternal BundleType.swift
[99/232] Compiling DatadogInternal CarrierInfo.swift
[100/232] Compiling DatadogInternal DatadogContext.swift
[101/232] Compiling DatadogInternal DatadogSite.swift
[124/232] Compiling OpenTelemetryApi SpanContext.swift
[125/232] Compiling OpenTelemetryApi SpanException.swift
[126/232] Compiling OpenTelemetryApi SpanId.swift
[127/232] Compiling OpenTelemetryApi SpanKind.swift
[128/232] Compiling OpenTelemetryApi Status.swift
[129/232] Compiling OpenTelemetryApi TraceFlags.swift
[130/232] Compiling OpenTelemetryApi TraceId.swift
[131/232] Compiling OpenTelemetryApi TraceState.swift
[132/232] Compiling OpenTelemetryApi Tracer.swift
[133/232] Compiling OpenTelemetryApi TracerProvider.swift
[143/232] Compiling DatadogInternal Event.swift
[144/232] Compiling DatadogInternal FeatureRequestBuilder.swift
[145/232] Compiling DatadogInternal URLRequestBuilder.swift
[183/232] 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 |
[184/232] 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 |
[185/232] 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 |
[186/232] 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 |
[187/232] 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 |
[188/232] 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 |
[189/232] 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 |
[190/232] 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 |
[191/232] 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 |
[192/232] 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 |
[193/232] 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 |
[194/232] 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 |
[195/232] 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 |
/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 |
/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 |
[233/574] Compiling DatadogCrashReporting ThirdPartyCrashReporter.swift
[234/575] Compiling DatadogSessionReplay UITextFieldRecorder.swift
[235/575] Compiling DatadogSessionReplay UITextViewRecorder.swift
[236/575] Compiling DatadogSessionReplay UIViewRecorder.swift
[237/575] Compiling DatadogSessionReplay UnsupportedViewRecorder.swift
[238/575] Compiling DatadogSessionReplay WKWebViewRecorder.swift
[239/575] Compiling DatadogSessionReplay ViewTreeRecorder.swift
[240/575] Compiling DatadogSessionReplay ViewTreeRecordingContext.swift
[241/575] Compiling DatadogSessionReplay ViewTreeSnapshot.swift
[242/575] Compiling DatadogSessionReplay ViewTreeSnapshotBuilder.swift
[243/575] Compiling DatadogSessionReplay ViewTreeSnapshotProducer.swift
[244/575] Compiling DatadogSessionReplay WindowViewTreeSnapshotProducer.swift
[245/575] Compiling DatadogSessionReplay AppWindowObserver.swift
[246/575] Compiling DatadogSessionReplay KeyWindowObserver.swift
[247/575] Compiling DatadogSessionReplay SessionReplay+objc.swift
[248/575] Compiling DatadogSessionReplay SessionReplay.swift
[249/575] Compiling DatadogSessionReplay SessionReplayConfiguration.swift
[250/575] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides+objc.swift
[251/575] Compiling DatadogSessionReplay SessionReplayPrivacyOverrides.swift
[252/575] Compiling DatadogSessionReplay SessionReplayPrivacyView.swift
[253/575] Compiling DatadogSessionReplay UIView+SessionReplayPrivacyOverrides+objc.swift
[254/584] Compiling DatadogSessionReplay GraphicsImage.swift
[255/584] Compiling DatadogSessionReplay ImageRenderer.swift
[256/584] Compiling DatadogSessionReplay ImageRepresentable.swift
[257/584] Compiling DatadogSessionReplay SwiftUIWireframesBuilder.swift
[258/584] Compiling DatadogSessionReplay Text+Reflection.swift
[259/584] Compiling DatadogSessionReplay Text.swift
[260/584] Compiling DatadogSessionReplay UIActivityIndicatorRecorder.swift
[261/584] Compiling DatadogSessionReplay UIDatePickerRecorder.swift
[262/584] Compiling DatadogSessionReplay UIHostingViewRecorder.swift
[263/584] Compiling DatadogSessionReplay UIImageResource.swift
[264/584] Compiling DatadogSessionReplay UIImageViewRecorder.swift
[265/584] Compiling DatadogSessionReplay UILabelRecorder.swift
[266/584] Compiling DatadogSessionReplay UINavigationBarRecorder.swift
[267/584] Compiling DatadogSessionReplay UIPickerViewRecorder.swift
[268/584] Compiling DatadogSessionReplay UIProgressViewRecorder.swift
[269/584] Compiling DatadogSessionReplay UISegmentRecorder.swift
[270/584] Compiling DatadogSessionReplay UISliderRecorder.swift
[271/584] Compiling DatadogSessionReplay UIStepperRecorder.swift
[272/584] Compiling DatadogSessionReplay UISwitchRecorder.swift
[273/584] Compiling DatadogSessionReplay UITabBarRecorder.swift
[274/584] Compiling DatadogCrashReporting SwiftExtensions.swift
[275/584] Compiling DatadogCrashReporting PLCrashReporterPlugin.swift
[276/584] Emitting module DatadogSessionReplay
[277/584] Compiling DatadogSessionReplay NodeIDGenerator.swift
[278/584] Compiling DatadogSessionReplay NodeRecorder.swift
[279/584] Compiling DatadogSessionReplay Color+Reflection.swift
[280/584] Compiling DatadogSessionReplay Color.swift
[281/584] Compiling DatadogSessionReplay DisplayList+Reflection.swift
[282/584] Compiling DatadogSessionReplay DisplayList.swift
[283/584] Compiling DatadogSessionReplay Drawing.swift
[284/584] Compiling DatadogSessionReplay GraphicsFilter+Reflection.swift
[285/584] Compiling DatadogSessionReplay GraphicsFilter.swift
[286/584] Compiling DatadogSessionReplay GraphicsImage+Reflection.swift
[287/584] Compiling DatadogCore LowPowerModePublisher.swift
[288/584] Compiling DatadogCore NetworkConnectionInfoPublisher.swift
[289/584] Compiling DatadogCore ServerOffsetPublisher.swift
[290/584] Compiling DatadogCore TrackingConsentPublisher.swift
[291/584] Compiling DatadogCore UserInfoPublisher.swift
[292/584] Compiling DatadogCore DataStore+TLV.swift
[293/584] Compiling DatadogCore DataStoreFileReader.swift
[294/584] Compiling DatadogCore DataStoreFileWriter.swift
[295/584] Compiling DatadogSessionReplay NodesFlattener.swift
[296/584] Compiling DatadogSessionReplay TextObfuscator.swift
[297/584] Compiling DatadogSessionReplay ResourcesProcessor.swift
[298/584] Compiling DatadogSessionReplay SnapshotProcessor.swift
[299/584] Compiling DatadogSessionReplay PrivacyLevel.swift
[300/584] Compiling DatadogSessionReplay Recorder.swift
[301/584] Compiling DatadogSessionReplay RecordingCoordinator.swift
[302/584] Compiling DatadogSessionReplay TouchIdentifierGenerator.swift
[303/584] Compiling DatadogSessionReplay TouchSnapshot.swift
[304/584] Compiling DatadogSessionReplay TouchSnapshotProducer.swift
[305/584] Compiling DatadogSessionReplay UIApplicationSwizzler.swift
[306/584] Compiling DatadogSessionReplay WindowTouchSnapshotProducer.swift
[307/584] Compiling DatadogSessionReplay CFType+Safety.swift
[308/584] Compiling DatadogSessionReplay CGImage+SessionReplay.swift
[309/584] Compiling DatadogSessionReplay CGRect+SessionReplay.swift
[310/584] Compiling DatadogSessionReplay CGSize+SessionReplay.swift
[311/584] Compiling DatadogSessionReplay Int64+SessionReplay.swift
[312/584] Compiling DatadogSessionReplay SystemColors.swift
[313/584] Compiling DatadogSessionReplay UIColor+SessionReplay.swift
[314/584] Compiling DatadogSessionReplay UIImage+SessionReplay.swift
[315/584] Compiling DatadogSessionReplay UIView+SessionReplay.swift
[316/584] Compiling DatadogSessionReplay Xoshiro.swift
[317/584] Compiling DatadogCore LaunchInfoPublisher.swift
[318/584] Compiling DatadogCore LocaleInfoPublisher.swift
[319/584] Compiling DatadogCrashReporting PLCrashReporterIntegration.swift
[320/584] Compiling DatadogCore AccountInfoPublisher.swift
[321/584] Compiling DatadogCore ApplicationStatePublisher.swift
[322/585] Compiling DatadogWebViewTracking WebViewTracking.swift
[325/585] Compiling DatadogCore ApplicationVersionPublisher.swift
[326/585] Compiling DatadogCore BatteryStatusPublisher.swift
[327/585] Compiling DatadogCore BrightnessLevelPublisher.swift
[328/585] Compiling DatadogCore CarrierInfoPublisher.swift
[329/585] Compiling DatadogCore ContextValuePublisher.swift
[330/585] Compiling DatadogCore DatadogContextProvider.swift
[333/585] Compiling DatadogWebViewTracking WebViewTracking+objc.swift
[334/585] Compiling DatadogWebViewTracking MessageEmitter.swift
[335/585] Compiling DatadogWebViewTracking DDScriptMessageHandler.swift
[336/585] Emitting module DatadogWebViewTracking
[341/585] Emitting module DatadogCrashReporting
[344/585] Compiling DatadogSessionReplay CGRectExtensions.swift
[345/585] Compiling DatadogSessionReplay Colors.swift
[346/585] Compiling DatadogSessionReplay Errors.swift
[347/585] Compiling DatadogSessionReplay Queue.swift
[348/585] Compiling DatadogSessionReplay MainThreadScheduler.swift
[349/585] Compiling DatadogSessionReplay Scheduler.swift
[350/585] Compiling DatadogSessionReplay RecordWriter.swift
[351/585] Compiling DatadogSessionReplay ResourcesWriter.swift
[352/585] Compiling DatadogSessionReplay SRCompression.swift
[353/585] Emitting module DatadogLogs
[364/589] Compiling DatadogCrashReporting resource_bundle_accessor.swift
[365/589] Compiling DatadogLogs RemoteLogger.swift
[381/589] 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 |
[391/589] 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 |
[392/589] 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 |
[415/600] Compiling DatadogLogs LogEventMapper.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[449/606] 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/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[462/606] 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 |
[463/606] 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 |
[488/606] 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 |
[489/606] 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 |
[490/606] 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 |
[514/606] 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 |
[515/606] 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 |
[516/606] 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 |
[517/606] 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 |
[518/606] 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 |
[519/606] 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/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/Context/LaunchInfoPublisher.swift:15:26: warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
13 | internal import DatadogPrivate
14 | #else
15 | @_implementationOnly import DatadogPrivate
| `- warning: using '@_implementationOnly' without enabling library evolution for 'DatadogCore' may lead to instability during execution
16 | #endif
17 | #endif
/Users/admin/builder/spi-builder-workspace/DatadogCore/Sources/Core/DatadogCore.swift: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
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
[563/606] 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 |
[564/606] 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 |
[565/606] 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 |
[566/606] 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 |
[567/606] 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 |
[568/606] 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 |
[569/606] 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 |
[570/606] 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 |
[571/606] 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 |
[572/606] 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 |
[573/606] Compiling DatadogRUM resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Sources/Debugging/RUMDebugging.swift:8:8: error: no such module 'UIKit'
6 |
7 | import Foundation
8 | import UIKit
| `- error: no such module 'UIKit'
9 | import DatadogInternal
10 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[594/606] 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/Core/Persistence/EventGeneratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestrator+MetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDInternalLogger+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadDelayTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Casting+RUM.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DatadogTraceFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/FileTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDURLSessionInstrumentationConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/UIKitExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/RetryingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/InternalProxyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/FilesOrchestratorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/OpenTracing/OTSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BatteryStatusPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Mocks/RUM/RUMFeatureMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDLogsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DDErrorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalInfoSamplerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIViewControllerSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMConfigurationTests.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/Objc/DDUIKitRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LocaleInfoPublisherTests.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/Objc/RUM/RUMDataModels+objcTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DD/InternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Writing/FileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ServerOffsetPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/PerformancePresetTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/JSONEncoderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationStatePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosTimeStorageTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/DDSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashReporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIApplicationSwizzlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDDatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserverLoader.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDInternalLoggerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/ApplicationVersionPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/FeatureDataStoreTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDB3HTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/BrightnessLevelPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDSessionReplay+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Storage+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStore+TLVTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDRUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/AppBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDirectoriesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Reading/FileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/ViewHitchesReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/CITestIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Persistence/Files/DirectoryTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMEventOutputs/RUMEventFileOutputTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/TracingURLSessionHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/Integrations/CrashReportReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalRefreshRateReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TestUtilities/DirectoriesStub.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMDebuggingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/SwiftUIExtensionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosInternetAddressTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/FeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/TrackingConsentPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/UserInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalCPUReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/DatadogExtensions.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcAppLaunchHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/TLV/TLVBlockReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/MessageBusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadWorkerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/TracerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/LowPowerModePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDRUMMonitor+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/AccountInfoPublisherTests.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/FeatureContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/NetworkConnectionInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Utils/Casting+Tracing.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Tracing/OTelSpanTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/UIKitRUMViewsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadConditionsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/FeaturesIntegration/TracingWithLoggingIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDSwiftUIRUMActionsPredicateTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Helpers/NSURLSessionBridge.m
/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/DDRUMMonitorTests.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/CarrierInfoPublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/ExtensionBackgroundTaskCoordinatorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDURLSessionInstrumentationTests+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/URLSessionClientTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/CryptographyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/DDTraceConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/DatadogCore+FeatureDataStoreTests.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/Objc/ObjcAPITests/DDRUM+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/SDKMetrics/BatchMetricsTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Private/ObjcExceptionHandler.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDConfiguration+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Upload/DataUploadStatusTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/DatadogCore/Context/DatadogContextProviderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Logs/DatadogLogsFeatureTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/RUM/RUMVitals/VitalMemoryReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/CrashReporting/CrashContext/CrashContextTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDDatadog+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDW3CHTTPHeadersWriter+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Objc/ObjcAPITests/DDWebViewTracking+apiTests.m
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/DataStore/DataStoreFileWriterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/TestsObserver/DatadogTestsObserver.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Kronos/KronosNTPPacketTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCore/Tests/Datadog/Core/Utils/DateFormattingTests.swift
warning: 'spi-builder-workspace': found 55 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DataModels/RUMDataModelsMappingTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Monitor+GlobalAttributesTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMDeviceInfoTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationCheckerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/RUMActionsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryInterceptorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventSanitizerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/MonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMResourceScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMonitorTests.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/Instrumentation/MemoryWarnings/MemoryWarningMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/DDTAssertValidRUMUUID.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/TNSMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewCacheTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SwiftUIViewNameExtractorIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/RUMInstrumentationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMViewScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+ConvenienceTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Scrubbing/RUMEventsMapperTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/TelemetryReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Actions/SwiftUIComponentDetectorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/FatalErrorContextNotifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/BaggageHeaderMergerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMetrics/INVMetricTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Utils/ValuePublisherTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMEvent/RUMEventBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMViewEventsFilterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/MemoryWarnings/MemoryWarningMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/AnonymousIdentifierManagerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMUserActionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/ViewIdentifierTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/SDKMetrics/SessionEndedMetricControllerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMApplicationScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Resources/URLSessionRUMResourcesHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/LaunchReasonResolverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/AppHangs/AppHangsMonitorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMCommandTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/SwiftUIViewNameExtractorTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Feature/RequestBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMContext/AccessibilityReaderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/RUMScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocolTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/Views/RUMViewsHandlerTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/SessionReplayDependencyTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMConfigurationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationMocks.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/RUMSessionScopeTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitor/Scopes/Utils/RUMOffViewEventsHandlingRuleTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/RUMMonitorProtocol+InternalTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Integrations/WebViewEventReceiverTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogRUM/Tests/Instrumentation/WatchdogTerminations/WatchdogTerminationAppStateManagerTests.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/DDCrashReportExporterTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/DDCrashReportBuilderTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/CrashReportingPluginTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/PLCrashReporterIntegrationTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/Utils/SwiftExtensionTests.swift
/Users/admin/builder/spi-builder-workspace/DatadogCrashReporting/Tests/PLCrashReporterIntegration/CrashReportMinifierTests.swift
BUILD FAILURE 6.1 macosSpm