The Swift Package Index logo.Swift Package Index

Build Information

Failed to build EmbraceIO, reference main (5885a4), with Swift 6.1 for macOS (SPM) on 22 Apr 2026 22:27:48 UTC.

Build Command

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

Build Log

   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 |     private struct AssociatedKeys {
14 |         static var embraceSpanKey: UInt8 = 8
   |                    |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     }
16 |
[1559/1579] Compiling EmbraceCore ProcessInfo+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 |     static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 |     private struct AssociatedKeys {
14 |         static var embraceSpanKey: UInt8 = 8
   |                    |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     }
16 |
[1560/1579] Compiling EmbraceCore URL+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 |     static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 |     private struct AssociatedKeys {
14 |         static var embraceSpanKey: UInt8 = 8
   |                    |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     }
16 |
[1561/1579] Compiling EmbraceCore W3C+TraceParent.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 |     static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 |     private struct AssociatedKeys {
14 |         static var embraceSpanKey: UInt8 = 8
   |                    |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     }
16 |
[1562/1579] Compiling EmbraceCore W3C.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 |     static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 |     private struct AssociatedKeys {
14 |         static var embraceSpanKey: UInt8 = 8
   |                    |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     }
16 |
[1563/1579] Compiling EmbraceCore resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 |     static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/NSObject+Embrace.swift:14:20: warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | extension NSObject {
13 |     private struct AssociatedKeys {
14 |         static var embraceSpanKey: UInt8 = 8
   |                    |- warning: static property 'embraceSpanKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'embraceSpanKey' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: add '@MainActor' to make static property 'embraceSpanKey' part of global actor 'MainActor'
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewContext.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
18 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
19 | private struct EmbraceTraceEnvironmentKey: EnvironmentKey {
20 |     static let defaultValue: EmbraceTraceViewContext = EmbraceTraceViewContext()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewContext' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
   :
36 | ///   disappear) all refer to the same parent span until the cycle completes.
37 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
38 | final class EmbraceTraceViewContext {
   |             `- note: class 'EmbraceTraceViewContext' does not conform to the 'Sendable' protocol
39 |     /// The parent span for the current render cycle. Reset to `nil` once ended.
40 |     var firstCycleSpan: Span?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 17 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 18 | private struct EmbraceTraceViewLoggerEnvironmentKey: EnvironmentKey {
 19 |     static let defaultValue: EmbraceTraceViewLogger = EmbraceTraceViewLogger(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'EmbraceTraceViewLogger' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 20 |         otel: Embrace.client,
 21 |         logger: Embrace.logger,
    :
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:13: warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
 44 | /// If any dependency (OTel client, configuration, etc.) is absent, tracing is effectively disabled.
 45 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
 46 | final class EmbraceTraceViewLogger {
    |             `- note: class 'EmbraceTraceViewLogger' does not conform to the 'Sendable' protocol
 47 |     // MARK: – Properties
 48 |
    :
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |             `- warning: capture of 'self' with non-sendable type 'EmbraceTraceViewLogger' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:197:21: warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
195 |         // Schedule end-of-span on next main run loop cycle so child spans can attach
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
    |                     `- warning: capture of 'span' with non-sendable type 'any Span' in a '@Sendable' closure
198 |             completed()
199 |         }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/opentelemetry-swift-core/Sources/OpenTelemetryApi/Trace/Span.swift:107:17: note: protocol 'Span' does not conform to the 'Sendable' protocol
105 | /// Spans are created by the SpanBuilder.startSpan method.
106 | /// Span must be ended by calling end().
107 | public protocol Span: SpanBase, SpanExceptionRecorder {
    |                 `- note: protocol 'Span' does not conform to the 'Sendable' protocol
108 |   /// End the span.
109 |   func end()
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/SwiftUI/Internal/EmbraceTraceViewLogger.swift:198:13: warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
196 |         RunLoop.main.perform(inModes: [.common]) { [self] in
197 |             endSpan(span)
198 |             completed()
    |             |- warning: capture of 'completed' with non-sendable type '() -> Void' in a '@Sendable' closure
    |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
199 |         }
200 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainAccess.swift:19:16: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 |     private init() {}
18 |
19 |     static var keychain: KeychainInterface = DefaultKeychainInterface()
   |                |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     static var deviceId: UUID {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:67:17: warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
65 |         queue.async {
66 |             guard let dataFromString = value.data(using: String.Encoding.utf8, allowLossyConversion: false) else {
67 |                 completion(errSecParam)
   |                 |- warning: capture of 'completion' with non-sendable type '(OSStatus) -> Void' (aka '(Int32) -> ()') in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
68 |                 return
69 |             }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:73:34: warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
71 |             let query: NSMutableDictionary = [
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
   |                                  `- warning: capture of 'service' with non-sendable type 'CFString' in a '@Sendable' closure
74 |                 kSecAttrAccount: account,
75 |                 kSecValueData: dataFromString
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 3 | //
 4 |
 5 | import Foundation
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreFoundation'
 6 |
 7 | protocol KeychainInterface {
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Utils/KeychainInterface.swift:74:34: warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
72 |                 kSecClass: kSecClassGenericPassword,
73 |                 kSecAttrService: service,
74 |                 kSecAttrAccount: account,
   |                                  `- warning: capture of 'account' with non-sendable type 'CFString' in a '@Sendable' closure
75 |                 kSecValueData: dataFromString
76 |             ]
CoreFoundation.CFString:1:14: note: class 'CFString' does not conform to the 'Sendable' protocol
1 | public class CFString : _CFObject {
  |              `- note: class 'CFString' does not conform to the 'Sendable' protocol
2 | }
Fetching https://github.com/open-telemetry/opentelemetry-swift-core
Fetching https://github.com/kstenerud/KSCrash
Fetching https://github.com/swiftlang/swift-syntax.git from cache
[1/14002] Fetching opentelemetry-swift-core
[2522/39670] Fetching opentelemetry-swift-core, kscrash
Fetched https://github.com/swiftlang/swift-syntax.git from cache (1.84s)
Fetched https://github.com/kstenerud/KSCrash from cache (1.96s)
Fetched https://github.com/open-telemetry/opentelemetry-swift-core from cache (1.96s)
Computing version for https://github.com/kstenerud/KSCrash
Computed https://github.com/kstenerud/KSCrash at 2.5.1 (2.63s)
Computing version for https://github.com/open-telemetry/opentelemetry-swift-core
Computed https://github.com/open-telemetry/opentelemetry-swift-core at 2.4.1 (2.56s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-atomics.git from cache (0.65s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.14s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 603.0.1 (0.65s)
Creating working copy for https://github.com/open-telemetry/opentelemetry-swift-core
Working copy of https://github.com/open-telemetry/opentelemetry-swift-core resolved at 2.4.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 603.0.1
Creating working copy for https://github.com/kstenerud/KSCrash
Working copy of https://github.com/kstenerud/KSCrash resolved at 2.5.1
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/3] Write swift-version-2F0A5646E1D333AE.txt
[2/31] Compiling SwiftSyntax509 Empty.swift
[3/31] Emitting module SwiftSyntax509
[4/31] Compiling SwiftSyntax600 Empty.swift
[5/31] Emitting module SwiftSyntax600
[6/31] Compiling SwiftSyntax510 Empty.swift
[7/31] Compiling SwiftSyntax603 Empty.swift
[8/31] Compiling SwiftSyntax601 Empty.swift
[9/31] Emitting module SwiftSyntax510
[10/31] Emitting module SwiftSyntax603
[11/31] Emitting module SwiftSyntax601
[12/31] Compiling SwiftSyntax602 Empty.swift
[13/31] Emitting module SwiftSyntax602
[14/341] Compiling EmbraceConfiguration EmbraceConfigurable.swift
[15/341] Emitting module EmbraceConfiguration
[16/341] Compiling EmbraceConfiguration EmbraceConfigurable.swift
[17/341] Compiling EmbraceConfiguration DefaultConfig.swift
[18/341] Compiling EmbraceConfiguration HangLimits.swift
[19/341] Emitting module EmbraceConfiguration
[20/341] Compiling EmbraceConfiguration SpanEventsLimits.swift
[21/341] Compiling EmbraceConfiguration InternalLogLimits.swift
[22/341] Compiling EmbraceConfiguration LogsLimits.swift
[24/341] Compiling EmbraceConfiguration NetworkPayloadCaptureRule.swift
[26/341] Compiling EmbraceConfiguration SpanEventsLimits.swift
[27/341] Compiling EmbraceConfiguration DefaultConfig.swift
[28/341] Compiling EmbraceConfiguration HangLimits.swift
[29/341] Compiling EmbraceConfiguration InternalLogLimits.swift
[30/405] Compiling OpenTelemetryApi OpenTelemetryContextProvider.swift
[31/405] Compiling OpenTelemetryApi TaskLocalContextManager.swift
[32/405] Compiling OpenTelemetryApi StringUtils.swift
[33/405] Compiling OpenTelemetryApi SwiftExtensions.swift
[34/405] Compiling OpenTelemetryApi TracestateUtils.swift
[35/405] Compiling OpenTelemetryApi DefaultLogger.swift
[36/405] Compiling OpenTelemetryApi DefaultLoggerProvider.swift
[37/405] Compiling OpenTelemetryApi EventBuilder.swift
[38/405] Compiling OpenTelemetryApi LogRecordBuilder.swift
[39/405] Compiling OpenTelemetryApi Logger.swift
[40/405] Compiling OpenTelemetryApi LoggerBuilder.swift
[41/405] Compiling OpenTelemetryApi LoggerProvider.swift
[42/405] Compiling OpenTelemetryApi Severity.swift
[43/405] Compiling OpenTelemetryApi DefaultMeter.swift
[44/405] Compiling OpenTelemetryApi DefaultMeterProvider.swift
[45/405] Compiling OpenTelemetryApi DoubleCounter.swift
[46/405] Compiling OpenTelemetryApi Baggage.swift
[47/405] Compiling OpenTelemetryApi BaggageBuilder.swift
[48/405] Compiling OpenTelemetryApi BaggageManager.swift
[49/405] Compiling OpenTelemetryApi BaggageManagerProvider.swift
[50/405] Compiling OpenTelemetryApi DefaultBaggage.swift
[51/405] Compiling OpenTelemetryApi DefaultBaggageBuilder.swift
[52/405] Compiling OpenTelemetryApi DefaultBaggageManager.swift
[53/405] Compiling OpenTelemetryApi DefaultBaggageManagerProvider.swift
[54/405] Compiling OpenTelemetryApi EmptyBaggage.swift
[55/405] Compiling OpenTelemetryApi EmptyBaggageBuilder.swift
[56/405] Compiling OpenTelemetryApi Entry.swift
[57/405] Compiling OpenTelemetryApi EntryKey.swift
[58/405] Compiling OpenTelemetryApi EntryMetadata.swift
[59/405] Compiling OpenTelemetryApi EntryValue.swift
[60/405] Compiling OpenTelemetryApi JaegerBaggagePropagator.swift
[61/405] Compiling OpenTelemetryApi TextMapBaggagePropagator.swift
[62/405] Compiling OpenTelemetryApi W3CBaggagePropagator.swift
[63/405] Compiling OpenTelemetryApi ZipkinBaggagePropagator.swift
[64/422] Compiling OpenTelemetryApi ActivityContextManager.swift
[65/422] Compiling OpenTelemetryApi Nfs_attributes.swift
[66/422] Compiling OpenTelemetryApi Nodejs_attributes.swift
[67/422] Compiling OpenTelemetryApi Oci_attributes.swift
[68/422] Compiling OpenTelemetryApi OncRpc_attributes.swift
[69/422] Compiling OpenTelemetryApi Openai_attributes.swift
[70/422] Compiling OpenTelemetryApi Openshift_attributes.swift
[71/422] Compiling OpenTelemetryApi LongCounter.swift
[72/422] Compiling OpenTelemetryApi LongCounterBuilder.swift
[73/422] Compiling OpenTelemetryApi LongGauge.swift
[74/422] Compiling OpenTelemetryApi LongGaugeBuilder.swift
[75/422] Compiling OpenTelemetryApi LongHistogram.swift
[76/422] Compiling OpenTelemetryApi LongHistogramBuilder.swift
[77/422] Compiling OpenTelemetryApi LongUpDownCounter.swift
[78/422] Compiling OpenTelemetryApi LongUpDownCounterBuilder.swift
[79/422] Compiling OpenTelemetryApi Meter.swift
[80/422] Compiling OpenTelemetryApi MeterBuilder.swift
[81/422] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[82/422] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[83/422] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[84/422] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[85/422] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[86/422] Compiling SwiftSyntax RawSyntaxValidation.swift
[87/422] Compiling SwiftSyntax SyntaxNodesAB.swift
[88/422] Compiling SwiftSyntax SyntaxNodesC.swift
[89/422] Compiling SwiftSyntax SyntaxProtocol.swift
[90/422] Compiling SwiftSyntax SyntaxText.swift
[91/422] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[92/422] Compiling SwiftSyntax TokenDiagnostic.swift
[93/422] Compiling SwiftSyntax TokenSequence.swift
[94/422] Compiling SwiftSyntax TokenSyntax.swift
[95/422] Compiling SwiftSyntax Trivia.swift
[96/422] Compiling SwiftSyntax SyntaxCollections.swift
[97/422] Compiling SwiftSyntax SyntaxEnum.swift
[98/422] Compiling SwiftSyntax SyntaxKind.swift
[99/422] Compiling OpenTelemetryApi Nfs_attributes.swift
[100/422] Compiling OpenTelemetryApi Nodejs_attributes.swift
[101/422] Compiling OpenTelemetryApi Oci_attributes.swift
[102/422] Compiling OpenTelemetryApi OncRpc_attributes.swift
[103/422] Compiling OpenTelemetryApi Openai_attributes.swift
[104/422] Compiling OpenTelemetryApi Openshift_attributes.swift
[105/422] Compiling OpenTelemetryApi Opentracing_attributes.swift
[106/422] Compiling OpenTelemetryApi Os_attributes.swift
[107/422] Compiling OpenTelemetryApi Otel_attributes.swift
[108/422] Compiling OpenTelemetryApi Peer_attributes.swift
[109/422] Compiling OpenTelemetryApi Pprof_attributes.swift
[110/422] Compiling OpenTelemetryApi Process_attributes.swift
[111/422] Compiling OpenTelemetryApi Profile_attributes.swift
[112/422] Compiling OpenTelemetryApi Rpc_attributes.swift
[113/422] Compiling OpenTelemetryApi SecurityRule_attributes.swift
[114/422] Compiling OpenTelemetryApi Server_attributes.swift
[115/422] Compiling OpenTelemetryApi Service_attributes.swift
[116/422] Compiling OpenTelemetryApi File_attributes.swift
[117/422] Compiling OpenTelemetryApi Session_attributes.swift
[118/422] Compiling OpenTelemetryApi Signalr_attributes.swift
[119/422] Compiling OpenTelemetryApi Source_attributes.swift
[120/422] Compiling OpenTelemetryApi System_attributes.swift
[121/422] Compiling OpenTelemetryApi Telemetry_attributes.swift
[122/422] Compiling OpenTelemetryApi Test_attributes.swift
[123/422] Compiling OpenTelemetryApi Thread_attributes.swift
[124/422] Compiling OpenTelemetryApi Tls_attributes.swift
[125/422] Compiling OpenTelemetryApi Url_attributes.swift
[126/422] Compiling OpenTelemetryApi UserAgent_attributes.swift
[127/422] Compiling OpenTelemetryApi User_attributes.swift
[128/422] Compiling OpenTelemetryApi V8js_attributes.swift
[129/422] Compiling OpenTelemetryApi Vcs_attributes.swift
[130/422] Compiling OpenTelemetryApi Webengine_attributes.swift
[131/422] Compiling OpenTelemetryApi Zos_attributes.swift
[132/422] Compiling OpenTelemetryApi SemanticConventions.swift
[150/439] Compiling SwiftSyntax SyntaxRewriter.swift
[151/439] Compiling SwiftSyntax SyntaxTraits.swift
[152/439] Compiling SwiftSyntax SyntaxVisitor.swift
[153/439] Compiling SwiftSyntax TokenKind.swift
[154/439] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[155/439] Compiling SwiftSyntax Syntax.swift
[156/439] Compiling SwiftSyntax SyntaxChildren.swift
[157/439] Compiling SwiftSyntax SyntaxCollection.swift
[158/439] Compiling SwiftSyntax SyntaxHashable.swift
[159/439] Compiling SwiftSyntax SyntaxIdentifier.swift
[160/439] Compiling SwiftSyntax SyntaxNodeStructure.swift
[161/439] Compiling OpenTelemetryApi Enduser_attributes.swift
[162/439] Compiling OpenTelemetryApi Error_attributes.swift
[163/439] Compiling OpenTelemetryApi Exception_attributes.swift
[164/439] Compiling OpenTelemetryApi Faas_attributes.swift
[165/439] Compiling OpenTelemetryApi FeatureFlag_attributes.swift
[200/439] Compiling OpenTelemetryApi ContextManager.swift
[218/439] Compiling SwiftSyntax CustomTraits.swift
[219/439] Compiling SwiftSyntax EditorPlaceholder.swift
[220/439] Compiling SwiftSyntax Identifier.swift
[221/439] Compiling SwiftSyntax MemoryLayout.swift
[222/439] Compiling SwiftSyntax MissingNodeInitializers.swift
[223/439] Compiling SwiftSyntax RawSyntax.swift
[224/439] Compiling SwiftSyntax RawSyntaxArena.swift
[225/439] Compiling SwiftSyntax AbsolutePosition.swift
[226/439] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[227/439] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[228/439] Compiling SwiftSyntax Assert.swift
[229/439] Compiling SwiftSyntax BumpPtrAllocator.swift
[230/439] Compiling SwiftSyntax CommonAncestor.swift
[231/439] Compiling SwiftSyntax Convenience.swift
[232/439] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[233/439] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[234/439] Compiling SwiftSyntax RawSyntaxTokenView.swift
[235/439] Compiling SwiftSyntax SourceEdit.swift
[236/439] Compiling SwiftSyntax SourceLength.swift
[237/439] Compiling SwiftSyntax SourceLocation.swift
[238/439] Compiling SwiftSyntax SourcePresence.swift
[239/439] Compiling SwiftSyntax Utils.swift
[240/439] Compiling SwiftSyntax ChildNameForKeyPath.swift
[241/439] Compiling SwiftSyntax Keyword.swift
[242/439] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[243/439] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[244/439] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[245/439] Compiling SwiftSyntax SyntaxBaseNodes.swift
[246/439] Compiling SwiftSyntax Tokens.swift
[247/439] Compiling SwiftSyntax TriviaPieces.swift
[248/439] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[249/439] Compiling SwiftSyntax RawSyntaxNodesC.swift
[250/439] Compiling SwiftSyntax RawSyntaxNodesD.swift
[251/439] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[327/446] Emitting module OpenTelemetryApi
[347/446] Compiling OpenTelemetryApi BinaryFormattable.swift
[348/446] Compiling OpenTelemetryApi JaegerPropagator.swift
[349/446] Compiling OpenTelemetryApi TextMapPropagator.swift
[350/446] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[351/446] Compiling OpenTelemetryApi SemanticAttributes.swift
[352/446] Compiling OpenTelemetryApi Span.swift
[353/446] Compiling OpenTelemetryApi SpanBuilder.swift
[354/446] Compiling OpenTelemetryApi SpanContext.swift
[355/446] Compiling OpenTelemetryApi SpanException.swift
[356/446] Compiling OpenTelemetryApi SpanId.swift
[357/446] Compiling OpenTelemetryApi SpanKind.swift
[358/446] Compiling OpenTelemetryApi Status.swift
[359/446] Compiling OpenTelemetryApi TraceFlags.swift
[360/446] Compiling OpenTelemetryApi TraceId.swift
[361/446] Compiling OpenTelemetryApi TraceState.swift
[362/446] Compiling OpenTelemetryApi Tracer.swift
[363/446] Compiling OpenTelemetryApi TracerProvider.swift
[381/714] Compiling OpenTelemetrySdk RegisteredReader.swift
[382/714] Compiling OpenTelemetrySdk ViewRegistry.swift
[383/714] Compiling OpenTelemetrySdk EnvVarResource.swift
[384/714] Compiling OpenTelemetrySdk Resource.swift
[385/714] Compiling OpenTelemetrySdk ResourceAttributes.swift
[386/714] Compiling OpenTelemetrySdk ArrayWithCapacity.swift
[387/714] Compiling OpenTelemetrySdk AttributesDictionary.swift
[388/714] Compiling OpenTelemetrySdk SpanData.swift
[389/714] Compiling OpenTelemetrySdk MultiSpanExporter.swift
[390/714] Compiling OpenTelemetrySdk SpanExporter.swift
[391/714] Compiling OpenTelemetrySdk IdGenerator.swift
[392/714] Compiling OpenTelemetrySdk EnvironmentContextPropagator.swift
[393/714] Compiling OpenTelemetrySdk RandomIdsGenerator.swift
[394/714] Compiling OpenTelemetrySdk ReadableSpan.swift
[395/714] Compiling OpenTelemetrySdk Sampler.swift
[396/728] Compiling OpenTelemetrySdk AsynchronousMetricStorage.swift
[397/728] Compiling OpenTelemetrySdk EmptyMetricStorage.swift
[398/728] Compiling OpenTelemetrySdk MeterProviderSharedState.swift
[399/728] Compiling OpenTelemetrySdk MeterSharedState.swift
[400/728] Compiling OpenTelemetrySdk MetricStorage.swift
[401/728] Compiling OpenTelemetrySdk MetricStorageRegistry.swift
[402/728] Compiling OpenTelemetrySdk MultiWritableMetricStorage.swift
[403/728] Compiling OpenTelemetrySdk ObservableMeasurement.swift
[404/728] Compiling OpenTelemetrySdk SynchronousMetricStorage.swift
[405/728] Compiling OpenTelemetrySdk ValueAtQuantile.swift
[406/728] Compiling OpenTelemetrySdk AttributeProcessor.swift
[407/728] Compiling OpenTelemetrySdk RegisteredView.swift
[408/728] Compiling OpenTelemetrySdk View.swift
[409/728] Compiling OpenTelemetrySdk ViewBuilder.swift
[410/728] Compiling OpenTelemetrySdk AggregationTemporality.swift
[411/728] Compiling OpenTelemetrySdk PointData.swift
[412/728] Compiling OpenTelemetrySdk DoubleCounterMeterBuilderSdk.swift
[413/728] Compiling OpenTelemetrySdk DoubleGaugeBuilderSdk.swift
[414/728] Compiling OpenTelemetrySdk DoubleGaugeSdk.swift
[415/728] Compiling OpenTelemetrySdk DoubleHistogramMeterBuilderSdk.swift
[416/728] Compiling OpenTelemetrySdk DoubleHistogramMeterSdk.swift
[417/728] Compiling OpenTelemetrySdk DoubleUpDownCounterBuilderSdk.swift
[418/728] Compiling OpenTelemetrySdk DoubleUpDownCounterSdk.swift
[419/728] Compiling OpenTelemetrySdk ExemplarFilter.swift
[420/728] Compiling OpenTelemetrySdk ExemplarReservoir.swift
[421/728] Compiling OpenTelemetrySdk FilteredExemplarReservoir.swift
[422/728] Compiling OpenTelemetrySdk HistogramExemplarReservoir.swift
[423/728] Compiling OpenTelemetrySdk LongToDoubleExemplarReservoir.swift
[424/728] Compiling OpenTelemetrySdk ReservoirCell.swift
[425/728] Compiling OpenTelemetrySdk ReservoirCellSelector.swift
[426/728] Compiling OpenTelemetrySdk CollectionRegistration.swift
[427/728] Compiling OpenTelemetrySdk MetricExporter.swift
[428/728] Compiling OpenTelemetrySdk MetricProducer.swift
[429/728] Compiling OpenTelemetrySdk PeriodicMeterReaderBuilder.swift
[430/728] Compiling OpenTelemetrySdk PeriodicMetricReaderSdk.swift
[431/728] Compiling OpenTelemetrySdk Instrument.swift
[432/728] Compiling OpenTelemetrySdk InstrumentBuilder.swift
[433/728] Compiling OpenTelemetrySdk InstrumentDescriptor.swift
[434/728] Compiling OpenTelemetrySdk InstrumentSelector.swift
[435/728] Compiling OpenTelemetrySdk InstrumentSelectorBuilder.swift
[436/728] Compiling OpenTelemetrySdk InstrumentType.swift
[437/728] Compiling OpenTelemetrySdk InstrumentValueType.swift
[438/728] Compiling OpenTelemetrySdk LongCounterMeterBuilderSdk.swift
[439/728] Compiling OpenTelemetrySdk LongCounterSdk.swift
[440/728] Compiling OpenTelemetrySdk LongGaugeBuilderSdk.swift
[442/742] Compiling OpenTelemetrySdk Aggregator.swift
[443/742] Compiling OpenTelemetrySdk AggregatorFactory.swift
[444/742] Compiling OpenTelemetrySdk AggregatorHandle.swift
[445/742] Compiling OpenTelemetrySdk Base2ExponentialHistogramAggregation.swift
[446/742] Compiling OpenTelemetrySdk DefaultAggregation.swift
[447/742] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramAggregator.swift
[448/742] Compiling OpenTelemetrySdk DoubleExplicitBucketHistogramAggregator.swift
[449/742] Compiling OpenTelemetrySdk DoubleLastValueAggregator.swift
[450/742] Compiling OpenTelemetrySdk DoubleSumAggregator.swift
[451/742] Compiling OpenTelemetrySdk DropAggregation.swift
[452/742] Compiling OpenTelemetrySdk DropAggregator.swift
[453/742] Compiling OpenTelemetrySdk ExplicitBucketHistogramAggregation.swift
[454/742] Compiling OpenTelemetrySdk LastValueAggregation.swift
[455/742] Compiling OpenTelemetrySdk LongLastValueAggregator.swift
[485/742] Compiling OpenTelemetrySdk Clock.swift
[486/742] Compiling OpenTelemetrySdk ComponentRegistry.swift
[487/742] Compiling OpenTelemetrySdk ExportResult.swift
[488/742] Compiling OpenTelemetrySdk InstrumentationLibraryInfo.swift
[489/742] Compiling OpenTelemetrySdk WorkerThread.swift
[490/742] Compiling OpenTelemetrySdk autoreleasepool.swift
[491/742] Compiling OpenTelemetrySdk Locks.swift
[492/742] Compiling OpenTelemetrySdk MillisClock.swift
[493/742] Compiling OpenTelemetrySdk MonotonicClock.swift
[494/742] Compiling OpenTelemetrySdk ReadableLogRecord.swift
[495/742] Compiling OpenTelemetrySdk InMemoryLogRecordExporter.swift
[496/742] Compiling OpenTelemetrySdk LogRecordExporter.swift
[497/742] Compiling OpenTelemetrySdk MultiLogRecordExporter.swift
[498/742] Compiling OpenTelemetrySdk NoopLogRecordExporter.swift
[499/742] Compiling OpenTelemetrySdk LogLimits.swift
[500/742] Emitting module OpenTelemetrySdk
[531/742] Compiling OpenTelemetrySdk LogRecordBuilderSdk.swift
[532/742] Compiling OpenTelemetrySdk LongGaugeSdk.swift
[533/742] Compiling OpenTelemetrySdk LongHistogramMeterBuilderSdk.swift
[534/742] Compiling OpenTelemetrySdk LongHistogramMeterSdk.swift
[535/742] Compiling OpenTelemetrySdk LongUpDownCounterBuilderSdk.swift
[536/742] Compiling OpenTelemetrySdk LongUpDownCounterSdk.swift
[537/742] Compiling OpenTelemetrySdk Measurement.swift
[538/742] Compiling OpenTelemetrySdk MeterBuilderSdk.swift
[539/742] Compiling OpenTelemetrySdk MeterProviderBuilder.swift
[540/742] Compiling OpenTelemetrySdk MeterProviderSdk.swift
[541/742] Compiling OpenTelemetrySdk MeterSdk.swift
[542/742] Compiling OpenTelemetrySdk MetricDescriptor.swift
[543/742] Compiling OpenTelemetrySdk MetricReader.swift
[544/742] Compiling OpenTelemetrySdk NoopMeterProviderBuilder.swift
[545/742] Compiling OpenTelemetrySdk ObservableInstrumentSdk.swift
[561/742] Compiling OpenTelemetrySdk LongSumAggregator.swift
[562/742] Compiling OpenTelemetrySdk SumAggregation.swift
[563/742] Compiling OpenTelemetrySdk SumAggregator.swift
[564/742] Compiling OpenTelemetrySdk CallbackRegistration.swift
[565/742] Compiling OpenTelemetrySdk ExemplarData.swift
[566/742] Compiling OpenTelemetrySdk Base2ExponentialHistogramIndexer.swift
[567/742] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramBuckets.swift
[568/742] Compiling OpenTelemetrySdk DoublePointData.swift
[569/742] Compiling OpenTelemetrySdk EmptyExponentialHistogramBuckets.swift
[570/742] Compiling OpenTelemetrySdk ExponentialHistogramBuckets.swift
[571/742] Compiling OpenTelemetrySdk ExponentialHistogramPointData.swift
[572/742] Compiling OpenTelemetrySdk HistogramPointData.swift
[573/742] Compiling OpenTelemetrySdk LongPointData.swift
[574/742] Compiling OpenTelemetrySdk SummaryPointData.swift
[575/742] Compiling OpenTelemetrySdk MetricData.swift
[576/742] Compiling OpenTelemetrySdk LoggerBuilderSdk.swift
[577/742] Compiling OpenTelemetrySdk LoggerProviderBuilder.swift
[578/742] Compiling OpenTelemetrySdk LoggerProviderSdk.swift
[579/742] Compiling OpenTelemetrySdk LoggerSdk.swift
[580/742] Compiling OpenTelemetrySdk LoggerSharedState.swift
[581/742] Compiling OpenTelemetrySdk BatchLogRecordProcessor.swift
[582/742] Compiling OpenTelemetrySdk LogRecordProcessor.swift
[583/742] Compiling OpenTelemetrySdk MultiLogRecordProcessor.swift
[584/742] Compiling OpenTelemetrySdk NoopLogRecordProcessor.swift
[585/742] Compiling OpenTelemetrySdk SimpleLogRecordProcessor.swift
[586/742] Compiling OpenTelemetrySdk AdaptingCircularBufferCounter.swift
[587/742] Compiling OpenTelemetrySdk AdaptingIntegerArray.swift
[588/742] Compiling OpenTelemetrySdk Aggregation.swift
[589/742] Compiling OpenTelemetrySdk AggregationSelector.swift
[649/742] Compiling OpenTelemetrySdk Samplers.swift
[650/742] Compiling OpenTelemetrySdk SpanBuilderSdk.swift
[651/742] Compiling OpenTelemetrySdk SpanLimits.swift
[652/742] Compiling OpenTelemetrySdk SpanProcessor.swift
[653/742] Compiling OpenTelemetrySdk BatchSpanProcessor.swift
[654/742] Compiling OpenTelemetrySdk MultiSpanProcessor.swift
[655/742] Compiling OpenTelemetrySdk NoopSpanProcessor.swift
[656/742] Compiling OpenTelemetrySdk SimpleSpanProcessor.swift
[657/742] Compiling OpenTelemetrySdk SpanSdk.swift
[658/742] Compiling OpenTelemetrySdk TracerProviderBuilder.swift
[659/742] Compiling OpenTelemetrySdk TracerProviderSdk.swift
[660/742] Compiling OpenTelemetrySdk TracerSdk.swift
[661/742] Compiling OpenTelemetrySdk TracerSharedState.swift
[662/742] Compiling OpenTelemetrySdk Version.swift
[677/822] Compiling EmbraceCommonInternal EmbraceAtomic.swift
[678/822] Compiling EmbraceCommonInternal EmbraceAtomic+Imp.swift
[679/822] Compiling EmbraceCommonInternal EmbraceClock.swift
[680/822] Compiling EmbraceCommonInternal CrashReport.swift
[681/822] Compiling EmbraceCommonInternal CrashReporter.swift
[682/826] Compiling EmbraceCommonInternal EmbraceMetadata.swift
[683/826] Compiling EmbraceCommonInternal EmbraceSession.swift
[684/826] Compiling EmbraceCommonInternal EmbraceSpan.swift
[685/826] Compiling EmbraceCommonInternal EmbraceSpanEvent.swift
[686/830] Compiling EmbraceCommonInternal FilePathProvider.swift
[687/830] Compiling EmbraceCommonInternal JournalMode.swift
[688/830] Compiling EmbraceCommonInternal EmbraceLog.swift
[689/830] Compiling EmbraceCommonInternal EmbraceLogAttribute.swift
[690/830] Compiling EmbraceCommonInternal SessionState.swift
[691/830] Compiling EmbraceCommonInternal StackTraceBehavior.swift
[692/830] Compiling EmbraceCommonInternal DispatchableQueue.swift
[693/830] Compiling EmbraceCommonInternal EmbraceSDKStateProvider.swift
[694/830] Compiling EmbraceCommonInternal ProcessInfo.swift
[695/830] Compiling EmbraceCommonInternal InternalLogger.swift
[696/830] Compiling EmbraceCommonInternal EmbraceMutex.swift
[697/830] Compiling EmbraceCommonInternal ReadWriteLock.swift
[698/830] Compiling EmbraceCommonInternal SpanType.swift
[699/830] Compiling EmbraceCommonInternal EmbraceStackTraceError.swift
[700/830] Compiling EmbraceCommonInternal EmbraceSwizzableError.swift
[701/830] Compiling EmbraceCommonInternal Date.swift
[702/830] Compiling EmbraceCommonInternal UnfairLock.swift
[703/830] Compiling EmbraceCommonInternal MetricKitSpan.swift
[704/830] Compiling EmbraceCommonInternal EmbraceStackTrace.swift
[705/830] Compiling EmbraceCommonInternal LogSeverity.swift
[711/830] Emitting module EmbraceCommonInternal
[713/830] Compiling EmbraceCommonInternal EmbraceMeta.swift
[714/830] Compiling EmbraceCommonInternal EmbraceType.swift
[715/830] Compiling EmbraceCommonInternal LogType.swift
[716/830] Compiling EmbraceCommonInternal SpanEventType.swift
[717/830] Compiling EmbraceCommonInternal SpanType+Declarations.swift
[718/830] Compiling EmbraceCommonInternal CrashReporterContext.swift
[719/830] Compiling EmbraceCommonInternal CrashSignal.swift
[720/830] Compiling EmbraceCommonInternal HangEvent.swift
[721/830] Compiling EmbraceCommonInternal EmbraceARM64_32Helpers.swift
[722/830] Compiling EmbraceCommonInternal EmbraceIdentifier.swift
[752/830] Compiling EmbraceCommonInternal StorageMechanism.swift
[753/830] Compiling EmbraceCommonInternal EmbraceSwizzler.swift
[754/830] Compiling EmbraceCommonInternal Swizzlable.swift
[755/830] Compiling EmbraceCommonInternal SwizzleCache.swift
[765/896] Emitting module EmbraceSemantics
[766/898] Compiling EmbraceSemantics SpanErrorCode.swift
[767/898] Compiling EmbraceSemantics LogSemantics+MetricKitMetrics.swift
[768/898] Compiling EmbraceSemantics SpanSemantics+NetworkRequest.swift
[769/898] Compiling EmbraceSemantics SpanSemantics+Session.swift
[770/898] Compiling EmbraceSemantics LogSemantics+NetworkCapture.swift
[771/898] Compiling EmbraceSemantics LogSemantics.swift
[772/898] Compiling EmbraceSemantics SpanEventSemantics+Tap.swift
[773/898] Compiling EmbraceSemantics LogType+Declarations.swift
[777/898] Compiling EmbraceSemantics SpanSemantics.swift
[778/898] Compiling EmbraceSemantics SpanEventSemantics+Breadcrumb.swift
[781/898] Compiling EmbraceSemantics SpanEventSemantics+PushNotification.swift
[783/900] Compiling EmbraceSemantics EmbraceLogAttachment.swift
[784/900] Compiling EmbraceSemantics LogSemantics+Crash.swift
[785/900] Compiling EmbraceSemantics LogSemantics+Hang.swift
[786/900] Compiling EmbraceSemantics SpanSemantics+Hang.swift
[787/900] Compiling EmbraceSemantics SpanSemantics+LowPower.swift
[788/900] Compiling EmbraceSemantics SpanSemantics+Startup.swift
[789/900] Compiling EmbraceSemantics SpanSemantics+View.swift
[791/900] Compiling EmbraceSemantics SpanEventSemantics+Hang.swift
[792/900] Compiling EmbraceSemantics SpanEventSemantics+LowMemory.swift
[795/900] Emitting module EmbraceKSCrashBacktraceSupport
[796/900] Compiling EmbraceKSCrashBacktraceSupport EmbraceKSCrashBacktraceSupport.swift
[808/900] Compiling EmbraceCrashlyticsSupport CrashlyticsWrapper.swift
[809/900] Emitting module EmbraceSemantics
[810/900] Emitting module EmbraceConfigInternal
[811/900] Compiling EmbraceCrashlyticsSupport CrashlyticsReporter.swift
[812/900] Emitting module EmbraceCrashlyticsSupport
[813/900] Compiling EmbraceCrashlyticsSupport CrashlyticsWrapper.swift
[814/900] Emitting module EmbraceCrashlyticsSupport
[815/900] Compiling EmbraceCrashlyticsSupport CrashlyticsReporter.swift
[816/900] Emitting module EmbraceKSCrashBacktraceSupport
[817/900] Compiling EmbraceKSCrashBacktraceSupport EmbraceKSCrashBacktraceSupport.swift
[818/900] Compiling EmbraceCoreDataInternal WorkTracker.swift
[819/900] Emitting module EmbraceCoreDataInternal
[820/900] Compiling EmbraceCoreDataInternal BackgroundTaskAssertion.swift
[821/900] Compiling EmbraceCoreDataInternal CoreDataWrapper.swift
[822/900] Compiling EmbraceCoreDataInternal CoreDataWrapper+Options.swift
[823/900] Compiling EmbraceConfigInternal RemoteConfigFetcher.swift
[824/900] Compiling EmbraceConfigInternal RemoteConfigPayload.swift
[825/900] Compiling EmbraceConfigInternal RemoteConfig+Options.swift
[826/900] Compiling EmbraceConfigInternal RemoteConfig.swift
[827/900] Compiling EmbraceConfigInternal EmbraceConfig.swift
[828/900] Compiling EmbraceConfigInternal EmbraceConfig+Options.swift
[829/902] Emitting module EmbraceCrash
[830/902] Compiling EmbraceCrash KSCrashReporter.swift
[831/902] Compiling EmbraceSemantics SpanEventSemantics+WebView.swift
[832/902] Compiling EmbraceSemantics SpanEventSemantics.swift
[835/914] Emitting module SwiftSyntax
[836/928] Emitting module EmbraceCrash
[837/928] Compiling EmbraceCrash KSCrashReporter.swift
[838/928] Compiling EmbraceCoreDataInternal WorkTracker.swift
[839/928] Compiling EmbraceCoreDataInternal BackgroundTaskAssertion.swift
[840/928] Emitting module EmbraceCoreDataInternal
[841/928] Compiling EmbraceCoreDataInternal CoreDataWrapper.swift
[842/928] Compiling EmbraceCoreDataInternal CoreDataWrapper+Options.swift
[843/928] Compiling EmbraceConfigInternal RemoteConfigFetcher.swift
[844/928] Compiling EmbraceConfigInternal RemoteConfig+Options.swift
[845/928] Compiling EmbraceConfigInternal RemoteConfig.swift
[846/928] Compiling EmbraceConfigInternal EmbraceConfig+Options.swift
[847/928] Compiling EmbraceConfigInternal EmbraceConfig.swift
[848/928] Emitting module EmbraceConfigInternal
[849/928] Compiling EmbraceConfigInternal RemoteConfigPayload.swift
[850/928] Compiling EmbraceStorageInternal SpanEventRecord.swift
[851/928] Compiling EmbraceStorageInternal SessionRecord.swift
[852/928] Compiling EmbraceStorageInternal MetadataRecord.swift
[853/929] Compiling EmbraceStorageInternal LogRecord.swift
[854/929] Compiling EmbraceStorageInternal EmbraceStorage+Span.swift
[855/929] Compiling EmbraceStorageInternal EmbraceStorageRecord.swift
[856/929] Compiling EmbraceStorageInternal LogAttributeRecord.swift
[857/943] Compiling EmbraceStorageInternal SpanRecord.swift
[858/943] Compiling EmbraceStorageInternal EmbraceStorageError.swift
[859/943] Compiling EmbraceStorageInternal EmbraceStorage+Log.swift
[860/943] Compiling EmbraceStorageInternal EmbraceStorage+Options.swift
[861/943] Compiling EmbraceStorageInternal EmbraceStorage.swift
[862/943] Emitting module EmbraceStorageInternal
[863/943] Compiling EmbraceStorageInternal EmbraceStorage+Span.swift
[864/943] Compiling EmbraceStorageInternal EmbraceStorageRecord.swift
[865/943] Compiling EmbraceStorageInternal SessionRecord.swift
[866/943] Compiling EmbraceStorageInternal MetadataRecord.swift
[867/943] Compiling EmbraceStorageInternal SpanEventRecord.swift
[868/966] Compiling EmbraceStorageInternal LogAttributeRecord.swift
[869/966] Compiling EmbraceStorageInternal LogRecord.swift
[870/966] Compiling EmbraceOTelInternal EmbraceOTel.swift
[871/966] Compiling EmbraceOTelInternal EmbraceOpenTelemetry.swift
[872/966] Compiling EmbraceOTelInternal Span+Embrace.swift
[873/966] Compiling EmbraceOTelInternal EmbraceLogger.swift
[874/966] Compiling EmbraceOTelInternal EmbraceLoggerBuilder.swift
[875/966] Compiling EmbraceOTelInternal EmbraceLoggerConfig.swift
[876/966] Emitting module EmbraceStorageInternal
[877/966] Compiling EmbraceOTelInternal EmbraceLogRecordBuilder.swift
[878/966] Compiling EmbraceOTelInternal EmbraceResourceProvider.swift
[879/966] Emitting module EmbraceOTelInternal
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 21 |
 22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
 23 | package class StorageSpanExporter: SpanExporter {
    |               `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 23 | package class StorageSpanExporter: SpanExporter {
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
    |                           `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 26 |     private weak var logger: InternalLogger?
 27 |
[880/968] Compiling EmbraceStorageInternal SpanRecord.swift
[902/990] Compiling EmbraceOTelInternal SpanEvent.swift
[903/990] Compiling EmbraceOTelInternal SpanLink.swift
[904/990] Compiling EmbraceOTelInternal SpanData+Embrace.swift
[905/990] Compiling EmbraceOTelInternal SpanBuilder+Embrace.swift
[906/990] Compiling EmbraceOTelInternal Severity+LogSeverity.swift
[907/990] Compiling EmbraceOTelInternal EmbraceLogger.swift
[908/990] Compiling EmbraceOTelInternal EmbraceLoggerBuilder.swift
[909/990] Compiling EmbraceOTelInternal EmbraceLoggerConfig.swift
[910/990] Compiling EmbraceOTelInternal RecordingSpanLink.swift
[911/990] Compiling EmbraceOTelInternal EmbraceSpanProcessor.swift
[912/990] Compiling EmbraceOTelInternal EmbraceResourceProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
[913/990] Compiling EmbraceOTelInternal Span+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
[914/990] Compiling EmbraceOTelInternal RecordingSpanEvent.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
[915/990] Compiling EmbraceOTelInternal EmbraceLoggerProvider.swift
[916/990] Compiling EmbraceOTelInternal EmbraceLoggerSharedState.swift
[917/990] Compiling EmbraceOTelInternal LogRecord+Embrace.swift
[918/990] Compiling EmbraceOTelInternal EmbraceOTel.swift
[919/990] Compiling EmbraceOTelInternal EmbraceOpenTelemetry.swift
[920/990] Compiling EmbraceOTelInternal EmbraceLogRecordBuilder.swift
[921/990] Compiling EmbraceOTelInternal StorageSpanExporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 21 |
 22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
 23 | package class StorageSpanExporter: SpanExporter {
    |               `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 23 | package class StorageSpanExporter: SpanExporter {
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
    |                           `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 26 |     private weak var logger: InternalLogger?
 27 |
[922/990] Compiling EmbraceOTelInternal SingleLogRecordProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 21 |
 22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
 23 | package class StorageSpanExporter: SpanExporter {
    |               `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 23 | package class StorageSpanExporter: SpanExporter {
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
    |                           `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 26 |     private weak var logger: InternalLogger?
 27 |
[923/990] Compiling EmbraceOTelInternal BatchLimits.swift
[924/990] Compiling EmbraceOTelInternal EmbraceLogRecordProcessor.swift
[939/1008] Compiling EmbraceUploadInternal UploadDataRecord.swift
[940/1008] Compiling EmbraceUploadInternal EmbraceReachabilityMonitor.swift
[941/1010] Emitting module EmbraceOTelInternal
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 21 |
 22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
 23 | package class StorageSpanExporter: SpanExporter {
    |               `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 23 | package class StorageSpanExporter: SpanExporter {
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
    |                           `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 26 |     private weak var logger: InternalLogger?
 27 |
[949/1010] Compiling EmbraceUploadInternal AsyncOperation.swift
[950/1010] Compiling EmbraceUploadInternal EmbraceAttachmentUploadOperation.swift
[951/1010] Compiling EmbraceUploadInternal EmbraceUploadCache.swift
[952/1010] Compiling EmbraceUploadInternal EmbraceUpload+MetadataOptions.swift
[953/1010] Compiling EmbraceUploadInternal EmbraceUpload+ExponentialBackoff.swift
[954/1010] Compiling EmbraceUploadInternal EmbraceUpload+EndpointOptions.swift
[955/1010] Compiling EmbraceUploadInternal EmbraceUpload+Options.swift
[956/1011] Compiling EmbraceOTelInternal SpanEvent.swift
[957/1011] Compiling EmbraceOTelInternal SpanLink.swift
[958/1011] Compiling EmbraceCaptureService CaptureServiceState.swift
[959/1011] Emitting module EmbraceCaptureService
[960/1011] Compiling EmbraceCaptureService CaptureService.swift
[963/1011] Compiling EmbraceUploadInternal EmbraceUploadType.swift
[964/1011] Compiling EmbraceUploadInternal EmbraceUploadError.swift
[965/1011] Compiling EmbraceUploadInternal EmbraceUpload.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
[966/1011] Compiling EmbraceUploadInternal EmbraceUploadOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
[967/1011] Compiling EmbraceUploadInternal EmbraceUpload+CacheOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:14:7: warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
12 | }
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
   |       `- warning: non-final class 'DefaultEmbraceLoggerProvider' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
16 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Logs/EmbraceLoggerProvider.swift:15:22: warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
13 |
14 | class DefaultEmbraceLoggerProvider: EmbraceLoggerProvider {
15 |     private lazy var logger: EmbraceLogger = EmbraceLogger(sharedState: sharedState)
   |                      `- warning: stored property '$__lazy_storage_$_logger' of 'Sendable'-conforming class 'DefaultEmbraceLoggerProvider' is mutable; this is an error in the Swift 6 language mode
16 |
17 |     let sharedState: EmbraceLogSharedState
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 21 |
 22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
 23 | package class StorageSpanExporter: SpanExporter {
    |               `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 23 | package class StorageSpanExporter: SpanExporter {
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
    |                           `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 26 |     private weak var logger: InternalLogger?
 27 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:23:15: warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 21 |
 22 | // Synchronization on StorageSpanExporter is expected to be done at a higher level.
 23 | package class StorageSpanExporter: SpanExporter {
    |               `- warning: non-final class 'StorageSpanExporter' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceOTelInternal/Trace/Tracer/Span/Processor/StorageSpanExporter.swift:25:27: warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 23 | package class StorageSpanExporter: SpanExporter {
 24 |
 25 |     private(set) weak var storage: EmbraceStorage?
    |                           `- warning: stored property 'storage' of 'Sendable'-conforming class 'StorageSpanExporter' is mutable; this is an error in the Swift 6 language mode
 26 |     private weak var logger: InternalLogger?
 27 |
[978/1011] Emitting module EmbraceUploadInternal
[981/1011] Compiling EmbraceUploadInternal EmbraceUpload+RedundancyOptions.swift
[982/1165] Compiling EmbraceCaptureService CaptureService.swift
[983/1165] Compiling EmbraceCaptureService CaptureServiceState.swift
[984/1165] Emitting module EmbraceCaptureService
[985/1165] Compiling EmbraceCore iOSSessionLifecycle.swift
[986/1165] Compiling EmbraceCore SessionLifecycle.swift
[987/1165] Compiling EmbraceUploadInternal EmbraceUpload+MetadataOptions.swift
[988/1165] Compiling EmbraceUploadInternal EmbraceUpload+ExponentialBackoff.swift
[989/1165] Compiling EmbraceUploadInternal EmbraceUpload+EndpointOptions.swift
[990/1165] Compiling EmbraceUploadInternal EmbraceUpload+Options.swift
[991/1165] Compiling EmbraceCore SessionControllable.swift
[992/1165] Compiling EmbraceCore SessionController.swift
[993/1166] Compiling EmbraceCore PushNotificationEvent.swift
[994/1166] Compiling EmbraceCore StartupInstrumentation+Customization.swift
[995/1166] Compiling EmbraceCore OpenTelemetryProcessor.swift
[996/1166] Compiling EmbraceCore PushNotificationError.swift
[997/1166] Compiling EmbraceCore UnsentDataHandler.swift
[998/1166] Compiling EmbraceCore ManualSessionLifecycle.swift
[999/1166] Emitting module EmbraceUploadInternal
[1000/1166] Compiling EmbraceUploadInternal EmbraceUpload+RedundancyOptions.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1001/1302] Emitting module EmbraceCore
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
[1002/1316] Compiling EmbraceCore OpenTelemetryProcessor.swift
[1003/1316] Compiling EmbraceCore PushNotificationError.swift
[1004/1316] Compiling EmbraceCore PushNotificationEvent.swift
[1005/1316] Compiling EmbraceCore StartupInstrumentation+Customization.swift
[1006/1316] Compiling EmbraceCore UnsentDataHandler.swift
[1007/1316] Compiling EmbraceCore ManualSessionLifecycle.swift
[1008/1316] Compiling EmbraceCore iOSSessionLifecycle.swift
[1009/1316] Compiling EmbraceCore SessionLifecycle.swift
[1010/1316] Compiling EmbraceCore SessionControllable.swift
[1011/1316] Compiling EmbraceCore SessionController.swift
[1012/1316] Compiling EmbraceCore SessionHeartbeat.swift
[1013/1316] Compiling EmbraceCore SessionSpanUtils.swift
[1014/1316] Compiling EmbraceCore DefaultSessionUploader.swift
[1015/1316] Compiling EmbraceCore EmbraceTraceView.swift
[1016/1316] Compiling EmbraceCore EmbraceTraceViewModifier.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1017/1316] Emitting module EmbraceCore
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
[1018/1330] Compiling EmbraceCore PayloadUtils.swift
[1019/1330] Compiling EmbraceCore Embrace+CrashHelper.swift
[1020/1330] Compiling EmbraceCore Embrace+CrashReporter.swift
[1021/1330] Compiling EmbraceCore Embrace+OTel.swift
[1022/1330] Compiling EmbraceCore EmbraceSDKState.swift
[1023/1330] Compiling EmbraceCore Breadcrumb.swift
[1024/1330] Compiling EmbraceCore LastRunEndState.swift
[1025/1330] Compiling EmbraceCore LogLevel.swift
[1026/1330] Compiling EmbraceCore MetadataError.swift
[1027/1330] Compiling EmbraceCore MetadataHandler+Personas.swift
[1028/1330] Compiling EmbraceCore MetadataHandler+User.swift
[1029/1330] Compiling EmbraceCore MetadataHandler.swift
[1030/1330] Compiling EmbraceCore MetadataRecordTmp.swift
[1031/1330] Compiling EmbraceCore PersonaTag.swift
[1032/1330] Compiling EmbraceCore OpenTelemetryExport.swift
[1033/1330] Compiling EmbraceCore EmbraceBacktrace+Internal.swift
[1034/1330] Compiling EmbraceCore EmbraceBacktrace.swift
[1035/1330] Compiling EmbraceCore CaptureServiceFactory.swift
[1036/1330] Compiling EmbraceCore CaptureServices.swift
[1037/1330] Compiling EmbraceCore HangCaptureService.swift
[1038/1330] Compiling EmbraceCore HangWatchdog.swift
[1039/1330] Compiling EmbraceCore EmbraceMetricKitStateProvider.swift
[1040/1330] Compiling EmbraceCore MetricKitCaptureServiceOptions.swift
[1041/1330] Compiling EmbraceCore MetricKitCrashCaptureService.swift
[1042/1330] Compiling EmbraceCore MetricKitHangCaptureService.swift
[1043/1330] Compiling EmbraceCore MetricKitMetricsCaptureService.swift
[1044/1330] Compiling EmbraceCore EncryptedNetworkPayload.swift
[1045/1330] Compiling EmbraceCore EncryptionHelper.swift
[1046/1330] Compiling EmbraceCore NetworkPayloadCaptureHandler.swift
[1047/1330] Compiling EmbraceCore URLSessionTaskCaptureRule.swift
[1048/1330] Compiling EmbraceCore LogController.swift
[1049/1330] Compiling EmbraceCore BaseInternalLogger.swift
[1050/1330] Compiling EmbraceCore DefaultInternalLogger.swift
[1051/1330] Compiling EmbraceCore MetricKitCrashPayloadProvider.swift
[1052/1330] Compiling EmbraceCore MetricKitHandler.swift
[1053/1330] Compiling EmbraceCore MetricKitMetric.swift
[1054/1330] Compiling EmbraceCore ProcessMetadata.swift
[1055/1330] Compiling EmbraceCore AppResourceKey.swift
[1056/1330] Compiling EmbraceCore DeviceResourceKey.swift
[1057/1330] Compiling EmbraceCore UserResourceKey.swift
[1058/1330] Compiling EmbraceCore ResourceStorageExporter.swift
[1059/1330] Compiling EmbraceCore DefaultStartupDataProvider.swift
[1060/1330] Compiling EmbraceCore StartupDataProvider.swift
[1061/1330] Compiling EmbraceCore StartupInstrumentation.swift
[1062/1330] Compiling EmbraceCore EmbraceSpanProcessor+Setup.swift
[1063/1330] Compiling EmbraceCore URLRequest+Extension.swift
[1064/1330] Compiling EmbraceCore URLSessionCaptureService+Options.swift
[1065/1330] Compiling EmbraceCore URLSessionCaptureService.swift
[1066/1330] Compiling EmbraceCore URLSessionRequestsDataSource.swift
[1067/1330] Compiling EmbraceCore URLSessionSwizzlerProvider.swift
[1068/1330] Compiling EmbraceCore URLSessionTask+Extension.swift
[1069/1330] Compiling EmbraceCore URLSessionTaskHandler.swift
[1070/1330] Compiling EmbraceCore AppInfoCaptureService.swift
[1071/1330] Compiling EmbraceCore DeviceInfoCaptureService.swift
[1072/1330] Compiling EmbraceCore PushNotificationCaptureService+Options.swift
[1073/1330] Compiling EmbraceCore PushNotificationCaptureService.swift
[1074/1330] Compiling EmbraceCore UNUserNotificationCenterDelegateProxy.swift
[1075/1330] Compiling EmbraceCore ResourceCaptureService.swift
[1076/1330] Compiling EmbraceCore LowMemoryWarningCaptureService.swift
[1077/1330] Compiling EmbraceCore LowPowerModeCaptureService.swift
[1078/1330] Compiling EmbraceCore ViewInstrumentationState.swift
[1079/1330] Compiling EmbraceCore WKWebView+Embrace.swift
[1080/1330] Compiling EmbraceCore WebViewCaptureService+Options.swift
[1081/1330] Compiling EmbraceCore WebViewCaptureService.swift
[1082/1330] Compiling EmbraceCore EmbraceCrashReporter.swift
[1083/1330] Compiling EmbraceCore Embrace.swift
[1084/1330] Compiling EmbraceCore EmbraceSetupError.swift
[1085/1330] Compiling EmbraceCore CrashHelper.swift
[1086/1330] Compiling EmbraceCore EmbraceFilePathProvider.swift
[1087/1330] Compiling EmbraceCore EmbraceFileSystem.swift
[1088/1330] Compiling EmbraceCore Embrace+Config.swift
[1089/1330] Compiling EmbraceCore Embrace+EmbraceMetricKitStateProvider.swift
[1090/1330] Compiling EmbraceCore Embrace+EmbraceSDKStateProvider.swift
[1091/1330] Compiling EmbraceCore Embrace+InternalLogger.swift
[1092/1330] Compiling EmbraceCore Embrace+OTelResources.swift
[1093/1330] Compiling EmbraceCore Embrace+Setup.swift
[1094/1330] Compiling EmbraceCore EmbraceMeta+UserAgent.swift
[1095/1330] Compiling EmbraceCore SpanEventsLimiter.swift
[1096/1330] Compiling EmbraceCore DeviceIdentifier+Persistence.swift
[1097/1330] Compiling EmbraceCore DefaultEmbraceLogSharedState.swift
[1098/1330] Compiling EmbraceCore DefaultEmbraceLoggerConfig.swift
[1099/1330] Compiling EmbraceCore EmbraceLogAttributesBuilder.swift
[1100/1330] Compiling EmbraceCore DefaultLogBatcher.swift
[1101/1330] Compiling EmbraceCore LogBatch.swift
[1102/1330] Compiling EmbraceCore LogBatchLimits.swift
[1103/1330] Compiling EmbraceCore StorageEmbraceLogExporter.swift
[1104/1330] Compiling EmbraceCore Collection+LogDataValidator.swift
[1105/1330] Compiling EmbraceCore LogDataValidation.swift
[1106/1330] Compiling EmbraceCore LogDataValidator.swift
[1107/1330] Compiling EmbraceCore LengthOfBodyValidator.swift
[1108/1330] Compiling EmbraceCore Embrace+Endpoints.swift
[1109/1330] Compiling EmbraceCore Embrace+Options.swift
[1110/1330] Compiling EmbraceCore Platform.swift
[1111/1330] Compiling EmbraceCore AppInfoPayload.swift
[1112/1330] Compiling EmbraceCore Attribute.swift
[1113/1330] Compiling EmbraceCore LogPayloadBuilder.swift
[1114/1330] Compiling EmbraceCore SessionPayloadBuilder.swift
[1115/1330] Compiling EmbraceCore SpansPayloadBuilder.swift
[1116/1330] Compiling EmbraceCore LogPayload.swift
[1117/1330] Compiling EmbraceCore MetadataPayload.swift
[1118/1330] Compiling EmbraceCore PayloadEnvelope.swift
[1119/1330] Compiling EmbraceCore ResourcePayload.swift
[1120/1330] Compiling EmbraceCore SpanEventPayload.swift
[1121/1330] Compiling EmbraceCore SpanLinkPayload.swift
[1122/1330] Compiling EmbraceCore SpanPayload.swift
[1123/1330] Compiling EmbraceCore PowerModeProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1124/1330] Compiling EmbraceCore TapCaptureService+Options.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1125/1330] Compiling EmbraceCore TapCaptureService.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1126/1330] Compiling EmbraceCore TapCaptureServiceDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1127/1330] Compiling EmbraceCore CaptureServices+UIViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1128/1330] Compiling EmbraceCore EmbraceViewControllerCustomization.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1129/1330] Compiling EmbraceCore InstrumentableViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1130/1330] Compiling EmbraceCore InteractableViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1131/1330] Compiling EmbraceCore UIViewController+Embrace.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1132/1330] Compiling EmbraceCore UIViewControllerHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1133/1330] Compiling EmbraceCore ViewCaptureService+Options.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1134/1330] Compiling EmbraceCore ViewCaptureService.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1135/1330] Compiling EmbraceCore ViewCaptureServiceError.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1136/1330] Compiling EmbraceCore ViewCaptureServiceSwizzleCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1137/1330] Compiling EmbraceCore ViewControllerBlockList.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:148:29: error: 'MXSignpostIntervalData' is unavailable in macOS
146 |         @available(tvOS, unavailable)
147 |         @available(watchOS, unavailable)
148 |         init?(intervalData: MXSignpostIntervalData?) {
    |                             `- error: 'MXSignpostIntervalData' is unavailable in macOS
149 |             guard let intervalData = intervalData else { return nil }
150 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:26:12: note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 24 |  */
 25 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 26 | @interface MXSignpostIntervalData : NSObject <NSSecureCoding>
    |            `- note: 'MXSignpostIntervalData' has been explicitly marked unavailable here
 27 |
 28 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:171:23: error: 'MXMetricPayload' is unavailable in macOS
169 |         @available(tvOS, unavailable)
170 |         @available(watchOS, unavailable)
171 |         init(payload: MXMetricPayload) {
    |                       `- error: 'MXMetricPayload' is unavailable in macOS
172 |             self.latestApplicationVersion = payload.latestApplicationVersion
173 |             self.includesMultipleApplicationVersions = payload.includesMultipleApplicationVersions
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXMetricPayload.h:38:12: note: 'MXMetricPayload' has been explicitly marked unavailable here
 36 |  */
 37 | API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(macos, tvos, watchos)
 38 | @interface MXMetricPayload : NSObject <NSSecureCoding>
    |            `- note: 'MXMetricPayload' has been explicitly marked unavailable here
 39 |
 40 | /*!
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:99:46: error: 'dictionaryRepresentation()' is unavailable in macOS
 97 |
 98 |             // bundle identifier is special, it appeared in iOS 26 but is avaialble in the JSON.
 99 |             self.bundleIdentifier = metaData.dictionaryRepresentation()["bundleIdentifier"] as? String ?? ""
    |                                              `- error: 'dictionaryRepresentation()' is unavailable in macOS
100 |
101 |             self.regionFormat = metaData.regionFormat
MetricKit.MXMetaData.dictionaryRepresentation:3:13: note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
1 | class MXMetaData {
2 | @available(macOS, unavailable)
3 |   open func dictionaryRepresentation() -> [AnyHashable : Any]}
  |             `- note: 'dictionaryRepresentation()' has been explicitly marked unavailable here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/MetricKit/MetricKitMetric.swift:157:62: error: 'cumulativeHitchTimeRatio' is unavailable in macOS
155 |
156 |             if #available(iOS 15.0, *) {
157 |                 self.cumulativeHitchTimeRatio = intervalData.cumulativeHitchTimeRatio?.value ?? 0
    |                                                              `- error: 'cumulativeHitchTimeRatio' is unavailable in macOS
158 |             } else {
159 |                 self.cumulativeHitchTimeRatio = 0
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/MetricKit.framework/Headers/MXSignpostMetric.h:60:65: note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 58 |  @discussion    This property is null when signposts with the associated signpostName and signpostCategory contain no interval metric data.
 59 |  */
 60 | @property (readonly, strong, nullable) NSMeasurement<NSUnit *> *cumulativeHitchTimeRatio API_AVAILABLE(ios(15.0)) API_UNAVAILABLE(macos, tvos, watchos);
    |                                                                 `- note: 'cumulativeHitchTimeRatio' has been explicitly marked unavailable here
 61 |
 62 | @end
[1168/1330] Compiling EmbraceCore EmbraceTraceViewContext.swift
[1169/1330] Compiling EmbraceCore EmbraceTraceViewLogger.swift
[1170/1330] Compiling EmbraceCore EmbraceTraceViewState.swift
[1171/1330] Compiling EmbraceCore CGPoint+toString.swift
[1172/1330] Compiling EmbraceCore Data+Gzip.swift
[1173/1330] Compiling EmbraceCore Encodable+JSON.swift
[1174/1330] Compiling EmbraceCore KeychainAccess.swift
[1175/1330] Compiling EmbraceCore KeychainInterface.swift
[1176/1330] Compiling EmbraceCore NSObject+Embrace.swift
[1177/1330] Compiling EmbraceCore ProcessInfo+Embrace.swift
[1178/1330] Compiling EmbraceCore URL+Embrace.swift
[1179/1330] Compiling EmbraceCore W3C+TraceParent.swift
[1180/1330] Compiling EmbraceCore W3C.swift
[1181/1330] Compiling EmbraceCore resource_bundle_accessor.swift
BUILD FAILURE 6.1 macosSpm