Build Information
Successful build of EmbraceIO, reference 6.11.0 (a6061f
), with Swift 6.1 for iOS using Xcode 16.3 on 9 Jun 2025 17:24:38 UTC.
Swift 6 data race errors: 83
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EmbraceIO-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
static var selector: Selector = #selector(setter: WKWebView.navigationDelegate)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:139:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var selector: Selector = #selector(setter: WKWebView.navigationDelegate)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:170:16: warning: static property 'selector' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var selector: Selector = #selector(WKWebView.load(_:))
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:170:16: note: convert 'selector' to a 'let' constant to make 'Sendable' shared state immutable
static var selector: Selector = #selector(WKWebView.load(_:))
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:170:16: note: add '@MainActor' to make static property 'selector' part of global actor 'MainActor'
static var selector: Selector = #selector(WKWebView.load(_:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:170:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var selector: Selector = #selector(WKWebView.load(_:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:193:16: warning: static property 'selector' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var selector: Selector = #selector(WKWebView.loadHTMLString(_:baseURL:))
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:193:16: note: convert 'selector' to a 'let' constant to make 'Sendable' shared state immutable
static var selector: Selector = #selector(WKWebView.loadHTMLString(_:baseURL:))
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:193:16: note: add '@MainActor' to make static property 'selector' part of global actor 'MainActor'
static var selector: Selector = #selector(WKWebView.loadHTMLString(_:baseURL:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:193:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var selector: Selector = #selector(WKWebView.loadHTMLString(_:baseURL:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:216:16: warning: static property 'selector' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var selector: Selector = #selector(WKWebView.loadFileURL(_:allowingReadAccessTo:))
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:216:16: note: convert 'selector' to a 'let' constant to make 'Sendable' shared state immutable
static var selector: Selector = #selector(WKWebView.loadFileURL(_:allowingReadAccessTo:))
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:216:16: note: add '@MainActor' to make static property 'selector' part of global actor 'MainActor'
static var selector: Selector = #selector(WKWebView.loadFileURL(_:allowingReadAccessTo:))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:216:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var selector: Selector = #selector(WKWebView.loadFileURL(_:allowingReadAccessTo:))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:239:16: warning: static property 'selector' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var selector: Selector = #selector(
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:239:16: note: convert 'selector' to a 'let' constant to make 'Sendable' shared state immutable
static var selector: Selector = #selector(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:239:16: note: add '@MainActor' to make static property 'selector' part of global actor 'MainActor'
static var selector: Selector = #selector(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:239:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var selector: Selector = #selector(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:151:30: warning: main actor-isolated property 'navigationDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if !(webView.navigationDelegate is EMBWKNavigationDelegateProxy) {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: property declared here
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:152:33: warning: call to main actor-isolated initializer 'init(originalDelegate:callback:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let proxy = EMBWKNavigationDelegateProxy(
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include/EMBWKNavigationDelegateProxy.h:19:1: note: calls to initializer 'init(originalDelegate:callback:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithOriginalDelegate:(id<WKNavigationDelegate> _Nullable)originalDelegate
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include/EMBWKNavigationDelegateProxy.h:19:1: note: main actor isolation inferred from conformance to protocol 'WKNavigationDelegate'
- (instancetype)initWithOriginalDelegate:(id<WKNavigationDelegate> _Nullable)originalDelegate
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:156:29: warning: main actor-isolated property 'emb_proxy' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
webView.emb_proxy = proxy
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift:17:9: note: mutation of this property is only permitted within the actor
var emb_proxy: EMBWKNavigationDelegateProxy? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:180:28: warning: main actor-isolated property 'navigationDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if webView.navigationDelegate == nil {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: property declared here
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:181:29: warning: main actor-isolated property 'navigationDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
webView.navigationDelegate = nil // forceful trigger setNavigationDelegate swizzler
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:203:28: warning: main actor-isolated property 'navigationDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if webView.navigationDelegate == nil {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: property declared here
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:204:29: warning: main actor-isolated property 'navigationDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
webView.navigationDelegate = nil // forcefully trigger setNavigationDelegate swizzler
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:226:28: warning: main actor-isolated property 'navigationDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if webView.navigationDelegate == nil {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: property declared here
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:227:29: warning: main actor-isolated property 'navigationDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
webView.navigationDelegate = nil // forcefully trigger setNavigationDelegate swizzler
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:251:28: warning: main actor-isolated property 'navigationDelegate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if webView.navigationDelegate == nil {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: property declared here
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:252:29: warning: main actor-isolated property 'navigationDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
webView.navigationDelegate = nil // forcefully trigger setNavigationDelegate swizzler
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:94:65: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:152:33: warning: sending value of non-Sendable type '(URL?, Int) -> Void' risks causing data races; this is an error in the Swift 6 language mode
let proxy = EMBWKNavigationDelegateProxy(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WebViewCaptureService.swift:152:33: note: sending task-isolated value of non-Sendable type '(URL?, Int) -> Void' to main actor-isolated initializer 'init(originalDelegate:callback:)' risks causing races in between task-isolated and main actor-isolated uses
let proxy = EMBWKNavigationDelegateProxy(
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'EmbraceCore' may lead to instability during execution
@_implementationOnly import EmbraceObjCUtilsInternal
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:39:43: warning: static property 'client' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
@objc public internal(set) static var client: Embrace?
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:39:43: note: convert 'client' to a 'let' constant to make 'Sendable' shared state immutable
@objc public internal(set) static var client: Embrace?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:39:43: note: add '@MainActor' to make static property 'client' part of global actor 'MainActor'
@objc public internal(set) static var client: Embrace?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:39:43: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc public internal(set) static var client: Embrace?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:105:16: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var logger: DefaultInternalLogger = DefaultInternalLogger(exportFilePath: EmbraceFileSystem.criticalLogsURL)
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:105:16: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
static var logger: DefaultInternalLogger = DefaultInternalLogger(exportFilePath: EmbraceFileSystem.criticalLogsURL)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:105:16: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
static var logger: DefaultInternalLogger = DefaultInternalLogger(exportFilePath: EmbraceFileSystem.criticalLogsURL)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:105:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var logger: DefaultInternalLogger = DefaultInternalLogger(exportFilePath: EmbraceFileSystem.criticalLogsURL)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:310:21: warning: capture of 'self' with non-sendable type 'Embrace?' in a '@Sendable' closure
self?.captureServices.start()
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:32:20: note: class 'Embrace' does not conform to the 'Sendable' protocol
@objc public class Embrace: NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:397:13: warning: capture of 'self' with non-sendable type 'Embrace' in a '@Sendable' closure
self.sessionLifecycle.startSession()
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:32:20: note: class 'Embrace' does not conform to the 'Sendable' protocol
@objc public class Embrace: NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:409:13: warning: capture of 'self' with non-sendable type 'Embrace' in a '@Sendable' closure
self.sessionLifecycle.endSession()
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Embrace.swift:32:20: note: class 'Embrace' does not conform to the 'Sendable' protocol
@objc public class Embrace: NSObject {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/ErrorManagement/EmbraceSetupError.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/ExampleCrash/CrashHelper.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/FileSystem/EmbraceFilePathProvider.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/FileSystem/EmbraceFileSystem.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Embrace+Config.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Embrace+Config.swift:7:22: warning: using '@_implementationOnly' without enabling library evolution for 'EmbraceCore' may lead to instability during execution
@_implementationOnly import EmbraceObjCUtilsInternal
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Embrace+EmbraceMetricKitStateProvider.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Embrace+EmbraceSDKStateProvider.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Embrace+Setup.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Embrace+Setup.swift:12:22: warning: using '@_implementationOnly' without enabling library evolution for 'EmbraceCore' may lead to instability during execution
@_implementationOnly import EmbraceObjCUtilsInternal
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/EmbraceMeta+UserAgent.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Identifiers/DeviceIdentifier+Persistence.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Internal/Logs/DefaultEmbraceLogSharedState.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling EmbraceUploadCache.swift, UploadDataRecord.swift (in target 'EmbraceUploadInternal' from project 'EmbraceIO')
SwiftDriver\ Compilation EmbraceUploadInternal normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceUploadInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceUploadInternal -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for EmbraceCore (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftCompile normal arm64 Compiling\ TapCaptureService.swift,\ TapCaptureServiceDelegate.swift,\ CaptureServices+UIViewController.swift,\ EmbraceViewControllerCustomization.swift,\ InstrumentableViewController.swift,\ InteractableViewController.swift,\ UIViewController+Embrace.swift,\ UIViewControllerHandler.swift,\ ViewCaptureService+Options.swift,\ ViewCaptureService.swift,\ ViewCaptureServiceError.swift,\ ViewCaptureServiceSwizzleCache.swift,\ ViewInstrumentationState.swift,\ WKWebView+Embrace.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureServiceDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/CaptureServices+UIViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/EmbraceViewControllerCustomization.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/InstrumentableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/InteractableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService+Options.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureServiceError.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureServiceSwizzleCache.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewInstrumentationState.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:138:16: warning: static property 'selector' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var selector: Selector = #selector(
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:138:16: note: convert 'selector' to a 'let' constant to make 'Sendable' shared state immutable
static var selector: Selector = #selector(
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:138:16: note: add '@MainActor' to make static property 'selector' part of global actor 'MainActor'
static var selector: Selector = #selector(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:138:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var selector: Selector = #selector(
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:61:21: warning: main actor-isolated property 'type' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard event.type == .touches,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h:64:47: note: property declared here
@property(nonatomic,readonly) UIEventType type API_AVAILABLE(ios(3.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:62:38: warning: main actor-isolated property 'allTouches' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let allTouches = event.allTouches,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h:72:61: note: property declared here
@property(nonatomic, readonly, nullable) NSSet <UITouch *> *allTouches;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:64:21: warning: main actor-isolated property 'phase' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
touch.phase == options.tapPhase.asUITouchPhase(),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h:54:51: note: property declared here
@property(nonatomic,readonly) UITouchPhase phase;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:65:34: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let target = touch.view else {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h:64:80: note: property declared here
@property(nullable,nonatomic,readonly,strong) UIView *view;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:70:18: warning: main actor-isolated property 'phase' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if touch.phase == .ended {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h:54:51: note: property declared here
@property(nonatomic,readonly) UITouchPhase phase;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:71:39: warning: call to main actor-isolated instance method 'location(in:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let touchLocation = touch.location(in: target)
^
UIKit.UITouch.location:2:22: note: calls to instance method 'location(in:)' from outside of its actor context are implicitly asynchronous
@MainActor open func location(in view: UIView?) -> CGPoint}
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:72:26: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard target.bounds.contains(touchLocation) else {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:88:46: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let accessibilityIdentifier = target.accessibilityIdentifier
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:100:31: warning: call to main actor-isolated instance method 'location(in:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let point = touch.location(in: target.window)
^
UIKit.UITouch.location:2:22: note: calls to instance method 'location(in:)' from outside of its actor context are implicitly asynchronous
@MainActor open func location(in view: UIView?) -> CGPoint}
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:100:51: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let point = touch.location(in: target.window)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *window;
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureService.swift:55:10: note: add '@MainActor' to make instance method 'handleCapturedEvent' part of global actor 'MainActor'
func handleCapturedEvent(_ event: UIEvent) {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/Tap/TapCaptureServiceDelegate.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/CaptureServices+UIViewController.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/EmbraceViewControllerCustomization.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/InstrumentableViewController.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/Protocols/InteractableViewController.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:11:20: warning: static property 'embraceIdentifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var embraceIdentifier: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:11:20: note: convert 'embraceIdentifier' to a 'let' constant to make 'Sendable' shared state immutable
static var embraceIdentifier: Int = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:11:20: note: add '@MainActor' to make static property 'embraceIdentifier' part of global actor 'MainActor'
static var embraceIdentifier: Int = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:11:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var embraceIdentifier: Int = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:12:20: warning: static property 'anotherIdentifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var anotherIdentifier: Int = 1
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:12:20: note: convert 'anotherIdentifier' to a 'let' constant to make 'Sendable' shared state immutable
static var anotherIdentifier: Int = 1
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:12:20: note: add '@MainActor' to make static property 'anotherIdentifier' part of global actor 'MainActor'
static var anotherIdentifier: Int = 1
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:12:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var anotherIdentifier: Int = 1
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:53:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:52:10: note: add '@MainActor' to make instance method 'parentSpan(for:)' part of global actor 'MainActor'
func parentSpan(for vc: UIViewController) -> Span? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:89:18: warning: main actor-isolated property 'emb_shouldCaptureView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
vc.emb_shouldCaptureView,
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:45:9: note: property declared here
var emb_shouldCaptureView: Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:85:10: note: add '@MainActor' to make instance method 'onViewDidLoadStart(_:now:)' part of global actor 'MainActor'
func onViewDidLoadStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:101:12: warning: main actor-isolated property 'emb_instrumentation_state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
vc.emb_instrumentation_state = state
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: mutation of this property is only permitted within the actor
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:85:10: note: add '@MainActor' to make instance method 'onViewDidLoadStart(_:now:)' part of global actor 'MainActor'
func onViewDidLoadStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:103:28: warning: main actor-isolated property 'className' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let className = vc.className
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:53:9: note: property declared here
var className: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:85:10: note: add '@MainActor' to make instance method 'onViewDidLoadStart(_:now:)' part of global actor 'MainActor'
func onViewDidLoadStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:104:27: warning: main actor-isolated property 'emb_viewName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let viewName = vc.emb_viewName
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:35:9: note: property declared here
var emb_viewName: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:85:10: note: add '@MainActor' to make instance method 'onViewDidLoadStart(_:now:)' part of global actor 'MainActor'
func onViewDidLoadStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:140:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:139:10: note: add '@MainActor' to make instance method 'onViewDidLoadEnd(_:now:)' part of global actor 'MainActor'
func onViewDidLoadEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:153:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:152:10: note: add '@MainActor' to make instance method 'onViewWillAppearStart(_:now:)' part of global actor 'MainActor'
func onViewWillAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:157:12: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
vc.emb_instrumentation_state?.viewWillAppearSpanCreated = true
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:152:10: note: add '@MainActor' to make instance method 'onViewWillAppearStart(_:now:)' part of global actor 'MainActor'
func onViewWillAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:159:28: warning: main actor-isolated property 'className' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let className = vc.className
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:53:9: note: property declared here
var className: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:152:10: note: add '@MainActor' to make instance method 'onViewWillAppearStart(_:now:)' part of global actor 'MainActor'
func onViewWillAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:160:27: warning: main actor-isolated property 'emb_viewName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let viewName = vc.emb_viewName
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:35:9: note: property declared here
var emb_viewName: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:152:10: note: add '@MainActor' to make instance method 'onViewWillAppearStart(_:now:)' part of global actor 'MainActor'
func onViewWillAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:183:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:182:10: note: add '@MainActor' to make instance method 'onViewWillAppearEnd(_:now:)' part of global actor 'MainActor'
func onViewWillAppearEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:196:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:195:10: note: add '@MainActor' to make instance method 'onViewIsAppearingStart(_:now:)' part of global actor 'MainActor'
func onViewIsAppearingStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:200:12: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
vc.emb_instrumentation_state?.viewIsAppearingSpanCreated = true
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:195:10: note: add '@MainActor' to make instance method 'onViewIsAppearingStart(_:now:)' part of global actor 'MainActor'
func onViewIsAppearingStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:202:28: warning: main actor-isolated property 'className' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let className = vc.className
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:53:9: note: property declared here
var className: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:195:10: note: add '@MainActor' to make instance method 'onViewIsAppearingStart(_:now:)' part of global actor 'MainActor'
func onViewIsAppearingStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:203:27: warning: main actor-isolated property 'emb_viewName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let viewName = vc.emb_viewName
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:35:9: note: property declared here
var emb_viewName: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:195:10: note: add '@MainActor' to make instance method 'onViewIsAppearingStart(_:now:)' part of global actor 'MainActor'
func onViewIsAppearingStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:227:31: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier,
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:237:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:236:10: note: add '@MainActor' to make instance method 'onViewDidAppearStart(_:now:)' part of global actor 'MainActor'
func onViewDidAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:241:12: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
vc.emb_instrumentation_state?.viewDidAppearSpanCreated = true
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:236:10: note: add '@MainActor' to make instance method 'onViewDidAppearStart(_:now:)' part of global actor 'MainActor'
func onViewDidAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:243:28: warning: main actor-isolated property 'className' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let className = vc.className
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:53:9: note: property declared here
var className: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:236:10: note: add '@MainActor' to make instance method 'onViewDidAppearStart(_:now:)' part of global actor 'MainActor'
func onViewDidAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:244:27: warning: main actor-isolated property 'emb_viewName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let viewName = vc.emb_viewName
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:35:9: note: property declared here
var emb_viewName: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:236:10: note: add '@MainActor' to make instance method 'onViewDidAppearStart(_:now:)' part of global actor 'MainActor'
func onViewDidAppearStart(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:272:19: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vc.emb_instrumentation_state == nil {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:266:10: note: add '@MainActor' to make instance method 'onViewDidAppearEnd(_:now:)' part of global actor 'MainActor'
func onViewDidAppearEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:273:20: warning: main actor-isolated property 'emb_instrumentation_state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
vc.emb_instrumentation_state = ViewInstrumentationState(identifier: UUID().uuidString)
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: mutation of this property is only permitted within the actor
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:266:10: note: add '@MainActor' to make instance method 'onViewDidAppearEnd(_:now:)' part of global actor 'MainActor'
func onViewDidAppearEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:277:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:266:10: note: add '@MainActor' to make instance method 'onViewDidAppearEnd(_:now:)' part of global actor 'MainActor'
func onViewDidAppearEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:282:28: warning: main actor-isolated property 'className' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let className = vc.className
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:53:9: note: property declared here
var className: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:266:10: note: add '@MainActor' to make instance method 'onViewDidAppearEnd(_:now:)' part of global actor 'MainActor'
func onViewDidAppearEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:283:27: warning: main actor-isolated property 'emb_viewName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let viewName = vc.emb_viewName
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:35:9: note: property declared here
var emb_viewName: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:266:10: note: add '@MainActor' to make instance method 'onViewDidAppearEnd(_:now:)' part of global actor 'MainActor'
func onViewDidAppearEnd(_ vc: UIViewController, now: Date = Date()) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:344:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:343:10: note: add '@MainActor' to make instance method 'onViewDidDisappear' part of global actor 'MainActor'
func onViewDidDisappear(_ vc: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:363:27: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let id = vc.emb_instrumentation_state?.identifier else {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewControllerHandler.swift:362:10: note: add '@MainActor' to make instance method 'onViewBecameInteractive' part of global actor 'MainActor'
func onViewBecameInteractive(_ vc: UIViewController) {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService+Options.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService.swift:113:51: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let state = viewController.emb_instrumentation_state, state.viewDidLoadSpanCreated {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService.swift:140:51: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let state = viewController.emb_instrumentation_state {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService.swift:178:51: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let state = viewController.emb_instrumentation_state, state.viewDidAppearSpanCreated {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService.swift:185:51: warning: main actor-isolated property 'emb_instrumentation_state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let state = viewController.emb_instrumentation_state, state.viewIsAppearingSpanCreated {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/UIViewController+Embrace.swift:15:9: note: property declared here
var emb_instrumentation_state: ViewInstrumentationState? {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureServiceError.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewCaptureServiceSwizzleCache.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/UX/View/ViewInstrumentationState.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift:7:22: warning: using '@_implementationOnly' without enabling library evolution for 'EmbraceCore' may lead to instability during execution
@_implementationOnly import EmbraceObjCUtilsInternal
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift:14:20: warning: static property 'embraceProxy' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var embraceProxy: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift:14:20: note: convert 'embraceProxy' to a 'let' constant to make 'Sendable' shared state immutable
static var embraceProxy: Int = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift:14:20: note: add '@MainActor' to make static property 'embraceProxy' part of global actor 'MainActor'
static var embraceProxy: Int = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/Capture/WebView/WKWebView+Embrace.swift:14:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var embraceProxy: Int = 0
^
nonisolated(unsafe)
SwiftDriver\ Compilation\ Requirements EmbraceCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling MetadataHandler+User.swift, MetadataHandler.swift, MetadataRecordTmp.swift, PersonaTag.swift, OpenTelemetryExport.swift, PushNotificationError.swift, PushNotificationEvent.swift, StartupInstrumentation+Customization.swift, UnsentDataHandler.swift, ManualSessionLifecycle.swift, iOSSessionLifecycle.swift, SessionLifecycle.swift, SessionControllable.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftDriver\ Compilation EmbraceCaptureService normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceCaptureService' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceCaptureService -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/EmbraceCore-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore-Swift.h (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/EmbraceCore-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftmodule (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftdoc (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.abi.json (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftsourceinfo (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'EmbraceStorageInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name EmbraceStorageInternal --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.EmbraceStorageInternal --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceStorageInternal.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceStorageInternal.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceStorageInternal.build/Objects-normal/arm64/EmbraceStorageInternal_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceStorageInternal.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceStorageInternal.build/Objects-normal/arm64/EmbraceStorageInternal.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceStorageInternal.build/EmbraceStorageInternal.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceStorageInternal.build/EmbraceStorageInternal.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceStorageInternal.build/Objects-normal/arm64/EmbraceStorageInternal.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-09 10:24:35.450 appintentsmetadataprocessor[2360:11221] Starting appintentsmetadataprocessor export
2025-06-09 10:24:35.490 appintentsmetadataprocessor[2360:11221] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriver EmbraceIO normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceIO -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashRecordingCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashRecording.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashRecordingCore/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashCore/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashRecording/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ EmbraceIO (in target 'EmbraceIO' from project 'EmbraceIO')
EmitSwiftModule normal arm64 (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Options/Options+CaptureService.swift:94:1: warning: extension declares a conformance of imported type 'Options' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'EmbraceCore' introduce this conformance in the future
extension Embrace.Options: ExpressibleByStringLiteral {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Options/Options+CaptureService.swift:94:1: note: add '@retroactive' to silence this warning
extension Embrace.Options: ExpressibleByStringLiteral {
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~
@retroactive ExpressibleByStringLiteral
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceOTelInternal.o (in target 'EmbraceOTelInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceOTelInternal.o
SwiftDriverJobDiscovery normal arm64 Compiling URLSessionRequestsDataSource.swift, URLSessionSwizzlerProvider.swift, URLSessionTask+Extension.swift, URLSessionTaskHandler.swift, AppInfoCaptureService.swift, DeviceInfoCaptureService.swift, PushNotificationCaptureService+Options.swift, PushNotificationCaptureService.swift, UNUserNotificationCenterDelegateProxy.swift, ResourceCaptureService.swift, LowMemoryWarningCaptureService.swift, LowPowerModeCaptureService.swift, PowerModeProvider.swift, TapCaptureService+Options.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftCompile normal arm64 Compiling\ CaptureServiceBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Capture/CaptureServiceBuilder.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Capture/CaptureServiceBuilder.swift (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Options+CaptureService.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Options/Options+CaptureService.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Options/Options+CaptureService.swift (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Options/Options+CaptureService.swift:94:1: warning: extension declares a conformance of imported type 'Options' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'EmbraceCore' introduce this conformance in the future
extension Embrace.Options: ExpressibleByStringLiteral {
^
/Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Options/Options+CaptureService.swift:94:1: note: add '@retroactive' to silence this warning
extension Embrace.Options: ExpressibleByStringLiteral {
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~
@retroactive ExpressibleByStringLiteral
SwiftDriverJobDiscovery normal arm64 Compiling MetricKitHandler.swift, ProcessMetadata.swift, AppResourceKey.swift, DeviceResourceKey.swift, UserResourceKey.swift, ResourceStorageExporter.swift, SpanDataValidation.swift, SpanDataValidator.swift, Collection+SpanDataValidator.swift, LengthOfNameValidator.swift, WhitespaceSpanNameValidator.swift, DefaultStartupDataProvider.swift, StartupDataProvider.swift, StartupInstrumentation.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftCompile normal arm64 Compiling\ CaptureService+Helpers.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Capture/CaptureService+Helpers.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/Capture/CaptureService+Helpers.swift (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling WebViewCaptureService+Options.swift, WebViewCaptureService.swift, Embrace.swift, EmbraceSetupError.swift, CrashHelper.swift, EmbraceFilePathProvider.swift, EmbraceFileSystem.swift, Embrace+Config.swift, Embrace+EmbraceMetricKitStateProvider.swift, Embrace+EmbraceSDKStateProvider.swift, Embrace+Setup.swift, EmbraceMeta+UserAgent.swift, DeviceIdentifier+Persistence.swift, DefaultEmbraceLogSharedState.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftCompile normal arm64 Compiling\ EmbraceCore+Export.swift /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/EmbraceCore+Export.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EmbraceIO/EmbraceCore+Export.swift (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ResourcePayload.swift, SpanEventPayload.swift, SpanLinkPayload.swift, SpanPayload.swift, PayloadUtils.swift, Embrace+CrashHelper.swift, Embrace+CrashReporter.swift, Embrace+OTel.swift, EmbraceSDKState.swift, Breadcrumb.swift, LastRunEndState.swift, LogLevel.swift, MetadataError.swift, MetadataHandler+Personas.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftDriverJobDiscovery normal arm64 Compiling DefaultEmbraceLoggerConfig.swift, EmbraceLogAttributesBuilder.swift, DefaultLogBatcher.swift, LogBatch.swift, LogBatchLimits.swift, StorageEmbraceLogExporter.swift, Collection+LogDataValidator.swift, LogDataValidation.swift, LogDataValidator.swift, LengthOfBodyValidator.swift, LogController.swift, BaseInternalLogger.swift, DefaultInternalLogger.swift, MetricKitCrashPayloadProvider.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftDriverJobDiscovery normal arm64 Compiling EmbraceSpanProcessor+Setup.swift, StorageSpanExporter+Options.swift, StorageSpanExporter.swift, Embrace+Endpoints.swift, Embrace+Options.swift, Platform.swift, AppInfoPayload.swift, Attribute.swift, LogPayloadBuilder.swift, SessionPayloadBuilder.swift, SpansPayloadBuilder.swift, LogPayload.swift, MetadataPayload.swift, PayloadEnvelope.swift (in target 'EmbraceCore' from project 'EmbraceIO')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceStorageInternal.o (in target 'EmbraceStorageInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceStorageInternal.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceUploadInternal.o normal (in target 'EmbraceUploadInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceUploadInternal.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCaptureService.o normal (in target 'EmbraceCaptureService' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCaptureService.o
SwiftDriverJobDiscovery normal arm64 Emitting module for EmbraceIO (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftDriver\ Compilation\ Requirements EmbraceIO normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceIO -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashRecordingCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashRecording.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashRecordingCore/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashCore/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashRecording/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/EmbraceIO-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-Swift.h (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/EmbraceIO-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftmodule (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftdoc (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.abi.json (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftsourceinfo (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'EmbraceUploadInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name EmbraceUploadInternal --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.EmbraceUploadInternal --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceUploadInternal.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceUploadInternal.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/EmbraceUploadInternal.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/EmbraceUploadInternal.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceUploadInternal.build/Objects-normal/arm64/EmbraceUploadInternal.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-09 10:24:35.771 appintentsmetadataprocessor[2370:11283] Starting appintentsmetadataprocessor export
2025-06-09 10:24:35.814 appintentsmetadataprocessor[2370:11283] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'EmbraceCaptureService' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name EmbraceCaptureService --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.EmbraceCaptureService --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCaptureService.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCaptureService.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/EmbraceCaptureService.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/EmbraceCaptureService.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCaptureService.build/Objects-normal/arm64/EmbraceCaptureService.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-09 10:24:35.771 appintentsmetadataprocessor[2371:11284] Starting appintentsmetadataprocessor export
2025-06-09 10:24:35.813 appintentsmetadataprocessor[2371:11284] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling SessionController.swift, SessionHeartbeat.swift, SessionSpanUtils.swift, CGPoint+toString.swift, Data+Gzip.swift, Encodable+JSON.swift, KeychainAccess.swift, KeychainInterface.swift, NSObject+Embrace.swift, ProcessInfo+Embrace.swift, URL+Embrace.swift, W3C+TraceParent.swift, W3C.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftDriverJobDiscovery normal arm64 Compiling CaptureServiceBuilder.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftDriverJobDiscovery normal arm64 Compiling Options+CaptureService.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftDriverJobDiscovery normal arm64 Compiling CaptureService+Helpers.swift (in target 'EmbraceIO' from project 'EmbraceIO')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceUploadInternal.o (in target 'EmbraceUploadInternal' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceUploadInternal.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCaptureService.o (in target 'EmbraceCaptureService' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCaptureService.o
SwiftDriverJobDiscovery normal arm64 Compiling EmbraceCore+Export.swift (in target 'EmbraceIO' from project 'EmbraceIO')
SwiftDriver\ Compilation EmbraceIO normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceIO -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashRecordingCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashCore.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KSCrashRecording.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashRecordingCore/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashCore/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/KSCrash/Sources/KSCrashRecording/include -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, CaptureServiceFactory.swift, CaptureServices.swift, MetricKitCrashCaptureService+Options.swift, MetricKitCrashCaptureService.swift, MetricKitHangCaptureService+Options.swift, MetricKitHangCaptureService.swift, EncryptedNetworkPayload.swift, EncryptionHelper.swift, NetworkPayloadCaptureHandler.swift, URLSessionTaskCaptureRule.swift, URLRequest+Extension.swift, URLSessionCaptureService+Options.swift, URLSessionCaptureService.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftDriverJobDiscovery normal arm64 Compiling TapCaptureService.swift, TapCaptureServiceDelegate.swift, CaptureServices+UIViewController.swift, EmbraceViewControllerCustomization.swift, InstrumentableViewController.swift, InteractableViewController.swift, UIViewController+Embrace.swift, UIViewControllerHandler.swift, ViewCaptureService+Options.swift, ViewCaptureService.swift, ViewCaptureServiceError.swift, ViewCaptureServiceSwizzleCache.swift, ViewInstrumentationState.swift, WKWebView+Embrace.swift (in target 'EmbraceCore' from project 'EmbraceIO')
SwiftDriver\ Compilation EmbraceCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EmbraceCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/EmbraceObjCUtilsInternal/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.o normal (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.o
ExtractAppIntentsMetadata (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name EmbraceCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.EmbraceCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/EmbraceCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/EmbraceCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceCore.build/Objects-normal/arm64/EmbraceCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-09 10:24:37.040 appintentsmetadataprocessor[2374:11324] Starting appintentsmetadataprocessor export
2025-06-09 10:24:37.077 appintentsmetadataprocessor[2374:11324] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.o (in target 'EmbraceCore' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceCore.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.o normal (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.o
ExtractAppIntentsMetadata (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name EmbraceIO --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.EmbraceIO --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/EmbraceIO.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/EmbraceIO.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EmbraceIO.build/Debug-iphoneos/EmbraceIO.build/Objects-normal/arm64/EmbraceIO.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-09 10:24:37.123 appintentsmetadataprocessor[2377:11338] Starting appintentsmetadataprocessor export
2025-06-09 10:24:37.158 appintentsmetadataprocessor[2377:11338] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.o (in target 'EmbraceIO' from project 'EmbraceIO')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/EmbraceIO.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "kscrash",
"requirement" : {
"range" : [
{
"lower_bound" : "2.1.1",
"upper_bound" : "2.2.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/kstenerud/KSCrash"
},
{
"identity" : "opentelemetry-swift",
"requirement" : {
"exact" : [
"1.13.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/open-telemetry/opentelemetry-swift"
}
],
"manifest_display_name" : "EmbraceIO",
"name" : "EmbraceIO",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "EmbraceIO",
"targets" : [
"EmbraceIO"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EmbraceCore",
"targets" : [
"EmbraceCore",
"EmbraceConfiguration"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EmbraceCrash",
"targets" : [
"EmbraceCrash"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EmbraceCrashlyticsSupport",
"targets" : [
"EmbraceCrashlyticsSupport"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "EmbraceSemantics",
"targets" : [
"EmbraceSemantics"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TestSupportObjc",
"module_type" : "ClangTarget",
"name" : "TestSupportObjc",
"path" : "Tests/TestSupport/Objc",
"sources" : [
"source/URLSessionDelegateImplementerButWithoutConforming.m"
],
"type" : "library"
},
{
"c99name" : "TestSupport",
"module_type" : "SwiftTarget",
"name" : "TestSupport",
"path" : "Tests/TestSupport",
"product_dependencies" : [
"OpenTelemetrySdk"
],
"sources" : [
"CoreDataListener.swift",
"CrashReporterContext+TestContext.swift",
"EditableConfig.swift",
"EmbraceHTTPMock.swift",
"Extensions/Dictionary+Extension.swift",
"Extensions/EmbraceStorage+Extension.swift",
"Extensions/Int+Extension.swift",
"Extensions/String+Extension.swift",
"Extensions/XCTestCase+Extension.swift",
"IntegrationTestCase.swift",
"LocalProxy/ProxiedURLSessionProvider.swift",
"LocalProxy/URL+MockResponse.swift",
"LocalProxy/URLTestProxiedResponse.swift",
"LocalProxy/URLTestProxy.swift",
"Mocks/DummyLogControllable.swift",
"Mocks/LogRecordExporter/InMemoryLogRecordExporter.swift",
"Mocks/MockEmbraceConfigurable.swift",
"Mocks/MockEmbraceOTelBridge.swift",
"Mocks/MockEmbraceOpenTelemetry.swift",
"Mocks/MockEmbraceSDKStateProvider.swift",
"Mocks/MockLogger.swift",
"Mocks/MockQueue.swift",
"Mocks/MockSpanProcessor.swift",
"Mocks/Model/MockLog.swift",
"Mocks/Model/MockMetadata.swift",
"Mocks/Model/MockSession.swift",
"Mocks/SpanExporter/InMemorySpanExporter.swift",
"TemporaryFilepathProvider.swift",
"TestConstants.swift",
"TimeInterval+Test.swift",
"XCTSkip+Helpers.swift",
"XCTestCase+WaitHelpers.swift"
],
"target_dependencies" : [
"EmbraceCore",
"EmbraceOTelInternal",
"EmbraceCommonInternal"
],
"type" : "library"
},
{
"c99name" : "EmbraceUploadInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceUploadInternalTests",
"path" : "Tests/EmbraceUploadInternalTests",
"sources" : [
"EmbraceAttachmentOperationTests.swift",
"EmbraceUploadCacheTests+ClearDataDate.swift",
"EmbraceUploadCacheTests.swift",
"EmbraceUploadOperationTests.swift",
"EmbraceUploadTests.swift"
],
"target_dependencies" : [
"EmbraceUploadInternal",
"EmbraceOTelInternal",
"EmbraceCoreDataInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceUploadInternal",
"module_type" : "SwiftTarget",
"name" : "EmbraceUploadInternal",
"path" : "Sources/EmbraceUploadInternal",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"Cache/EmbraceUploadCache.swift",
"Cache/UploadDataRecord.swift",
"EmbraceReachabilityMonitor.swift",
"EmbraceUpload.swift",
"EmbraceUploadType.swift",
"ErrorManagement/EmbraceUploadError.swift",
"Operations/AsyncOperation.swift",
"Operations/EmbraceAttachmentUploadOperation.swift",
"Operations/EmbraceUploadOperation.swift",
"Options/EmbraceUpload+CacheOptions.swift",
"Options/EmbraceUpload+EndpointOptions.swift",
"Options/EmbraceUpload+ExponentialBackoff.swift",
"Options/EmbraceUpload+MetadataOptions.swift",
"Options/EmbraceUpload+Options.swift",
"Options/EmbraceUpload+RedundancyOptions.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal",
"EmbraceOTelInternal",
"EmbraceCoreDataInternal"
],
"type" : "library"
},
{
"c99name" : "EmbraceStorageInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceStorageInternalTests",
"path" : "Tests/EmbraceStorageInternalTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/EmbraceStorageInternalTests/Mocks",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"EmbraceStorageLoggingTests.swift",
"EmbraceStorageTests.swift",
"FetchMethods/EmbraceStorage+SpanForSessionRecordTests.swift",
"MetadataRecordTests.swift",
"Records/SpanRecord/EmbraceStorage+SpanTests.swift",
"SessionRecordTests.swift",
"SpanRecordTests.swift"
],
"target_dependencies" : [
"EmbraceStorageInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceStorageInternal",
"module_type" : "SwiftTarget",
"name" : "EmbraceStorageInternal",
"path" : "Sources/EmbraceStorageInternal",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"EmbraceStorage+Options.swift",
"EmbraceStorage.swift",
"EmbraceStorageError.swift",
"Records/EmbraceStorage+Log.swift",
"Records/EmbraceStorage+Metadata.swift",
"Records/EmbraceStorage+Session.swift",
"Records/EmbraceStorage+Span.swift",
"Records/EmbraceStorageRecord.swift",
"Records/LogAttributeRecord.swift",
"Records/LogRecord.swift",
"Records/MetadataRecord.swift",
"Records/SessionRecord.swift",
"Records/SpanRecord.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal",
"EmbraceCoreDataInternal",
"EmbraceSemantics"
],
"type" : "library"
},
{
"c99name" : "EmbraceSemantics",
"module_type" : "SwiftTarget",
"name" : "EmbraceSemantics",
"path" : "Sources/EmbraceSemantics",
"product_dependencies" : [
"OpenTelemetrySdk"
],
"product_memberships" : [
"EmbraceIO",
"EmbraceCore",
"EmbraceSemantics"
],
"sources" : [
"Logs/LogSemantics+Crash.swift",
"Logs/LogSemantics+Hang.swift",
"Logs/LogSemantics+NetworkCapture.swift",
"Logs/LogSemantics.swift",
"Logs/LogType+Declarations.swift",
"Span/SpanErrorCode.swift",
"Span/SpanSemantics+LowPower.swift",
"Span/SpanSemantics+NetworkRequest.swift",
"Span/SpanSemantics+Session.swift",
"Span/SpanSemantics+Startup.swift",
"Span/SpanSemantics+View.swift",
"Span/SpanSemantics.swift",
"SpanEvent/SpanEventSemantics+Breadcrumb.swift",
"SpanEvent/SpanEventSemantics+LowMemory.swift",
"SpanEvent/SpanEventSemantics+PushNotification.swift",
"SpanEvent/SpanEventSemantics+Tap.swift",
"SpanEvent/SpanEventSemantics+WebView.swift",
"SpanEvent/SpanEventSemantics.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal"
],
"type" : "library"
},
{
"c99name" : "EmbraceObjCUtilsInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceObjCUtilsInternalTests",
"path" : "Tests/EmbraceObjCUtilsInternalTests",
"sources" : [
"EMBDeviceTests.swift",
"EMBRURLSessionTaskHeaderInjectorTests.swift"
],
"target_dependencies" : [
"EmbraceObjCUtilsInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceObjCUtilsInternal",
"module_type" : "ClangTarget",
"name" : "EmbraceObjCUtilsInternal",
"path" : "Sources/EmbraceObjCUtilsInternal",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"source/EMBBinaryImageProvider.m",
"source/EMBDevice.m",
"source/EMBDisplayLinkProxy.m",
"source/EMBLoaderClass.m",
"source/EMBRURLSessionTaskHeaderInjector.m",
"source/EMBStackTraceProccessor.m",
"source/EMBStartupTracker.m",
"source/EMBURLSessionDelegateForwarder.m",
"source/EMBURLSessionDelegateProxy+FRPPatch.m",
"source/EMBURLSessionDelegateProxy.m",
"source/EMBURLSessionDelegateProxyFunctions.m",
"source/EMBWKNavigationDelegateProxy.m"
],
"type" : "library"
},
{
"c99name" : "EmbraceOTelInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceOTelInternalTests",
"path" : "Tests/EmbraceOTelInternalTests",
"sources" : [
"EmbraceOTelTests.swift",
"Logs/BatchLimitTests.swift",
"Logs/EmbraceLogRecordBuilderTests.swift",
"Logs/EmbraceLoggerBuilderTests.swift",
"Logs/EmbraceLoggerProviderTests.swift",
"Logs/EmbraceLoggerTests.swift",
"Logs/GenericLogExporterTests.swift",
"Logs/Processors/EmbraceLogRecordProcessorArrayExtension.swift",
"Logs/Processors/SingleLogRecordProcessorTests.swift",
"Logs/SeverityToLogSeverityTests.swift",
"Mocks/DummyEmbraceLogShared.swift",
"Mocks/DummyEmbraceResourceProvider.swift",
"Mocks/DummyLogBatcher.swift",
"Mocks/EmbraceLogRecordExporter.swift",
"Mocks/MockEmbraceLogSharedState.swift",
"Mocks/RandomConfig.swift",
"Mocks/SpyEmbraceResourceProvider.swift",
"Mocks/SpyLoggerProcessor.swift",
"Shared/EmbraceResourceProviderTests.swift",
"TestSupport/Logs/DefaultEmbraceResource.swift",
"TestSupport/Logs/RedeableLogRecord+Extension.swift",
"TestSupport/SpanContext+Helpers.swift",
"TestSupport/SpanProcessor/NoopSpanProcessor.swift",
"Trace/Tracer/Span/Processor/SingleSpanProcessorTests.swift"
],
"target_dependencies" : [
"EmbraceOTelInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceOTelInternal",
"module_type" : "SwiftTarget",
"name" : "EmbraceOTelInternal",
"path" : "Sources/EmbraceOTelInternal",
"product_dependencies" : [
"OpenTelemetrySdk"
],
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"EmbraceOTel.swift",
"EmbraceOpenTelemetry.swift",
"Logs/EmbraceLogRecordBuilder.swift",
"Logs/EmbraceLogger.swift",
"Logs/EmbraceLoggerBuilder.swift",
"Logs/EmbraceLoggerConfig.swift",
"Logs/EmbraceLoggerProvider.swift",
"Logs/EmbraceLoggerSharedState.swift",
"Logs/EmbraceSemantics/LogRecord+Embrace.swift",
"Logs/Exporter/BatchLimits.swift",
"Logs/Processors/EmbraceLogRecordProcessor.swift",
"Logs/Processors/SingleLogRecordProcessor.swift",
"Logs/Severity+LogSeverity.swift",
"Shared/EmbraceResource.swift",
"Shared/EmbraceResourceProvider.swift",
"Trace/EmbraceSemantics/Span/Span+Embrace.swift",
"Trace/EmbraceSemantics/Span/SpanData+Embrace.swift",
"Trace/EmbraceSemantics/SpanBuilder/SpanBuilder+Embrace.swift",
"Trace/Tracer/Span/Processor/SingleSpanProcessor.swift",
"Trace/Tracer/Span/RecordingSpanEvent.swift",
"Trace/Tracer/Span/RecordingSpanLink.swift",
"Trace/Tracer/Span/SpanEvent.swift",
"Trace/Tracer/Span/SpanLink.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal",
"EmbraceSemantics"
],
"type" : "library"
},
{
"c99name" : "EmbraceIOTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceIOTests",
"path" : "Tests/EmbraceIOTests",
"sources" : [
"CaptureServiceBuilderTests.swift"
],
"target_dependencies" : [
"EmbraceIO",
"EmbraceCore",
"EmbraceCrash",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceIO",
"module_type" : "SwiftTarget",
"name" : "EmbraceIO",
"path" : "Sources/EmbraceIO",
"product_memberships" : [
"EmbraceIO"
],
"sources" : [
"Capture/CaptureService+Helpers.swift",
"Capture/CaptureServiceBuilder.swift",
"EmbraceCore+Export.swift",
"Options/Options+CaptureService.swift"
],
"target_dependencies" : [
"EmbraceCaptureService",
"EmbraceCore",
"EmbraceCommonInternal",
"EmbraceCrash",
"EmbraceSemantics"
],
"type" : "library"
},
{
"c99name" : "EmbraceCrashlyticsSupportTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceCrashlyticsSupportTests",
"path" : "Tests/ThirdParty/EmbraceCrashlyticsSupportTests",
"sources" : [
"CrashlyticsReporterTests.swift",
"CrashlyticsWrapperTests.swift",
"MockCrashlytics.swift"
],
"target_dependencies" : [
"EmbraceCrashlyticsSupport",
"EmbraceCommonInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceCrashlyticsSupport",
"module_type" : "SwiftTarget",
"name" : "EmbraceCrashlyticsSupport",
"path" : "Sources/ThirdParty/EmbraceCrashlyticsSupport",
"product_memberships" : [
"EmbraceCrashlyticsSupport"
],
"sources" : [
"CrashlyticsReporter.swift",
"CrashlyticsWrapper.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal"
],
"type" : "library"
},
{
"c99name" : "EmbraceCrashTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceCrashTests",
"path" : "Tests/EmbraceCrashTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/EmbraceCrashTests/Mocks",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"EmbraceCrashReporterTests.swift"
],
"target_dependencies" : [
"EmbraceCrash",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceCrash",
"module_type" : "SwiftTarget",
"name" : "EmbraceCrash",
"path" : "Sources/EmbraceCrash",
"product_dependencies" : [
"Recording"
],
"product_memberships" : [
"EmbraceIO",
"EmbraceCrash"
],
"sources" : [
"EmbraceCrashReporter.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal"
],
"type" : "library"
},
{
"c99name" : "EmbraceCoreTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceCoreTests",
"path" : "Tests/EmbraceCoreTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/EmbraceCoreTests/Mocks",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Capture/CaptureServiceFactoryTests.swift",
"Capture/EmbraceSetupCaptureServicesTests.swift",
"Capture/MetricKit/MetricKitCrashCaptureServiceTests.swift",
"Capture/MetricKit/MetricKitHangCaptureServiceTests.swift",
"Capture/MetricKit/MockMetricKitPayloadProvider.swift",
"Capture/MetricKit/MockMetricKitStateProvider.swift",
"Capture/Network/DataTaskWithURLAndCompletionSwizzlerTests.swift",
"Capture/Network/DataTaskWithURLRequestAndCompletionSwizzlerTests.swift",
"Capture/Network/DataTaskWithURLRequestSwizzlerTests.swift",
"Capture/Network/DataTaskWithURLSwizzlerTests.swift",
"Capture/Network/DefaultURLSessionSwizzlerProviderTests.swift",
"Capture/Network/DefaultURLSessionTaskHandlerTests.swift",
"Capture/Network/DownloadTaskWithURLRequestSwizzlerTests.swift",
"Capture/Network/DownloadTaskWithURLRequestWithCompletionSwizzler.swift",
"Capture/Network/EmbraceURLRequestTests.swift",
"Capture/Network/NetworkPayloadCapture/EncryptedNetworkPayloadTests.swift",
"Capture/Network/NetworkPayloadCapture/EncryptionHelperTests.swift",
"Capture/Network/NetworkPayloadCapture/NetworkPayloadCaptureHandlerTests.swift",
"Capture/Network/NetworkPayloadCapture/URLSessionTaskCaptureRuleTests.swift",
"Capture/Network/Proxy/URLSessionDelegateProxyAsTaskDelegateTests.swift",
"Capture/Network/Proxy/URLSessionDelegateProxyForwardingTests.swift",
"Capture/Network/Proxy/URLSessionDelegateProxyTests.swift",
"Capture/Network/Proxy/URLSessionDelegateProxyToNonConformantTests.swift",
"Capture/Network/Proxy/URLSessionTask+ExtensionTests.swift",
"Capture/Network/SessionTaskResumeSwizzlerTests.swift",
"Capture/Network/URLSessionCaptureServiceTests.swift",
"Capture/Network/URLSessionInitWithDelegateSwizzlerTests.swift",
"Capture/Network/UploadTaskWithRequestFromDataAndCompletionSwizzlerTests.swift",
"Capture/Network/UploadTaskWithRequestFromDataSwizzlerTests.swift",
"Capture/Network/UploadTaskWithRequestFromFileSwizzlerTests.swift",
"Capture/Network/UploadTaskWithRequestFromFileWithCompletionSwizzlerTests.swift",
"Capture/Network/UploadTaskWithStreamedRequestSwizzlerTests.swift",
"Capture/OneTimeServices/AppInfoCaptureServiceTests.swift",
"Capture/OneTimeServices/DeviceInfoCaptureServiceTests.swift",
"Capture/ResourceCaptureServiceTests.swift",
"Capture/System/LowMemoryWarningCaptureServiceTests.swift",
"Capture/System/LowPowerModeCaptureServiceTests.swift",
"Capture/UX/TapCaptureServiceTests.swift",
"Capture/UX/View/CaptureServicesUIViewControllerTests.swift",
"Capture/UX/View/MockUIViewControllerHandler.swift",
"Capture/UX/View/MockUIViewControllerHandlerDataSource.swift",
"Capture/UX/View/UIViewControllerHandlerTests.swift",
"Capture/UX/View/ViewCaptureServiceTests.swift",
"Capture/WebView/MockWKNavigationDelegate.swift",
"Capture/WebView/WKNavigationDelegateProxyTests.swift",
"Capture/WebView/WebViewCaptureServiceTests.swift",
"Internal/EmbraceMeta+UserAgentTests.swift",
"Internal/EmbraceSpanProcessor+StorageTests.swift",
"Internal/Identifiers/DeviceIdentifier+PersistenceTests.swift",
"Internal/Logs/EmbraceLogAttributesBuilderTests.swift",
"Internal/Logs/EmbraceLoggerSharedStateTests.swift",
"Internal/Logs/Exporter/DefaultLogBatcherTests.swift",
"Internal/Logs/Exporter/StorageEmbraceLogExporterTests.swift",
"Internal/Logs/Exporter/Validation/LogDataValidationTests.swift",
"Internal/Logs/Exporter/Validation/Validators/LengthOfBodyValidatorTests.swift",
"Internal/Logs/LogControllerTests.swift",
"Internal/Logs/Loggers/BaseInternalLoggerTests.swift",
"Internal/Logs/Loggers/DefaultInternalLoggerTests.swift",
"Internal/Logs/LogsBatchTests.swift",
"Internal/MetricKit/MetricKitHandlerTests.swift",
"Internal/MetricKit/MockMetricKitCrashPayloadListener.swift",
"Internal/MetricKit/MockMetricKitHangPayloadListener.swift",
"Internal/ProcessMetadataTests.swift",
"Internal/ResourceStorageExporterTests.swift",
"Internal/SpanStorageExporter/Validation/SpanDataValidationTests.swift",
"Internal/SpanStorageExporter/Validation/Validators/LengthOfNameValidatorTests.swift",
"Internal/SpanStorageExporter/Validation/Validators/WhitespaceSpanNameValidatorTests.swift",
"Internal/Startup/MockStartupDataProvider.swift",
"Internal/Startup/StartupInstrumentationTests.swift",
"Internal/StorageSpanExporterTests.swift",
"Options/Embrace+OptionsTests.swift",
"Payload/LogPayloadBuilderTests.swift",
"Payload/LogPayloadTests.swift",
"Payload/MetadataPayloadTests.swift",
"Payload/PayloadUtilTests.swift",
"Payload/ResourcePayloadTests.swift",
"Payload/SessionPayloadBuilderTests.swift",
"Payload/SpanPayloadTests.swift",
"Payload/SpansPayloadBuilderTests.swift",
"Public/BreadcrumbTests.swift",
"Public/Embrace+OTelTests.swift",
"Public/EmbraceCoreTests.swift",
"Public/EmbraceEndpointsTest.swift",
"Public/Metadata/MetadataHandler+PersonaTagTests.swift",
"Public/Metadata/MetadataHandler+UserTests.swift",
"Public/Metadata/MetadataHandlerTests.swift",
"Public/Metadata/PersonaTagTests.swift",
"Public/PushNotificationEventTests.swift",
"Public/SpanEventBreadcrumbTests.swift",
"Session/Lifecycle/Implementations/ManualSessionLifecycleTests.swift",
"Session/Lifecycle/Implementations/iOSSessionLifecycleTests.swift",
"Session/SessionControllerTests.swift",
"Session/SessionHeartbeatTests.swift",
"Session/SessionSpanUtilsTests.swift",
"Session/UnsentDataHandlerTests.swift",
"TestSupport/MockLogDataValidator.swift",
"TestSupport/MockSpanDataValidator.swift",
"TestSupport/TestDoubles/CrashReporterMock.swift",
"TestSupport/TestDoubles/DummyLock.swift",
"TestSupport/TestDoubles/DummyURLSessionInitWithDelegateSwizzler.swift",
"TestSupport/TestDoubles/EmbraceConfigMock.swift",
"TestSupport/TestDoubles/ExtendableCrashReporterMock.swift",
"TestSupport/TestDoubles/FullyImplementedURLSessionTaskDelegate.swift",
"TestSupport/TestDoubles/MockMetadataFetcher.swift",
"TestSupport/TestDoubles/MockSessionController.swift",
"TestSupport/TestDoubles/MockTapEvent.swift",
"TestSupport/TestDoubles/MockUITouch.swift",
"TestSupport/TestDoubles/MockURLSessionRequestsDataSource.swift",
"TestSupport/TestDoubles/MockURLSessionSwizzler.swift",
"TestSupport/TestDoubles/MockURLSessionTaskHandler.swift",
"TestSupport/TestDoubles/MockURLSessionTaskHandlerDataSource.swift",
"TestSupport/TestDoubles/MockedURLSessionSwizzlerProvider.swift",
"TestSupport/TestDoubles/NotImplementedURLSessionDelegate.swift",
"TestSupport/TestDoubles/SpyEmbraceLogUploader.swift",
"TestSupport/TestDoubles/SpyLogBatcherDelegate.swift",
"TestSupport/TestDoubles/SpyLogRepository.swift",
"TestSupport/TestDoubles/SpyNetworkPayloadCaptureHandler.swift",
"TestSupport/TestDoubles/SpyStorage.swift",
"TestSupport/Utilities/DispatchQueue+DispatchableQueue.swift",
"TestSupport/Utilities/String+Random.swift",
"TestSupport/Utilities/Swizzlable+Unswizzle.swift",
"Utils/CGPointToStringTests.swift",
"Utils/EncodableJSONTests.swift",
"Utils/KeychainAccessTest.swift",
"Utils/W3C/W3C+TraceParentTests.swift"
],
"target_dependencies" : [
"EmbraceCore",
"TestSupport",
"TestSupportObjc"
],
"type" : "test"
},
{
"c99name" : "EmbraceCoreDataInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceCoreDataInternalTests",
"path" : "Tests/EmbraceCoreDataInternalTests",
"sources" : [
"CoreDataWrapperTests.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceCoreDataInternal",
"module_type" : "SwiftTarget",
"name" : "EmbraceCoreDataInternal",
"path" : "Sources/EmbraceCoreDataInternal",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"CoreDataWrapper+Options.swift",
"CoreDataWrapper.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal"
],
"type" : "library"
},
{
"c99name" : "EmbraceCore",
"module_type" : "SwiftTarget",
"name" : "EmbraceCore",
"path" : "Sources/EmbraceCore",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/EmbraceCore/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Capture/CaptureServiceFactory.swift",
"Capture/CaptureServices.swift",
"Capture/MetricKit/MetricKitCrashCaptureService+Options.swift",
"Capture/MetricKit/MetricKitCrashCaptureService.swift",
"Capture/MetricKit/MetricKitHangCaptureService+Options.swift",
"Capture/MetricKit/MetricKitHangCaptureService.swift",
"Capture/Network/NetworkPayloadCapture/EncryptedNetworkPayload.swift",
"Capture/Network/NetworkPayloadCapture/EncryptionHelper.swift",
"Capture/Network/NetworkPayloadCapture/NetworkPayloadCaptureHandler.swift",
"Capture/Network/NetworkPayloadCapture/URLSessionTaskCaptureRule.swift",
"Capture/Network/URLRequest+Extension.swift",
"Capture/Network/URLSessionCaptureService+Options.swift",
"Capture/Network/URLSessionCaptureService.swift",
"Capture/Network/URLSessionRequestsDataSource.swift",
"Capture/Network/URLSessionSwizzlerProvider.swift",
"Capture/Network/URLSessionTask+Extension.swift",
"Capture/Network/URLSessionTaskHandler.swift",
"Capture/OneTimeServices/AppInfoCaptureService.swift",
"Capture/OneTimeServices/DeviceInfoCaptureService.swift",
"Capture/PushNotifications/PushNotificationCaptureService+Options.swift",
"Capture/PushNotifications/PushNotificationCaptureService.swift",
"Capture/PushNotifications/UNUserNotificationCenterDelegateProxy.swift",
"Capture/ResourceCaptureService.swift",
"Capture/System/LowMemoryWarningCaptureService.swift",
"Capture/System/LowPowerMode/LowPowerModeCaptureService.swift",
"Capture/System/LowPowerMode/PowerModeProvider.swift",
"Capture/UX/Tap/TapCaptureService+Options.swift",
"Capture/UX/Tap/TapCaptureService.swift",
"Capture/UX/Tap/TapCaptureServiceDelegate.swift",
"Capture/UX/View/Protocols/CaptureServices+UIViewController.swift",
"Capture/UX/View/Protocols/EmbraceViewControllerCustomization.swift",
"Capture/UX/View/Protocols/InstrumentableViewController.swift",
"Capture/UX/View/Protocols/InteractableViewController.swift",
"Capture/UX/View/UIViewController+Embrace.swift",
"Capture/UX/View/UIViewControllerHandler.swift",
"Capture/UX/View/ViewCaptureService+Options.swift",
"Capture/UX/View/ViewCaptureService.swift",
"Capture/UX/View/ViewCaptureServiceError.swift",
"Capture/UX/View/ViewCaptureServiceSwizzleCache.swift",
"Capture/UX/View/ViewInstrumentationState.swift",
"Capture/WebView/WKWebView+Embrace.swift",
"Capture/WebView/WebViewCaptureService+Options.swift",
"Capture/WebView/WebViewCaptureService.swift",
"Embrace.swift",
"ErrorManagement/EmbraceSetupError.swift",
"ExampleCrash/CrashHelper.swift",
"FileSystem/EmbraceFilePathProvider.swift",
"FileSystem/EmbraceFileSystem.swift",
"Internal/Embrace+Config.swift",
"Internal/Embrace+EmbraceMetricKitStateProvider.swift",
"Internal/Embrace+EmbraceSDKStateProvider.swift",
"Internal/Embrace+Setup.swift",
"Internal/EmbraceMeta+UserAgent.swift",
"Internal/Identifiers/DeviceIdentifier+Persistence.swift",
"Internal/Logs/DefaultEmbraceLogSharedState.swift",
"Internal/Logs/DefaultEmbraceLoggerConfig.swift",
"Internal/Logs/EmbraceLogAttributesBuilder.swift",
"Internal/Logs/Exporter/DefaultLogBatcher.swift",
"Internal/Logs/Exporter/LogBatch.swift",
"Internal/Logs/Exporter/LogBatchLimits.swift",
"Internal/Logs/Exporter/StorageEmbraceLogExporter.swift",
"Internal/Logs/Exporter/Validation/Collection+LogDataValidator.swift",
"Internal/Logs/Exporter/Validation/LogDataValidation.swift",
"Internal/Logs/Exporter/Validation/LogDataValidator.swift",
"Internal/Logs/Exporter/Validation/Validators/LengthOfBodyValidator.swift",
"Internal/Logs/LogController.swift",
"Internal/Logs/Loggers/BaseInternalLogger.swift",
"Internal/Logs/Loggers/DefaultInternalLogger.swift",
"Internal/MetricKit/MetricKitCrashPayloadProvider.swift",
"Internal/MetricKit/MetricKitHandler.swift",
"Internal/ProcessMetadata.swift",
"Internal/ResourceKeys/AppResourceKey.swift",
"Internal/ResourceKeys/DeviceResourceKey.swift",
"Internal/ResourceKeys/UserResourceKey.swift",
"Internal/ResourceStorageExporter/ResourceStorageExporter.swift",
"Internal/SpanStorageExporter/Validation/SpanDataValidation.swift",
"Internal/SpanStorageExporter/Validation/SpanDataValidator.swift",
"Internal/SpanStorageExporter/Validation/Validators/Collection+SpanDataValidator.swift",
"Internal/SpanStorageExporter/Validation/Validators/LengthOfNameValidator.swift",
"Internal/SpanStorageExporter/Validation/Validators/WhitespaceSpanNameValidator.swift",
"Internal/Startup/DefaultStartupDataProvider.swift",
"Internal/Startup/StartupDataProvider.swift",
"Internal/Startup/StartupInstrumentation.swift",
"Internal/Tracing/EmbraceSpanProcessor+Setup.swift",
"Internal/Tracing/StorageSpanExporter+Options.swift",
"Internal/Tracing/StorageSpanExporter.swift",
"Options/Embrace+Endpoints.swift",
"Options/Embrace+Options.swift",
"Options/Platform.swift",
"Payload/AppInfoPayload.swift",
"Payload/Attribute.swift",
"Payload/Builders/LogPayloadBuilder.swift",
"Payload/Builders/SessionPayloadBuilder.swift",
"Payload/Builders/SpansPayloadBuilder.swift",
"Payload/LogPayload.swift",
"Payload/MetadataPayload.swift",
"Payload/PayloadEnvelope.swift",
"Payload/ResourcePayload.swift",
"Payload/Spans/SpanEventPayload.swift",
"Payload/Spans/SpanLinkPayload.swift",
"Payload/Spans/SpanPayload.swift",
"Payload/Utils/PayloadUtils.swift",
"Public/Embrace+CrashHelper.swift",
"Public/Embrace+CrashReporter.swift",
"Public/Embrace+OTel.swift",
"Public/EmbraceSDKState.swift",
"Public/Events/Breadcrumb.swift",
"Public/LastRunEndState.swift",
"Public/LogLevel.swift",
"Public/Metadata/MetadataError.swift",
"Public/Metadata/MetadataHandler+Personas.swift",
"Public/Metadata/MetadataHandler+User.swift",
"Public/Metadata/MetadataHandler.swift",
"Public/Metadata/MetadataRecordTmp.swift",
"Public/Metadata/PersonaTag.swift",
"Public/OpenTelemetryExport.swift",
"Public/PushNotifications/PushNotificationError.swift",
"Public/PushNotifications/PushNotificationEvent.swift",
"Public/Startup/StartupInstrumentation+Customization.swift",
"Session/DataRecovery/UnsentDataHandler.swift",
"Session/Lifecycle/Implementations/ManualSessionLifecycle.swift",
"Session/Lifecycle/Implementations/iOSSessionLifecycle.swift",
"Session/Lifecycle/SessionLifecycle.swift",
"Session/SessionControllable.swift",
"Session/SessionController.swift",
"Session/SessionHeartbeat.swift",
"Session/SessionSpanUtils.swift",
"Utils/CGPoint+toString.swift",
"Utils/Data+Gzip.swift",
"Utils/Encodable+JSON.swift",
"Utils/KeychainAccess.swift",
"Utils/KeychainInterface.swift",
"Utils/NSObject+Embrace.swift",
"Utils/ProcessInfo+Embrace.swift",
"Utils/URL+Embrace.swift",
"Utils/W3C/W3C+TraceParent.swift",
"Utils/W3C/W3C.swift"
],
"target_dependencies" : [
"EmbraceCaptureService",
"EmbraceCommonInternal",
"EmbraceConfigInternal",
"EmbraceConfiguration",
"EmbraceOTelInternal",
"EmbraceStorageInternal",
"EmbraceUploadInternal",
"EmbraceObjCUtilsInternal",
"EmbraceSemantics"
],
"type" : "library"
},
{
"c99name" : "EmbraceConfigurationTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceConfigurationTests",
"path" : "Tests/EmbraceConfigurationTests",
"sources" : [
"EmbraceConfigurable/DefaultConfigTests.swift",
"InternalLogLimitsTests.swift"
],
"target_dependencies" : [
"EmbraceConfiguration"
],
"type" : "test"
},
{
"c99name" : "EmbraceConfiguration",
"module_type" : "SwiftTarget",
"name" : "EmbraceConfiguration",
"path" : "Sources/EmbraceConfiguration",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"EmbraceConfigurable.swift",
"EmbraceConfigurable/DefaultConfig.swift",
"InternalLogLimits.swift",
"NetworkPayloadCaptureRule.swift"
],
"type" : "library"
},
{
"c99name" : "EmbraceConfigInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceConfigInternalTests",
"path" : "Tests/EmbraceConfigInternalTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/EmbraceConfigInternalTests/Fixtures",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"EmbraceConfigTests.swift",
"EmbraceConfigurable/RemoteConfig/RemoteConfigFetcherTests.swift",
"EmbraceConfigurable/RemoteConfig/RemoteConfigPayloadTests.swift",
"EmbraceConfigurable/RemoteConfigTests.swift"
],
"target_dependencies" : [
"EmbraceConfigInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceConfigInternal",
"module_type" : "SwiftTarget",
"name" : "EmbraceConfigInternal",
"path" : "Sources/EmbraceConfigInternal",
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"EmbraceConfig+Options.swift",
"EmbraceConfig.swift",
"EmbraceConfigurable/RemoteConfig.swift",
"EmbraceConfigurable/RemoteConfig/RemoteConfig+Options.swift",
"EmbraceConfigurable/RemoteConfig/RemoteConfigFetcher.swift",
"EmbraceConfigurable/RemoteConfig/RemoteConfigPayload.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal",
"EmbraceConfiguration"
],
"type" : "library"
},
{
"c99name" : "EmbraceCommonInternalTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceCommonInternalTests",
"path" : "Tests/EmbraceCommonInternalTests",
"sources" : [
"Identifiers/LogIdentfierTests.swift",
"Identifiers/ProcessIdentifierTests.swift",
"Identifiers/SessionIdentifierTests.swift",
"Identifiers/UUID+WithoutHyphenTests.swift",
"Locks/EmbraceMutexTests.swift",
"Locks/ThreadSafeTests.swift",
"LogType/LogTypeDeclarationTests.swift",
"LogType/LogTypeTests.swift",
"Models/EmbraceStackTraceTests.swift",
"Models/LogSeverityTests.swift",
"SpanType/SpanTypeTests.swift"
],
"target_dependencies" : [
"EmbraceCommonInternal",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceCommonInternal",
"module_type" : "SwiftTarget",
"name" : "EmbraceCommonInternal",
"path" : "Sources/EmbraceCommonInternal",
"product_dependencies" : [
"OpenTelemetrySdk"
],
"product_memberships" : [
"EmbraceIO",
"EmbraceCore",
"EmbraceCrash",
"EmbraceCrashlyticsSupport",
"EmbraceSemantics"
],
"sources" : [
"CrashReporter/CrashReporter.swift",
"CrashReporter/CrashReporterContext.swift",
"CrashReporter/CrashSignal.swift",
"EmbraceMeta.swift",
"EmbraceType/EmbraceType.swift",
"EmbraceType/LogType.swift",
"EmbraceType/SpanEventType.swift",
"EmbraceType/SpanType+Declarations.swift",
"EmbraceType/SpanType.swift",
"Error Management/EmbraceStackTraceError.swift",
"Error Management/EmbraceSwizzableError.swift",
"Extensions/Date.swift",
"Extensions/ProcessInfo.swift",
"Identifiers/DeviceIdentifier.swift",
"Identifiers/LogIdentifier.swift",
"Identifiers/ProcessIdentifier.swift",
"Identifiers/SessionIdentifier.swift",
"Identifiers/UUID+WithoutHyphen.swift",
"InternalLogger.swift",
"Locks/EmbraceMutex.swift",
"Locks/UnfairLock.swift",
"Models/EmbraceStackTrace.swift",
"Models/LogSeverity.swift",
"Models/SessionState.swift",
"Models/StackTraceBehavior.swift",
"PropertyWrappers/ThreadSafe.swift",
"Protocols/DispatchableQueue.swift",
"Protocols/EmbraceMetricKitStateProvider.swift",
"Protocols/EmbraceSDKStateProvider.swift",
"Protocols/FilePathProvider.swift",
"Storage/Model/EmbraceLog.swift",
"Storage/Model/EmbraceLogAttribute.swift",
"Storage/Model/EmbraceMetadata.swift",
"Storage/Model/EmbraceSession.swift",
"Storage/Model/EmbraceSpan.swift",
"Storage/StorageMechanism.swift",
"Swizzling/EmbraceSwizzler.swift",
"Swizzling/Swizzlable.swift",
"Swizzling/SwizzleCache.swift"
],
"type" : "library"
},
{
"c99name" : "EmbraceCaptureServiceTests",
"module_type" : "SwiftTarget",
"name" : "EmbraceCaptureServiceTests",
"path" : "Tests/EmbraceCaptureServiceTests",
"sources" : [
"CaptureServiceTests.swift"
],
"target_dependencies" : [
"EmbraceCaptureService",
"TestSupport"
],
"type" : "test"
},
{
"c99name" : "EmbraceCaptureService",
"module_type" : "SwiftTarget",
"name" : "EmbraceCaptureService",
"path" : "Sources/EmbraceCaptureService",
"product_dependencies" : [
"OpenTelemetrySdk"
],
"product_memberships" : [
"EmbraceIO",
"EmbraceCore"
],
"sources" : [
"CaptureService.swift",
"CaptureServiceState.swift"
],
"target_dependencies" : [
"EmbraceOTelInternal"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.