The Swift Package Index logo.Swift Package Index

Build Information

Successful build of PhantomSwift, reference master (ee5fad), with Swift 6.1 for iOS using Xcode 16.3 on 24 Apr 2026 09:36:52 UTC.

Swift 6 data race errors: 57

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme PhantomSwift -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

  @MainActor open func drawHierarchy(in rect: CGRect, afterScreenUpdates afterUpdates: Bool) -> Bool}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:22:18: note: add '@MainActor' to make instance method 'captureScreenshot(window:)' part of global actor 'MainActor'
    private func captureScreenshot(window: UIWindow) -> UIImage? {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:24:41: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        window.drawHierarchy(in: window.bounds, afterScreenUpdates: true)
                                        ^
/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/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:22:18: note: add '@MainActor' to make instance method 'captureScreenshot(window:)' part of global actor 'MainActor'
    private func captureScreenshot(window: UIWindow) -> UIImage? {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:114:31: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let device = UIDevice.current
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:113:18: note: add '@MainActor' to make instance method 'buildDeviceInfo()' part of global actor 'MainActor'
    private func buildDeviceInfo() -> String {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:119:26: warning: main actor-isolated property 'model' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        Device: \(device.model)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:40:51: note: property declared here
@property(nonatomic,readonly,strong) NSString    *model;             // e.g. @"iPhone", @"iPod touch"
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:113:18: note: add '@MainActor' to make instance method 'buildDeviceInfo()' part of global actor 'MainActor'
    private func buildDeviceInfo() -> String {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:120:26: warning: main actor-isolated property 'systemName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        System: \(device.systemName) \(device.systemVersion)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:42:51: note: property declared here
@property(nonatomic,readonly,strong) NSString    *systemName;        // e.g. @"iOS"
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:113:18: note: add '@MainActor' to make instance method 'buildDeviceInfo()' part of global actor 'MainActor'
    private func buildDeviceInfo() -> String {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:120:47: warning: main actor-isolated property 'systemVersion' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        System: \(device.systemName) \(device.systemVersion)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:43:51: note: property declared here
@property(nonatomic,readonly,strong) NSString    *systemVersion;     // e.g. @"4.0"
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:113:18: note: add '@MainActor' to make instance method 'buildDeviceInfo()' part of global actor 'MainActor'
    private func buildDeviceInfo() -> String {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:121:24: warning: main actor-isolated property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        Name: \(device.name)
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:39:51: note: property declared here
@property(nonatomic,readonly,strong) NSString    *name;              // Synonym for model. Prior to iOS 16, user-assigned device name (e.g. @"My iPhone").
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomBugReporter.swift:113:18: note: add '@MainActor' to make instance method 'buildDeviceInfo()' part of global actor 'MainActor'
    private func buildDeviceInfo() -> String {
                 ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:6:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomEnvironmentMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomEnvironmentMonitor()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:5:20: note: class 'PhantomEnvironmentMonitor' does not conform to the 'Sendable' protocol
public final class PhantomEnvironmentMonitor {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:6:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomEnvironmentMonitor()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomEnvironmentMonitor()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:22:26: warning: main actor-isolated property 'isBatteryMonitoringEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        UIDevice.current.isBatteryMonitoringEnabled = true
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:52:61: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isBatteryMonitoringEnabled) BOOL batteryMonitoringEnabled API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // default is NO
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:22:18: warning: main actor-isolated class property 'current' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        UIDevice.current.isBatteryMonitoringEnabled = true
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: mutation of this class property is only permitted within the actor
@property(class, nonatomic, readonly) UIDevice *currentDevice;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:32:58: warning: main actor-isolated property 'batteryLevel' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        return simulatedBatteryLevel ?? UIDevice.current.batteryLevel
                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:54:61: note: property declared here
@property(nonatomic,readonly) float                         batteryLevel API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // 0 .. 1.0. -1.0 if UIDeviceBatteryStateUnknown
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:32:50: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        return simulatedBatteryLevel ?? UIDevice.current.batteryLevel
                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:36:33: warning: main actor-isolated property 'batteryState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return UIDevice.current.batteryState
                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:53:61: note: property declared here
@property(nonatomic,readonly) UIDeviceBatteryState          batteryState API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos);  // UIDeviceBatteryStateUnknown if monitoring disabled
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomEnvironmentMonitor.swift:36:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return UIDevice.current.batteryState
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
                                                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomLocaleManager.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomLocaleManager.swift:6:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomLocaleManager' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomLocaleManager()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomLocaleManager.swift:5:20: note: class 'PhantomLocaleManager' does not conform to the 'Sendable' protocol
public final class PhantomLocaleManager {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomLocaleManager.swift:6:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomLocaleManager()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/Core/PhantomLocaleManager.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomLocaleManager()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling PhantomCURLExporter.swift (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
SwiftCompile normal arm64 Compiling\ PhantomConfig.swift,\ PhantomEnvironment.swift,\ PhantomEventBus.swift,\ PhantomFeature.swift,\ PhantomLaunchPlanner.swift,\ PhantomPlugin.swift,\ PhantomSwift.swift,\ PhantomSwiftExports.swift,\ PhantomDashboardVC.swift,\ PhantomDynamicIsland.swift,\ PhantomFeatureCatalog.swift,\ PhantomGestureHandler.swift,\ PhantomHUDWindow.swift,\ PhantomTheme.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEnvironment.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomFeature.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomLaunchPlanner.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomPlugin.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwiftExports.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDashboardVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomGestureHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomHUDWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomConfig.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEnvironment.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:7:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomEventBus' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomEventBus()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:6:20: note: class 'PhantomEventBus' does not conform to the 'Sendable' protocol
public final class PhantomEventBus {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:7:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomEventBus()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:7:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomEventBus()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:18:25: warning: capture of 'self' with non-sendable type 'PhantomEventBus' in a '@Sendable' closure
            let live = (self.observers[key] ?? []).filter { $0.value != nil }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:6:20: note: class 'PhantomEventBus' does not conform to the 'Sendable' protocol
public final class PhantomEventBus {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:24:38: warning: capture of 'event' with non-sendable type 'PhantomEvent' in a '@Sendable' closure
                    observer.onEvent(event)
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:69:13: note: consider making enum 'PhantomEvent' conform to the 'Sendable' protocol
public enum PhantomEvent {
            ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:33:27: warning: capture of 'self' with non-sendable type 'PhantomEventBus' in a '@Sendable' closure
            var current = self.observers[eventType] ?? []
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:6:20: note: class 'PhantomEventBus' does not conform to the 'Sendable' protocol
public final class PhantomEventBus {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:35:59: warning: capture of 'observer' with non-sendable type 'any PhantomEventObserver' in a '@Sendable' closure
            guard !current.contains(where: { $0.value === observer }) else { return }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:35:59: warning: capture of 'observer' with non-sendable type 'any PhantomEventObserver' in an isolated closure; this is an error in the Swift 6 language mode
            guard !current.contains(where: { $0.value === observer }) else { return }
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:44:13: warning: capture of 'self' with non-sendable type 'PhantomEventBus' in a '@Sendable' closure
            self.observers[eventType]?.removeAll { $0.value == nil || $0.value === observer }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:6:20: note: class 'PhantomEventBus' does not conform to the 'Sendable' protocol
public final class PhantomEventBus {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:44:84: warning: capture of 'observer' with non-sendable type 'any PhantomEventObserver' in a '@Sendable' closure
            self.observers[eventType]?.removeAll { $0.value == nil || $0.value === observer }
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:44:84: warning: capture of 'observer' with non-sendable type 'any PhantomEventObserver' in an isolated closure; this is an error in the Swift 6 language mode
            self.observers[eventType]?.removeAll { $0.value == nil || $0.value === observer }
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:44:84: warning: implicit capture of 'observer' requires that 'any PhantomEventObserver' conforms to 'Sendable'; this is an error in the Swift 6 language mode
            self.observers[eventType]?.removeAll { $0.value == nil || $0.value === observer }
                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:51:24: warning: capture of 'self' with non-sendable type 'PhantomEventBus' in a '@Sendable' closure
            for key in self.observers.keys {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:6:20: note: class 'PhantomEventBus' does not conform to the 'Sendable' protocol
public final class PhantomEventBus {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:52:82: warning: capture of 'observer' with non-sendable type 'any PhantomEventObserver' in a '@Sendable' closure
                self.observers[key]?.removeAll { $0.value == nil || $0.value === observer }
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:52:82: warning: capture of 'observer' with non-sendable type 'any PhantomEventObserver' in an isolated closure; this is an error in the Swift 6 language mode
                self.observers[key]?.removeAll { $0.value == nil || $0.value === observer }
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:52:82: warning: implicit capture of 'observer' requires that 'any PhantomEventObserver' conforms to 'Sendable'; this is an error in the Swift 6 language mode
                self.observers[key]?.removeAll { $0.value == nil || $0.value === observer }
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:59:17: note: protocol 'PhantomEventObserver' does not conform to the 'Sendable' protocol
public protocol PhantomEventObserver: AnyObject {
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomFeature.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomLaunchPlanner.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomLaunchPlanner.swift:70:24: warning: static property 'descriptors' is not concurrency-safe because non-'Sendable' type '[PhantomLaunchPlanner.Descriptor]' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let descriptors: [Descriptor] = [
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomLaunchPlanner.swift:41:20: note: consider making struct 'Descriptor' conform to the 'Sendable' protocol
    private struct Descriptor {
                   ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomLaunchPlanner.swift:70:24: note: add '@MainActor' to make static property 'descriptors' part of global actor 'MainActor'
    private static let descriptors: [Descriptor] = [
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomLaunchPlanner.swift:70:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let descriptors: [Descriptor] = [
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomPlugin.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:8:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomSwift' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomSwift()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:6:20: note: class 'PhantomSwift' does not conform to the 'Sendable' protocol
public final class PhantomSwift {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:8:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomSwift()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:8:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomSwift()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:161:42: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let screenBounds = UIScreen.main.bounds
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:59:39: note: property declared here
@property(nonatomic,readonly) CGRect  bounds;                // Bounds of entire screen in points
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:158:18: note: add '@MainActor' to make instance method 'setupHUD()' part of global actor 'MainActor'
    private func setupHUD() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:161:37: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let screenBounds = UIScreen.main.bounds
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:57:49: note: class property declared here
@property(class, nonatomic, readonly) UIScreen *mainScreen API_DEPRECATED("Use a UIScreen instance found through context instead: i.e, view.window.windowScene.screen", ios(2.0, API_TO_BE_DEPRECATED), visionos(1.0, API_TO_BE_DEPRECATED)) API_UNAVAILABLE(watchos); // the device's internal screen
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:158:18: note: add '@MainActor' to make instance method 'setupHUD()' part of global actor 'MainActor'
    private func setupHUD() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:163:25: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            hudWindow = PhantomHUDWindow(frame: screenBounds)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomHUDWindow.swift:8:14: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    override init(frame: CGRect) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomHUDWindow.swift:8:14: note: main actor isolation inferred from inheritance from class 'UIWindow'
    override init(frame: CGRect) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:158:18: note: add '@MainActor' to make instance method 'setupHUD()' part of global actor 'MainActor'
    private func setupHUD() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:173:22: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let island = PhantomDynamicIsland(frame: CGRect(x: x, y: y, width: width, height: height))
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:18:23: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    internal override init(frame: CGRect) {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:18:23: note: main actor isolation inferred from inheritance from class 'UIView'
    internal override init(frame: CGRect) {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:158:18: note: add '@MainActor' to make instance method 'setupHUD()' part of global actor 'MainActor'
    private func setupHUD() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:174:16: warning: main actor-isolated property 'onAction' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        island.onAction = { [weak self] in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:13:18: note: mutation of this property is only permitted within the actor
    internal var onAction: (() -> Void)?
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:158:18: note: add '@MainActor' to make instance method 'setupHUD()' part of global actor 'MainActor'
    private func setupHUD() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:178:20: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        hudWindow?.addSubview(island)
                   ^
UIKit.UIView.addSubview:2:22: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:158:18: note: add '@MainActor' to make instance method 'setupHUD()' part of global actor 'MainActor'
    private func setupHUD() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:192:51: warning: main actor-isolated property 'presentedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        while let nextPresenter = finalPresenter?.presentedViewController, depth < 10 {
                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:210:59: note: property declared here
@property(nullable, nonatomic,readonly) UIViewController *presentedViewController  API_AVAILABLE(ios(5.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:187:18: note: add '@MainActor' to make instance method 'presentDashboard(from:)' part of global actor 'MainActor'
    private func presentDashboard(from presenter: UIViewController) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:200:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let dashboard = PhantomDashboardVC()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDashboardVC.swift:111:14: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    internal init() { super.init(nibName: nil, bundle: nil) }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDashboardVC.swift:111:14: note: main actor isolation inferred from inheritance from class 'UIViewController'
    internal init() { super.init(nibName: nil, bundle: nil) }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:187:18: note: add '@MainActor' to make instance method 'presentDashboard(from:)' part of global actor 'MainActor'
    private func presentDashboard(from presenter: UIViewController) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:201:19: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        dashboard.modalPresentationStyle = .fullScreen
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:187:18: note: add '@MainActor' to make instance method 'presentDashboard(from:)' part of global actor 'MainActor'
    private func presentDashboard(from presenter: UIViewController) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:203:24: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        finalPresenter.present(dashboard, animated: true) {
                       ^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:187:18: note: add '@MainActor' to make instance method 'presentDashboard(from:)' part of global actor 'MainActor'
    private func presentDashboard(from presenter: UIViewController) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:63:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.refreshDashboardInfrastructure()
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:63:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.refreshDashboardInfrastructure()
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:152:23: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            guard let self else { return }
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwift.swift:152:23: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            guard let self else { return }
                      ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomSwiftExports.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDashboardVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:112:19: warning: call to main actor-isolated instance method 'pulseDot()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            self?.pulseDot()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:117:18: note: calls to instance method 'pulseDot()' from outside of its actor context are implicitly asynchronous
    private func pulseDot() {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:117:18: note: main actor isolation inferred from inheritance from class 'UIView'
    private func pulseDot() {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomDynamicIsland.swift:137:14: warning: cannot access property 'timer' with a non-sendable type 'Timer?' from nonisolated deinit; this is an error in the Swift 6 language mode
        timer?.invalidate()
             ^
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
@frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:27:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in NetworkListVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:36:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in InterceptorListVC() }
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Interceptor/UI/InterceptorListVC.swift:305:5: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    init() {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Interceptor/UI/InterceptorListVC.swift:305:5: note: main actor isolation inferred from inheritance from class 'UIViewController'
    init() {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:45:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in LogConsoleVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:54:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in LeakListVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:64:21: warning: call to main actor-isolated initializer 'init(rootView:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    ViewHierarchyVC(rootView: context.inspectedRootView)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchyVC.swift:30:14: note: calls to initializer 'init(rootView:)' from outside of its actor context are implicitly asynchronous
    internal init(rootView: UIView) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchyVC.swift:30:14: note: main actor isolation inferred from inheritance from class 'PhantomTableVC'
    internal init(rootView: UIView) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:74:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in StorageListVC() }
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/StorageListVC.swift:21:14: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/StorageListVC.swift:21:14: note: main actor isolation inferred from inheritance from class 'UIViewController'
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:83:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in PerformanceDashboardVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:92:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in AppShortcutsVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:101:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in SecurityDashboardVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:110:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in RenderListVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:119:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in AccessibilityDashboardVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:128:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in EnvironmentDashboardVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:137:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in ExtensionLogVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:146:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in BadNetworkDashboardVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:155:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in HangListVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:164:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in SnapshotListVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:173:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in AnalyticsListVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:182:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in MemoryGraphVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:191:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in AssetListVC() }
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Assets/UI/AssetListVC.swift:14:14: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Assets/UI/AssetListVC.swift:14:14: note: main actor isolation inferred from inheritance from class 'UIViewController'
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:200:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in FeatureFlagsDashboardVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:209:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in MainThreadCheckerVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:218:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in NetworkWaterfallVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:229:32: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        return RemoteServerDashboardVC()
                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:244:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in DeepLinkTesterVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:253:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in CrashLogVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:262:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in LayoutConflictVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:271:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in PushSimulatorVC() }
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/UI/PushSimulatorVC.swift:22:14: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/UI/PushSimulatorVC.swift:22:14: note: main actor isolation inferred from inheritance from class 'UITableViewController'
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:287:32: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        return BGTaskInspectorVC()
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/UI/BGTaskInspectorVC.swift:31:14: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/QA/UI/BGTaskInspectorVC.swift:31:14: note: main actor isolation inferred from inheritance from class 'UITableViewController'
    internal init() {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:302:44: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                makeViewController: { _ in RuntimeBrowserVC() }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:308:18: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let vc = UIViewController()
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:309:12: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        vc.title = title
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title;  // Localized title for use by a parent controller.
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:310:17: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        vc.view.backgroundColor = PhantomTheme.shared.backgroundColor
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:310:12: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        vc.view.backgroundColor = PhantomTheme.shared.backgroundColor
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:312:26: warning: call to main actor-isolated initializer 'init(emoji:title:message:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let emptyState = PhantomEmptyStateView(emoji: "ℹ️", title: title, message: message)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Shared/Components/PhantomEmptyStateView.swift:17:14: note: calls to initializer 'init(emoji:title:message:style:)' from outside of its actor context are implicitly asynchronous
    internal init(emoji: String, title: String, message: String, style: Style = .standard) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Shared/Components/PhantomEmptyStateView.swift:17:14: note: main actor isolation inferred from inheritance from class 'UIView'
    internal init(emoji: String, title: String, message: String, style: Style = .standard) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:313:20: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        emptyState.translatesAutoresizingMaskIntoConstraints = false
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:314:17: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        vc.view.addSubview(emptyState)
                ^
UIKit.UIView.addSubview:2:22: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:314:12: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        vc.view.addSubview(emptyState)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:316:28: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        NSLayoutConstraint.activate([
                           ^
UIKit.NSLayoutConstraint.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
  @MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:317:34: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            emptyState.topAnchor.constraint(equalTo: vc.view.safeAreaLayoutGuide.topAnchor),
                                 ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:317:24: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.topAnchor.constraint(equalTo: vc.view.safeAreaLayoutGuide.topAnchor),
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:317:82: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.topAnchor.constraint(equalTo: vc.view.safeAreaLayoutGuide.topAnchor),
                                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:50:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:317:62: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.topAnchor.constraint(equalTo: vc.view.safeAreaLayoutGuide.topAnchor),
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:288:53: note: property declared here
@property(nonatomic,readonly,strong) UILayoutGuide *safeAreaLayoutGuide API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:317:57: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.topAnchor.constraint(equalTo: vc.view.safeAreaLayoutGuide.topAnchor),
                                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:318:38: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            emptyState.leadingAnchor.constraint(equalTo: vc.view.leadingAnchor),
                                     ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:318:24: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.leadingAnchor.constraint(equalTo: vc.view.leadingAnchor),
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:318:66: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.leadingAnchor.constraint(equalTo: vc.view.leadingAnchor),
                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:318:61: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.leadingAnchor.constraint(equalTo: vc.view.leadingAnchor),
                                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:319:39: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            emptyState.trailingAnchor.constraint(equalTo: vc.view.trailingAnchor),
                                      ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:319:24: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.trailingAnchor.constraint(equalTo: vc.view.trailingAnchor),
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:319:67: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.trailingAnchor.constraint(equalTo: vc.view.trailingAnchor),
                                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:319:62: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.trailingAnchor.constraint(equalTo: vc.view.trailingAnchor),
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:320:37: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            emptyState.bottomAnchor.constraint(equalTo: vc.view.bottomAnchor),
                                    ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:320:24: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.bottomAnchor.constraint(equalTo: vc.view.bottomAnchor),
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:320:65: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.bottomAnchor.constraint(equalTo: vc.view.bottomAnchor),
                                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:320:60: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            emptyState.bottomAnchor.constraint(equalTo: vc.view.bottomAnchor),
                                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomFeatureCatalog.swift:307:25: note: add '@MainActor' to make static method 'unavailableViewController(title:message:)' part of global actor 'MainActor'
    private static func unavailableViewController(title: String, message: String) -> UIViewController {
                        ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomGestureHandler.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomGestureHandler.swift:6:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomGestureHandler' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let shared = PhantomGestureHandler()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomGestureHandler.swift:5:22: note: class 'PhantomGestureHandler' does not conform to the 'Sendable' protocol
internal final class PhantomGestureHandler {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomGestureHandler.swift:6:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static let shared = PhantomGestureHandler()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomGestureHandler.swift:6:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let shared = PhantomGestureHandler()
                        ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomHUDWindow.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:6:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomTheme()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:5:22: note: class 'PhantomTheme' does not conform to the 'Sendable' protocol
internal final class PhantomTheme {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:6:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomTheme()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomTheme()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:76:45: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            return currentTheme == .light ? UIBlurEffect(style: .systemUltraThinMaterialLight) : UIBlurEffect(style: .systemUltraThinMaterialDark)
                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:63:1: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
+ (UIBlurEffect *)effectWithStyle:(UIBlurEffectStyle)style;
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:76:98: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            return currentTheme == .light ? UIBlurEffect(style: .systemUltraThinMaterialLight) : UIBlurEffect(style: .systemUltraThinMaterialDark)
                                                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:63:1: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
+ (UIBlurEffect *)effectWithStyle:(UIBlurEffectStyle)style;
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:78:45: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            return currentTheme == .light ? UIBlurEffect(style: .extraLight) : UIBlurEffect(style: .dark)
                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:63:1: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
+ (UIBlurEffect *)effectWithStyle:(UIBlurEffectStyle)style;
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:78:80: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            return currentTheme == .light ? UIBlurEffect(style: .extraLight) : UIBlurEffect(style: .dark)
                                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:63:1: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
+ (UIBlurEffect *)effectWithStyle:(UIBlurEffectStyle)style;
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:103:14: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.backgroundColor = cardBackgroundColor
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:102:17: note: add '@MainActor' to make instance method 'applyCardStyle(to:)' part of global actor 'MainActor'
    public func applyCardStyle(to view: UIView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:104:14: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.layer.cornerRadius = 20
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:102:17: note: add '@MainActor' to make instance method 'applyCardStyle(to:)' part of global actor 'MainActor'
    public func applyCardStyle(to view: UIView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:105:43: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        if #available(iOS 13.0, *) { view.layer.cornerCurve = .continuous }
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:102:17: note: add '@MainActor' to make instance method 'applyCardStyle(to:)' part of global actor 'MainActor'
    public func applyCardStyle(to view: UIView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:106:14: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.layer.borderWidth = 1.0
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:102:17: note: add '@MainActor' to make instance method 'applyCardStyle(to:)' part of global actor 'MainActor'
    public func applyCardStyle(to view: UIView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:107:14: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.layer.borderColor = UIColor.white.withAlphaComponent(0.1).cgColor
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:102:17: note: add '@MainActor' to make instance method 'applyCardStyle(to:)' part of global actor 'MainActor'
    public func applyCardStyle(to view: UIView) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:108:37: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        applyPremiumShadow(to: view.layer)
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/HUD/PhantomTheme.swift:102:17: note: add '@MainActor' to make instance method 'applyCardStyle(to:)' part of global actor 'MainActor'
    public func applyCardStyle(to view: UIView) {
                ^
    @MainActor
SwiftDriverJobDiscovery normal arm64 Compiling PhantomInterceptor.swift (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
SwiftCompile normal arm64 Compiling\ GestureInspectorVC.swift,\ GridOverlayVC.swift,\ HitTestInspectorVC.swift,\ LayerInspectorVC.swift,\ LayoutConflictVC.swift,\ LiveEditVC.swift,\ ResponderChainVC.swift,\ SnapshotCompareVC.swift,\ UIInspectorActionCard.swift,\ UserDefaultsInspectorVC.swift,\ ViewDetailVC.swift,\ ViewHierarchy3DVC.swift,\ ViewHierarchyVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/GestureInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/GridOverlayVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/HitTestInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/LayerInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/LayoutConflictVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/LiveEditVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ResponderChainVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/SnapshotCompareVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/UIInspectorActionCard.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/UserDefaultsInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewDetailVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchy3DVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchyVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/GestureInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/GridOverlayVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/HitTestInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/LayerInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/LayoutConflictVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/LiveEditVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ResponderChainVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/SnapshotCompareVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/UIInspectorActionCard.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/UserDefaultsInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewDetailVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchy3DVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchy3DVC.swift:140:9: warning: call to main actor-isolated instance method 'cleanup()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        cleanup()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchy3DVC.swift:143:18: note: calls to instance method 'cleanup()' from outside of its actor context are implicitly asynchronous
    private func cleanup() {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchy3DVC.swift:143:18: note: main actor isolation inferred from inheritance from class 'UIViewController'
    private func cleanup() {
                 ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/UIInspector/UI/ViewHierarchyVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SecurityDashboardVC.swift,\ SecurityKeychainVC.swift,\ PhantomSnapshotManager.swift,\ CoreDataInspectorVC.swift,\ KeychainInspectorVC.swift,\ SQLiteInspectorVC.swift,\ SandboxInspectorVC.swift,\ SnapshotListVC.swift,\ StorageDashboardCell.swift,\ StorageListVC.swift,\ UserDefaultsVC.swift,\ PhantomRenderStore.swift,\ PhantomRenderTracker.swift,\ RenderListVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityDashboardVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityKeychainVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/Core/PhantomSnapshotManager.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/CoreDataInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/KeychainInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/SQLiteInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/SandboxInspectorVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/SnapshotListVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/StorageDashboardCell.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/StorageListVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/UserDefaultsVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/UI/RenderListVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityDashboardVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityKeychainVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityKeychainVC.swift:140:30: warning: call to main actor-isolated static method 'fetchKeychainItems()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let items = Self.fetchKeychainItems()
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityKeychainVC.swift:185:25: note: calls to static method 'fetchKeychainItems()' from outside of its actor context are implicitly asynchronous
    private static func fetchKeychainItems() -> [KeychainItem] {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Security/UI/SecurityKeychainVC.swift:185:25: note: main actor isolation inferred from inheritance from class 'UIViewController'
    private static func fetchKeychainItems() -> [KeychainItem] {
                        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/Core/PhantomSnapshotManager.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/Core/PhantomSnapshotManager.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomSnapshotManager' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomSnapshotManager()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/Core/PhantomSnapshotManager.swift:20:20: note: class 'PhantomSnapshotManager' does not conform to the 'Sendable' protocol
public final class PhantomSnapshotManager {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/Core/PhantomSnapshotManager.swift:21:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomSnapshotManager()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/Core/PhantomSnapshotManager.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomSnapshotManager()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/CoreDataInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/KeychainInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/SQLiteInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/SandboxInspectorVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/SnapshotListVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/StorageDashboardCell.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/StorageListVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Storage/UI/UserDefaultsVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:22:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomRenderStore' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomRenderStore()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:21:20: note: class 'PhantomRenderStore' does not conform to the 'Sendable' protocol
public final class PhantomRenderStore {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:22:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomRenderStore()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomRenderStore()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:38:26: warning: capture of 'type' with non-sendable type 'PhantomRenderEventType' in a '@Sendable' closure
            let key = "\(type.rawValue)-\(viewName)"
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:6:13: note: consider making enum 'PhantomRenderEventType' conform to the 'Sendable' protocol
public enum PhantomRenderEventType: String {
            ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:39:27: warning: capture of 'self' with non-sendable type 'PhantomRenderStore' in a '@Sendable' closure
            var current = self.events[key] ?? PhantomRenderEvent(viewName: viewName, type: type, count: 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:21:20: note: class 'PhantomRenderStore' does not conform to the 'Sendable' protocol
public final class PhantomRenderStore {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:39:92: warning: implicit capture of 'type' requires that 'PhantomRenderEventType' conforms to 'Sendable'; this is an error in the Swift 6 language mode
            var current = self.events[key] ?? PhantomRenderEvent(viewName: viewName, type: type, count: 0)
                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:6:13: note: consider making enum 'PhantomRenderEventType' conform to the 'Sendable' protocol
public enum PhantomRenderEventType: String {
            ^
                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:58:13: warning: capture of 'self' with non-sendable type 'PhantomRenderStore' in a '@Sendable' closure
            self.events.removeAll()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderStore.swift:21:20: note: class 'PhantomRenderStore' does not conform to the 'Sendable' protocol
public final class PhantomRenderStore {
                   ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/Core/PhantomRenderTracker.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/UI/RenderListVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/UI/RenderListVC.swift:23:19: warning: call to main actor-isolated instance method 'loadEvents()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            self?.loadEvents()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/UI/RenderListVC.swift:144:18: note: calls to instance method 'loadEvents()' from outside of its actor context are implicitly asynchronous
    private func loadEvents() {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/SwiftUI/UI/RenderListVC.swift:144:18: note: main actor isolation inferred from inheritance from class 'UIViewController'
    private func loadEvents() {
                 ^
SwiftDriverJobDiscovery normal arm64 Compiling InterceptRule.swift (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling PhantomNetworkSimulator.swift (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
SwiftDriver\ Compilation PhantomSwiftNetworking normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
    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 PhantomSwiftNetworking -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking.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-ios12.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 -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/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking-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/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking_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/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.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/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PhantomBadgeView.swift, PhantomCodeView.swift, PhantomEmptyStateView.swift, PhantomTableVC.swift, Data+Phantom.swift, UIColor+Phantom.swift, UIExtensions+Phantom.swift, UIFont+Phantom.swift, UIImage+Phantom.swift, UIViewController+Phantom.swift, UIViewController+PhantomAppearance.swift, PhantomPresentationResolver.swift, PhantomSwizzler.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftCompile normal arm64 Compiling\ LogStore.swift,\ PhantomLog.swift,\ PhantomOSLogBridge.swift,\ PhantomWebViewConsoleAutoInstaller.swift,\ PhantomWebViewConsoleBridge.swift,\ ExtensionLogVC.swift,\ LogConsoleVC.swift,\ PhantomMainThreadChecker.swift,\ MainThreadCheckerVC.swift,\ PhantomHeapSnapshot.swift,\ PhantomLeakTracker.swift,\ HeapSnapshotVC.swift,\ LeakListVC.swift,\ ObjectRetainGraphVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomLog.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/ExtensionLogVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/LogConsoleVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/UI/MainThreadCheckerVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomLeakTracker.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/HeapSnapshotVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/LeakListVC.swift /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/ObjectRetainGraphVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:6:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LogStore' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = LogStore()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:5:20: note: class 'LogStore' does not conform to the 'Sendable' protocol
public final class LogStore {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:6:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = LogStore()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = LogStore()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:24:25: warning: capture of 'self' with non-sendable type 'LogStore' in a '@Sendable' closure
            let slot = (self.head + self.count) % self.maxCount
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:5:20: note: class 'LogStore' does not conform to the 'Sendable' protocol
public final class LogStore {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:25:33: warning: capture of 'log' with non-sendable type 'LogEntry' in a '@Sendable' closure
            self.buffer[slot] = log
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogEntry.swift:5:15: note: consider making struct 'LogEntry' conform to the 'Sendable' protocol
public struct LogEntry: Identifiable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:35:51: warning: capture of 'log' with non-sendable type 'LogEntry' in a '@Sendable' closure
            PhantomEventBus.shared.post(.logAdded(log))
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogEntry.swift:5:15: note: consider making struct 'LogEntry' conform to the 'Sendable' protocol
public struct LogEntry: Identifiable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:56:13: warning: capture of 'self' with non-sendable type 'LogStore' in a '@Sendable' closure
            self.buffer = Array(repeating: nil, count: self.maxCount)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/LogStore.swift:5:20: note: class 'LogStore' does not conform to the 'Sendable' protocol
public final class LogStore {
                   ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomLog.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:25:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomOSLogBridge' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let shared = PhantomOSLogBridge()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:23:22: note: class 'PhantomOSLogBridge' does not conform to the 'Sendable' protocol
internal final class PhantomOSLogBridge {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:25:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static let shared = PhantomOSLogBridge()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:25:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let shared = PhantomOSLogBridge()
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:65:23: warning: capture of 'self' with non-sendable type 'PhantomOSLogBridge?' in a '@Sendable' closure
            guard let self else { return }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:23:22: note: class 'PhantomOSLogBridge' does not conform to the 'Sendable' protocol
internal final class PhantomOSLogBridge {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:78:13: warning: capture of 'self' with non-sendable type 'PhantomOSLogBridge?' in a '@Sendable' closure
            self?.poll()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:23:22: note: class 'PhantomOSLogBridge' does not conform to the 'Sendable' protocol
internal final class PhantomOSLogBridge {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:85:17: warning: capture of 'self' with non-sendable type 'PhantomOSLogBridge?' in a '@Sendable' closure
                self?.importNewEntries()
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomOSLogBridge.swift:23:22: note: class 'PhantomOSLogBridge' does not conform to the 'Sendable' protocol
internal final class PhantomOSLogBridge {
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:10:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomWebViewConsoleAutoInstaller' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = PhantomWebViewConsoleAutoInstaller()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:9:22: note: class 'PhantomWebViewConsoleAutoInstaller' does not conform to the 'Sendable' protocol
internal final class PhantomWebViewConsoleAutoInstaller {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:10:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = PhantomWebViewConsoleAutoInstaller()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:10:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = PhantomWebViewConsoleAutoInstaller()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:30:13: warning: var 'phantomConsoleBridgeAssociatedKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var phantomConsoleBridgeAssociatedKey: UInt8 = 0
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:30:13: note: convert 'phantomConsoleBridgeAssociatedKey' to a 'let' constant to make 'Sendable' shared state immutable
private var phantomConsoleBridgeAssociatedKey: UInt8 = 0
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:30:13: note: add '@MainActor' to make var 'phantomConsoleBridgeAssociatedKey' part of global actor 'MainActor'
private var phantomConsoleBridgeAssociatedKey: UInt8 = 0
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:30:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var phantomConsoleBridgeAssociatedKey: UInt8 = 0
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:22:19: warning: call to main actor-isolated static method 'phantom_enableConsoleAutoInstall()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        WKWebView.phantom_enableConsoleAutoInstall()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:33:17: note: calls to static method 'phantom_enableConsoleAutoInstall()' from outside of its actor context are implicitly asynchronous
    static func phantom_enableConsoleAutoInstall() {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:19:10: note: add '@MainActor' to make instance method 'start()' part of global actor 'MainActor'
    func start() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:26:38: warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        bridge.install(into: webView.configuration)
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:91:63: note: property declared here
@property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift:25:22: note: add '@MainActor' to make instance method 'installIfNeeded(on:)' part of global actor 'MainActor'
    fileprivate func installIfNeeded(on webView: WKWebView) {
                     ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:56:22: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.proxy = ScriptMessageProxy()
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:220:74: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
private final class ScriptMessageProxy: NSObject, WKScriptMessageHandler {
                                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:220:74: note: main actor isolation inferred from conformance to protocol 'WKScriptMessageHandler'
private final class ScriptMessageProxy: NSObject, WKScriptMessageHandler {
                                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:58:20: warning: main actor-isolated property 'owner' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        self.proxy.owner = self
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:221:14: note: mutation of this property is only permitted within the actor
    weak var owner: PhantomWebViewConsoleBridge?
             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:63:37: warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        install(into: configuration.userContentController)
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:118:56: note: property declared here
@property (nonatomic, strong) WKUserContentController *userContentController;
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:62:17: note: add '@MainActor' to make instance method 'install(into:)' part of global actor 'MainActor'
    public func install(into configuration: WKWebViewConfiguration) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:74:31: warning: call to main actor-isolated instance method 'add(_:name:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        userContentController.add(proxy, name: configuration.handlerName)
                              ^
WebKit.WKUserContentController.add:2:22: note: calls to instance method 'add(_:name:)' from outside of its actor context are implicitly asynchronous
@MainActor open func add(_ scriptMessageHandler: any WKScriptMessageHandler, name: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:70:17: note: add '@MainActor' to make instance method 'install(into:)' part of global actor 'MainActor'
    public func install(into userContentController: WKUserContentController) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:76:26: warning: call to main actor-isolated initializer 'init(source:injectionTime:forMainFrameOnly:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let script = WKUserScript(
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKUserScript.h:64:1: note: calls to initializer 'init(source:injectionTime:forMainFrameOnly:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithSource:(NSString *)source injectionTime:(WKUserScriptInjectionTime)injectionTime forMainFrameOnly:(BOOL)forMainFrameOnly;
^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:70:17: note: add '@MainActor' to make instance method 'install(into:)' part of global actor 'MainActor'
    public func install(into userContentController: WKUserContentController) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:84:35: warning: call to main actor-isolated instance method 'addUserScript' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            userContentController.addUserScript(script)
                                  ^
WebKit.WKUserContentController.addUserScript:2:22: note: calls to instance method 'addUserScript' from outside of its actor context are implicitly asynchronous
@MainActor open func addUserScript(_ userScript: WKUserScript)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:70:17: note: add '@MainActor' to make instance method 'install(into:)' part of global actor 'MainActor'
    public func install(into userContentController: WKUserContentController) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:94:31: warning: call to main actor-isolated instance method 'removeScriptMessageHandler(forName:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        userContentController.removeScriptMessageHandler(forName: configuration.handlerName)
                              ^
WebKit.WKUserContentController.removeScriptMessageHandler:2:22: note: calls to instance method 'removeScriptMessageHandler(forName:)' from outside of its actor context are implicitly asynchronous
@MainActor open func removeScriptMessageHandler(forName name: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:93:17: note: add '@MainActor' to make instance method 'detach(from:)' part of global actor 'MainActor'
    public func detach(from userContentController: WKUserContentController) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:179:23: warning: main actor-isolated property 'name' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        guard message.name == configuration.handlerName else { return }
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKScriptMessage.h:57:49: note: property declared here
@property (nonatomic, readonly, copy) NSString *name;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:178:22: note: add '@MainActor' to make instance method 'handle' part of global actor 'MainActor'
    fileprivate func handle(_ message: WKScriptMessage) {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:180:45: warning: main actor-isolated property 'body' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        guard let payload = Payload(message.body) else { return }
                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKScriptMessage.h:47:42: note: property declared here
@property (nonatomic, readonly, copy) id body;
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/PhantomWebViewConsoleBridge.swift:178:22: note: add '@MainActor' to make instance method 'handle' part of global actor 'MainActor'
    fileprivate func handle(_ message: WKScriptMessage) {
                     ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/ExtensionLogVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/LogConsoleVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/LogConsoleVC.swift:302:10: warning: main actor-isolated instance method 'onEvent' cannot be used to satisfy nonisolated requirement from protocol 'PhantomEventObserver'; this is an error in the Swift 6 language mode
    func onEvent(_ event: PhantomEvent) {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/LogConsoleVC.swift:302:10: note: add 'nonisolated' to 'onEvent' to make this instance method not isolated to the actor
    func onEvent(_ event: PhantomEvent) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/Logger/UI/LogConsoleVC.swift:7:54: note: add '@preconcurrency' to the 'PhantomEventObserver' conformance to defer isolation checking to run time
internal final class LogConsoleVC: UIViewController, PhantomEventObserver {
                                                     ^
                                                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:60:10: note: mark the protocol requirement 'onEvent' 'async' to allow actor-isolated conformances
    func onEvent(_ event: PhantomEvent)
         ^
                                        async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:8:25: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomMainThreadChecker' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let shared = PhantomMainThreadChecker()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:7:22: note: class 'PhantomMainThreadChecker' does not conform to the 'Sendable' protocol
internal final class PhantomMainThreadChecker {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:8:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static let shared = PhantomMainThreadChecker()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:8:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let shared = PhantomMainThreadChecker()
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:63:13: warning: capture of 'self' with non-sendable type 'PhantomMainThreadChecker?' in a '@Sendable' closure
            self?.violations.removeAll()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:7:22: note: class 'PhantomMainThreadChecker' does not conform to the 'Sendable' protocol
internal final class PhantomMainThreadChecker {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:90:30: warning: capture of 'self' with non-sendable type 'PhantomMainThreadChecker?' in a '@Sendable' closure
            guard let self = self else { return }
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift:7:22: note: class 'PhantomMainThreadChecker' does not conform to the 'Sendable' protocol
internal final class PhantomMainThreadChecker {
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/UI/MainThreadCheckerVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/UI/MainThreadCheckerVC.swift:29:19: warning: call to main actor-isolated instance method 'reload()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            self?.reload()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/UI/MainThreadCheckerVC.swift:93:18: note: calls to instance method 'reload()' from outside of its actor context are implicitly asynchronous
    private func reload() {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MainThreadChecker/UI/MainThreadCheckerVC.swift:93:18: note: main actor isolation inferred from inheritance from class 'PhantomTableVC'
    private func reload() {
                 ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift:9:13: warning: var '_snapshotAccumulator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var _snapshotAccumulator: [String: Int] = [:]
            ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift:9:13: note: convert '_snapshotAccumulator' to a 'let' constant to make 'Sendable' shared state immutable
private var _snapshotAccumulator: [String: Int] = [:]
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift:9:13: note: add '@MainActor' to make var '_snapshotAccumulator' part of global actor 'MainActor'
private var _snapshotAccumulator: [String: Int] = [:]
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift:9:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var _snapshotAccumulator: [String: Int] = [:]
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift:113:40: warning: capture of 'completion' with non-sendable type '([String : Int]) -> Void' in a '@Sendable' closure
            DispatchQueue.main.async { completion(counts) }
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomHeapSnapshot.swift:113:40: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            DispatchQueue.main.async { completion(counts) }
                                       ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomLeakTracker.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomLeakTracker.swift:47:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PhantomLeakTracker' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = PhantomLeakTracker()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomLeakTracker.swift:45:20: note: class 'PhantomLeakTracker' does not conform to the 'Sendable' protocol
public final class PhantomLeakTracker {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomLeakTracker.swift:47:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = PhantomLeakTracker()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/PhantomLeakTracker.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = PhantomLeakTracker()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/HeapSnapshotVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/LeakListVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/LeakListVC.swift:161:10: warning: main actor-isolated instance method 'onEvent' cannot be used to satisfy nonisolated requirement from protocol 'PhantomEventObserver'; this is an error in the Swift 6 language mode
    func onEvent(_ event: PhantomEvent) {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/LeakListVC.swift:161:10: note: add 'nonisolated' to 'onEvent' to make this instance method not isolated to the actor
    func onEvent(_ event: PhantomEvent) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/LeakListVC.swift:6:50: note: add '@preconcurrency' to the 'PhantomEventObserver' conformance to defer isolation checking to run time
internal final class LeakListVC: PhantomTableVC, PhantomEventObserver {
                                                 ^
                                                 @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Core/PhantomEventBus.swift:60:10: note: mark the protocol requirement 'onEvent' 'async' to allow actor-isolated conformances
    func onEvent(_ event: PhantomEvent)
         ^
                                        async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PhantomSwift/Modules/MemoryLeak/UI/ObjectRetainGraphVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwiftNetworking.o normal (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
    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-ios12.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 -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/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking_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/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwiftNetworking.o
SwiftDriverJobDiscovery normal arm64 Emitting module for PhantomSwift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriver\ Compilation\ Requirements PhantomSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PhantomSwift' from project 'PhantomSwift')
    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 PhantomSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.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-ios12.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 -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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift-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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift_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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift-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/PhantomSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift-Swift.h (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/PhantomSwift-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftmodule (in target 'PhantomSwift' from project 'PhantomSwift')
    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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftdoc (in target 'PhantomSwift' from project 'PhantomSwift')
    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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.abi.json (in target 'PhantomSwift' from project 'PhantomSwift')
    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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/arm64-apple-ios.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling PhantomConfig.swift, PhantomEnvironment.swift, PhantomEventBus.swift, PhantomFeature.swift, PhantomLaunchPlanner.swift, PhantomPlugin.swift, PhantomSwift.swift, PhantomSwiftExports.swift, PhantomDashboardVC.swift, PhantomDynamicIsland.swift, PhantomFeatureCatalog.swift, PhantomGestureHandler.swift, PhantomHUDWindow.swift, PhantomTheme.swift (in target 'PhantomSwift' from project 'PhantomSwift')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftsourceinfo (in target 'PhantomSwift' from project 'PhantomSwift')
    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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
    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 PhantomSwiftNetworking --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 12.0 --bundle-identifier spi-builder-workspace.PhantomSwiftNetworking --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwiftNetworking.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwiftNetworking.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/PhantomSwiftNetworking.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/PhantomSwiftNetworking.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwiftNetworking.build/Objects-normal/arm64/PhantomSwiftNetworking.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-24 02:36:49.279 appintentsmetadataprocessor[726:4267] Starting appintentsmetadataprocessor export
2026-04-24 02:36:49.325 appintentsmetadataprocessor[726:4267] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwiftNetworking.o (in target 'PhantomSwiftNetworking' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwiftNetworking.o
SwiftDriverJobDiscovery normal arm64 Compiling PhantomAnalyticsMonitor.swift, AnalyticsListVC.swift, PhantomAssetInspector.swift, AssetGridCell.swift, AssetListVC.swift, PhantomExtensionBus.swift, PhantomFeatureFlags.swift, FeatureFlagsDashboardVC.swift, PhantomInterceptorDraft.swift, InterceptorCardCell.swift, InterceptorListVC.swift, PhantomMockEditorVC.swift, LogEntry.swift, LogLevel.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling PhantomHARExporter.swift, PhantomRequestStore.swift, PhantomSessionRecorder.swift, PhantomURLProtocol.swift, BadNetworkDashboardVC.swift, NetworkListVC.swift, NetworkWaterfallVC.swift, PhantomNetworkCell.swift, PhantomNetworkHeaderView.swift, RequestReplayVC.swift, PerformanceMonitor.swift, PhantomCrashLogStore.swift, PhantomHangDetector.swift, PhantomMemorySlayer.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling SecurityDashboardVC.swift, SecurityKeychainVC.swift, PhantomSnapshotManager.swift, CoreDataInspectorVC.swift, KeychainInspectorVC.swift, SQLiteInspectorVC.swift, SandboxInspectorVC.swift, SnapshotListVC.swift, StorageDashboardCell.swift, StorageListVC.swift, UserDefaultsVC.swift, PhantomRenderStore.swift, PhantomRenderTracker.swift, RenderListVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling PhantomMetricKitMonitor.swift, PhantomObjectTracker.swift, CrashLogVC.swift, HangDetailVC.swift, HangListVC.swift, MemoryDiffVC.swift, MemoryGraphVC.swift, PerformanceDashboardVC.swift, PhantomTimelineView.swift, PhantomAccessibilityAuditor.swift, PhantomBGTaskInspector.swift, PhantomBugReporter.swift, PhantomEnvironmentMonitor.swift, PhantomLocaleManager.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling PhantomFPSMonitor.swift, PhantomGridOverlay.swift, PhantomLayoutConflictDetector.swift, PhantomMeasurementTool.swift, PhantomTouchVisualizer.swift, PhantomUIKitTracker.swift, PhantomUIInspector.swift, AccessibilityAuditVC.swift, AnimationInspectorVC.swift, ColorPickerVC.swift, ConstraintInspectorVC.swift, DevToolsVC.swift, EnvironmentOverrideVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling PhantomLocationManager.swift, PhantomPushSimulator.swift, AccessibilityDashboardVC.swift, AppShortcutsVC.swift, BGTaskInspectorVC.swift, DeepLinkTesterVC.swift, EnvironmentDashboardVC.swift, MacroRecorderVC.swift, PushSimulatorVC.swift, PhantomRemoteServer.swift, PhantomRuntimeInspector.swift, ClassDetailVC.swift, RuntimeBrowserVC.swift, PhantomSecurityInspector.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling GestureInspectorVC.swift, GridOverlayVC.swift, HitTestInspectorVC.swift, LayerInspectorVC.swift, LayoutConflictVC.swift, LiveEditVC.swift, ResponderChainVC.swift, SnapshotCompareVC.swift, UIInspectorActionCard.swift, UserDefaultsInspectorVC.swift, ViewDetailVC.swift, ViewHierarchy3DVC.swift, ViewHierarchyVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriverJobDiscovery normal arm64 Compiling LogStore.swift, PhantomLog.swift, PhantomOSLogBridge.swift, PhantomWebViewConsoleAutoInstaller.swift, PhantomWebViewConsoleBridge.swift, ExtensionLogVC.swift, LogConsoleVC.swift, PhantomMainThreadChecker.swift, MainThreadCheckerVC.swift, PhantomHeapSnapshot.swift, PhantomLeakTracker.swift, HeapSnapshotVC.swift, LeakListVC.swift, ObjectRetainGraphVC.swift (in target 'PhantomSwift' from project 'PhantomSwift')
SwiftDriver\ Compilation PhantomSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PhantomSwift' from project 'PhantomSwift')
    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 PhantomSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.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-ios12.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 -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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift-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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift_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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift-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/PhantomSwift.o normal (in target 'PhantomSwift' from project 'PhantomSwift')
    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-ios12.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 -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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift_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/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.o
ExtractAppIntentsMetadata (in target 'PhantomSwift' from project 'PhantomSwift')
    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 PhantomSwift --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 12.0 --bundle-identifier spi-builder-workspace.PhantomSwift --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/PhantomSwift.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/PhantomSwift.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/PhantomSwift.build/Debug-iphoneos/PhantomSwift.build/Objects-normal/arm64/PhantomSwift.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-24 02:36:51.548 appintentsmetadataprocessor[729:4354] Starting appintentsmetadataprocessor export
2026-04-24 02:36:51.584 appintentsmetadataprocessor[729:4354] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.o (in target 'PhantomSwift' from project 'PhantomSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PhantomSwift.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "PhantomSwift",
  "name" : "PhantomSwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "PhantomSwift",
      "targets" : [
        "PhantomSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PhantomSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "PhantomSwiftTests",
      "path" : "Tests/PhantomSwiftTests",
      "sources" : [
        "Core/PhantomEventBusTests.swift",
        "Core/PhantomFeatureCatalogTests.swift",
        "Core/PhantomLaunchPlannerTests.swift",
        "Modules/Analytics/Core/PhantomAnalyticsMonitorTests.swift",
        "Modules/Interceptor/PhantomInterceptorDraftTests.swift",
        "Modules/Interceptor/PhantomInterceptorTests.swift",
        "Modules/Logger/LogStoreTests.swift",
        "Modules/Logger/PhantomWebViewConsoleBridgeTests.swift",
        "Modules/Network/Core/PhantomRequestStoreTests.swift",
        "Modules/SwiftUI/Core/PhantomRenderStoreTests.swift",
        "PhantomAnalyticsMonitorQueryTests.swift",
        "PhantomCURLExporterTests.swift",
        "PhantomFeatureFlagsTests.swift",
        "PhantomLocationManagerTests.swift",
        "PhantomRequestStoreClearTests.swift"
      ],
      "target_dependencies" : [
        "PhantomSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PhantomSwiftNetworking",
      "module_type" : "SwiftTarget",
      "name" : "PhantomSwiftNetworking",
      "path" : "Sources/PhantomSwiftNetworking",
      "product_memberships" : [
        "PhantomSwift"
      ],
      "sources" : [
        "Modules/Interceptor/InterceptRule.swift",
        "Modules/Interceptor/PhantomInterceptor.swift",
        "Modules/Interceptor/PhantomRuleMatcher.swift",
        "Modules/Network/Core/PhantomCURLExporter.swift",
        "Modules/Network/Core/PhantomNetworkModel.swift",
        "Modules/Network/Core/PhantomNetworkSimulator.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PhantomSwift",
      "module_type" : "SwiftTarget",
      "name" : "PhantomSwift",
      "path" : "Sources/PhantomSwift",
      "product_memberships" : [
        "PhantomSwift"
      ],
      "sources" : [
        "Core/PhantomConfig.swift",
        "Core/PhantomEnvironment.swift",
        "Core/PhantomEventBus.swift",
        "Core/PhantomFeature.swift",
        "Core/PhantomLaunchPlanner.swift",
        "Core/PhantomPlugin.swift",
        "Core/PhantomSwift.swift",
        "Core/PhantomSwiftExports.swift",
        "HUD/PhantomDashboardVC.swift",
        "HUD/PhantomDynamicIsland.swift",
        "HUD/PhantomFeatureCatalog.swift",
        "HUD/PhantomGestureHandler.swift",
        "HUD/PhantomHUDWindow.swift",
        "HUD/PhantomTheme.swift",
        "Modules/Analytics/Core/PhantomAnalyticsMonitor.swift",
        "Modules/Analytics/UI/AnalyticsListVC.swift",
        "Modules/Assets/Core/PhantomAssetInspector.swift",
        "Modules/Assets/UI/AssetGridCell.swift",
        "Modules/Assets/UI/AssetListVC.swift",
        "Modules/Core/PhantomExtensionBus.swift",
        "Modules/FeatureFlags/Core/PhantomFeatureFlags.swift",
        "Modules/FeatureFlags/UI/FeatureFlagsDashboardVC.swift",
        "Modules/Interceptor/Core/PhantomInterceptorDraft.swift",
        "Modules/Interceptor/UI/InterceptorCardCell.swift",
        "Modules/Interceptor/UI/InterceptorListVC.swift",
        "Modules/Interceptor/UI/PhantomMockEditorVC.swift",
        "Modules/Logger/LogEntry.swift",
        "Modules/Logger/LogLevel.swift",
        "Modules/Logger/LogStore.swift",
        "Modules/Logger/PhantomLog.swift",
        "Modules/Logger/PhantomOSLogBridge.swift",
        "Modules/Logger/PhantomWebViewConsoleAutoInstaller.swift",
        "Modules/Logger/PhantomWebViewConsoleBridge.swift",
        "Modules/Logger/UI/ExtensionLogVC.swift",
        "Modules/Logger/UI/LogConsoleVC.swift",
        "Modules/MainThreadChecker/Core/PhantomMainThreadChecker.swift",
        "Modules/MainThreadChecker/UI/MainThreadCheckerVC.swift",
        "Modules/MemoryLeak/PhantomHeapSnapshot.swift",
        "Modules/MemoryLeak/PhantomLeakTracker.swift",
        "Modules/MemoryLeak/UI/HeapSnapshotVC.swift",
        "Modules/MemoryLeak/UI/LeakListVC.swift",
        "Modules/MemoryLeak/UI/ObjectRetainGraphVC.swift",
        "Modules/Network/Core/PhantomHARExporter.swift",
        "Modules/Network/Core/PhantomRequestStore.swift",
        "Modules/Network/Core/PhantomSessionRecorder.swift",
        "Modules/Network/Core/PhantomURLProtocol.swift",
        "Modules/Network/UI/BadNetworkDashboardVC.swift",
        "Modules/Network/UI/NetworkListVC.swift",
        "Modules/Network/UI/NetworkWaterfallVC.swift",
        "Modules/Network/UI/PhantomNetworkCell.swift",
        "Modules/Network/UI/PhantomNetworkHeaderView.swift",
        "Modules/Network/UI/RequestReplayVC.swift",
        "Modules/Performance/Core/PerformanceMonitor.swift",
        "Modules/Performance/Core/PhantomCrashLogStore.swift",
        "Modules/Performance/Core/PhantomHangDetector.swift",
        "Modules/Performance/Core/PhantomMemorySlayer.swift",
        "Modules/Performance/Core/PhantomMetricKitMonitor.swift",
        "Modules/Performance/Core/PhantomObjectTracker.swift",
        "Modules/Performance/UI/CrashLogVC.swift",
        "Modules/Performance/UI/HangDetailVC.swift",
        "Modules/Performance/UI/HangListVC.swift",
        "Modules/Performance/UI/MemoryDiffVC.swift",
        "Modules/Performance/UI/MemoryGraphVC.swift",
        "Modules/Performance/UI/PerformanceDashboardVC.swift",
        "Modules/Performance/UI/PhantomTimelineView.swift",
        "Modules/QA/Core/PhantomAccessibilityAuditor.swift",
        "Modules/QA/Core/PhantomBGTaskInspector.swift",
        "Modules/QA/Core/PhantomBugReporter.swift",
        "Modules/QA/Core/PhantomEnvironmentMonitor.swift",
        "Modules/QA/Core/PhantomLocaleManager.swift",
        "Modules/QA/Core/PhantomLocationManager.swift",
        "Modules/QA/Core/PhantomPushSimulator.swift",
        "Modules/QA/UI/AccessibilityDashboardVC.swift",
        "Modules/QA/UI/AppShortcutsVC.swift",
        "Modules/QA/UI/BGTaskInspectorVC.swift",
        "Modules/QA/UI/DeepLinkTesterVC.swift",
        "Modules/QA/UI/EnvironmentDashboardVC.swift",
        "Modules/QA/UI/MacroRecorderVC.swift",
        "Modules/QA/UI/PushSimulatorVC.swift",
        "Modules/Remote/PhantomRemoteServer.swift",
        "Modules/RuntimeBrowser/Core/PhantomRuntimeInspector.swift",
        "Modules/RuntimeBrowser/UI/ClassDetailVC.swift",
        "Modules/RuntimeBrowser/UI/RuntimeBrowserVC.swift",
        "Modules/Security/PhantomSecurityInspector.swift",
        "Modules/Security/UI/SecurityDashboardVC.swift",
        "Modules/Security/UI/SecurityKeychainVC.swift",
        "Modules/Storage/Core/PhantomSnapshotManager.swift",
        "Modules/Storage/UI/CoreDataInspectorVC.swift",
        "Modules/Storage/UI/KeychainInspectorVC.swift",
        "Modules/Storage/UI/SQLiteInspectorVC.swift",
        "Modules/Storage/UI/SandboxInspectorVC.swift",
        "Modules/Storage/UI/SnapshotListVC.swift",
        "Modules/Storage/UI/StorageDashboardCell.swift",
        "Modules/Storage/UI/StorageListVC.swift",
        "Modules/Storage/UI/UserDefaultsVC.swift",
        "Modules/SwiftUI/Core/PhantomRenderStore.swift",
        "Modules/SwiftUI/Core/PhantomRenderTracker.swift",
        "Modules/SwiftUI/UI/RenderListVC.swift",
        "Modules/UIInspector/Core/PhantomFPSMonitor.swift",
        "Modules/UIInspector/Core/PhantomGridOverlay.swift",
        "Modules/UIInspector/Core/PhantomLayoutConflictDetector.swift",
        "Modules/UIInspector/Core/PhantomMeasurementTool.swift",
        "Modules/UIInspector/Core/PhantomTouchVisualizer.swift",
        "Modules/UIInspector/Core/PhantomUIKitTracker.swift",
        "Modules/UIInspector/PhantomUIInspector.swift",
        "Modules/UIInspector/UI/AccessibilityAuditVC.swift",
        "Modules/UIInspector/UI/AnimationInspectorVC.swift",
        "Modules/UIInspector/UI/ColorPickerVC.swift",
        "Modules/UIInspector/UI/ConstraintInspectorVC.swift",
        "Modules/UIInspector/UI/DevToolsVC.swift",
        "Modules/UIInspector/UI/EnvironmentOverrideVC.swift",
        "Modules/UIInspector/UI/GestureInspectorVC.swift",
        "Modules/UIInspector/UI/GridOverlayVC.swift",
        "Modules/UIInspector/UI/HitTestInspectorVC.swift",
        "Modules/UIInspector/UI/LayerInspectorVC.swift",
        "Modules/UIInspector/UI/LayoutConflictVC.swift",
        "Modules/UIInspector/UI/LiveEditVC.swift",
        "Modules/UIInspector/UI/ResponderChainVC.swift",
        "Modules/UIInspector/UI/SnapshotCompareVC.swift",
        "Modules/UIInspector/UI/UIInspectorActionCard.swift",
        "Modules/UIInspector/UI/UserDefaultsInspectorVC.swift",
        "Modules/UIInspector/UI/ViewDetailVC.swift",
        "Modules/UIInspector/UI/ViewHierarchy3DVC.swift",
        "Modules/UIInspector/UI/ViewHierarchyVC.swift",
        "Shared/Components/PhantomBadgeView.swift",
        "Shared/Components/PhantomCodeView.swift",
        "Shared/Components/PhantomEmptyStateView.swift",
        "Shared/Components/PhantomTableVC.swift",
        "Shared/Extensions/Data+Phantom.swift",
        "Shared/Extensions/UIColor+Phantom.swift",
        "Shared/Extensions/UIExtensions+Phantom.swift",
        "Shared/Extensions/UIFont+Phantom.swift",
        "Shared/Extensions/UIImage+Phantom.swift",
        "Shared/Extensions/UIViewController+Phantom.swift",
        "Shared/Extensions/UIViewController+PhantomAppearance.swift",
        "Shared/Helpers/PhantomPresentationResolver.swift",
        "Shared/Helpers/PhantomSwizzler.swift"
      ],
      "target_dependencies" : [
        "PhantomSwiftNetworking"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.