This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build StatusAlert with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme StatusAlert -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

        inPresenter presenter: UIView,
                               ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:519:14: error: cannot find type 'UIView' in scope
        ) -> UIView {
             ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:527:47: error: cannot find type 'UIImageView' in scope
    private func createImageViewIfNeeded() -> UIImageView? {
                                              ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:541:48: error: cannot find type 'UILabel' in scope
    private func createTitleLabelIfNeeded() -> UILabel? {
                                               ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:556:50: error: cannot find type 'UILabel' in scope
    private func createMessageLabelIfNeeded() -> UILabel? {
                                                 ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:577:39: error: cannot find type 'UILabel' in scope
    private func createBaseLabel() -> UILabel {
                                      ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:716:68: error: cannot find type 'UIImageView' in scope
    private static let reusableImageViewsManager: ReusablesManager<UIImageView> = ReusablesManager(
                                                                   ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:724:48: error: cannot find type 'UIImageView' in scope
    private static func reusableImageView() -> UIImageView {
                                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:736:64: error: cannot find type 'UILabel' in scope
    private static let reusableLabelsManager: ReusablesManager<UILabel> = ReusablesManager(
                                                               ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:744:44: error: cannot find type 'UILabel' in scope
    private static func reusableLabel() -> UILabel {
                                           ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:755:68: error: cannot find type 'UIView' in scope
    private static let reusableSpaceViewsManager: ReusablesManager<UIView> = ReusablesManager(
                                                                   ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:763:48: error: cannot find type 'UIView' in scope
    private static func reusableSpaceView() -> UIView {
                                               ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:8:39: error: cannot find type 'UIView' in scope
@objc public final class StatusAlert: UIView {
                                      ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:8:2: error: only classes that inherit from NSObject can be declared @objc
@objc public final class StatusAlert: UIView {
~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:8:26: note: inherit from 'NSObject' to silence this error
@objc public final class StatusAlert: UIView {
                         ^
                                      NSObject,
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:786:94: error: type 'UIAccessibility' has no member 'reduceTransparencyStatusDidChangeNotification'
private let AccessibilityReduceTransparencyStatusDidChangeNotificationName = UIAccessibility.reduceTransparencyStatusDidChangeNotification
                                                                             ~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:787:60: warning: reference to static property 'none' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
private let AccessibilityTraitNone = UIAccessibilityTraits.none
                                                           ^
UIKit.UIAccessibilityTraits:2:23: note: static property declared here
    public static var none: UIAccessibilityTraits
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:82:16: error: cannot find 'UIDevice' in scope
        return UIDevice.current.isBlurAvailable
               ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:104:9: error: 'super' members cannot be referenced in a root class
        super.init(frame: frame)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:123:19: error: missing argument for parameter 'withVerticalPosition' in call
        self.show()
                  ^
                  withVerticalPosition: <#StatusAlert.VerticalPosition#>
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:143:17: note: 'show(withVerticalPosition:)' declared here
    public func show(withVerticalPosition verticalPosition: VerticalPosition) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:134:14: error: no exact matches in call to instance method 'show'
        self.show(inPresenter: presenter)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:143:17: note: incorrect labels for candidate (have: '(inPresenter:)', expected: '(withVerticalPosition:)')
    public func show(withVerticalPosition verticalPosition: VerticalPosition) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:154:17: note: incorrect labels for candidate (have: '(inPresenter:)', expected: '(withOffset:)')
    public func show(withOffset offset: CGFloat) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:145:18: error: incorrect argument label in call (have 'with:offset:', expected 'withVerticalPosition:offset:')
        self.show(with: verticalPosition, offset: 0)
                 ^~~~~
                  withVerticalPosition
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:156:19: error: missing argument for parameter 'withVerticalPosition' in call
        self.show(offset: offset)
                  ^
                  withVerticalPosition: <#StatusAlert.VerticalPosition#>,
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:196:17: note: 'show(withVerticalPosition:offset:)' declared here
    public func show(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:171:18: error: incorrect argument labels in call (have 'inPresenter:with:', expected 'withVerticalPosition:offset:')
        self.show(inPresenter: presenter, with: verticalPosition)
                 ^~~~~~~~~~~~             ~~~~
                  withVerticalPosition    offset
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:171:49: error: cannot convert value of type 'StatusAlert.VerticalPosition' to expected argument type 'CGFloat'
        self.show(inPresenter: presenter, with: verticalPosition)
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:186:18: error: incorrect argument label in call (have 'inPresenter:offset:', expected 'withVerticalPosition:offset:')
        self.show(inPresenter: presenter, offset: offset)
                 ^~~~~~~~~~~~
                  withVerticalPosition
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:201:18: error: incorrect argument label in call (have 'with:offset:', expected 'withVerticalPosition:offset:')
        self.show(with: verticalPosition, offset: offset)
                 ^~~~~
                  withVerticalPosition
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:218:18: error: extra arguments at positions #1, #2 in call
        self.show(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:196:17: note: 'show(withVerticalPosition:offset:)' declared here
    public func show(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:219:13: error: missing argument for parameter 'withVerticalPosition' in call
            inPresenter: presenter,
            ^
            withVerticalPosition: <#StatusAlert.VerticalPosition#>,
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:196:17: note: 'show(withVerticalPosition:offset:)' declared here
    public func show(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:261:14: error: value of type 'StatusAlert' has no member 'translatesAutoresizingMaskIntoConstraints'
        self.translatesAutoresizingMaskIntoConstraints = false
        ~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:267:22: error: value of type 'StatusAlert' has no member 'alpha'
                self.alpha = 0
                ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:272:18: error: value of type 'StatusAlert' has no member 'alpha'
            self.alpha = 0
            ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:280:39: error: cannot infer contextual base in reference to member 'vertical'
        self.contentStackView.axis = .vertical
                                     ~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:281:47: error: cannot infer contextual base in reference to member 'fill'
        self.contentStackView.distribution = .fill
                                             ~^~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:282:44: error: cannot infer contextual base in reference to member 'center'
        self.contentStackView.alignment = .center
                                          ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:287:14: error: value of type 'StatusAlert' has no member 'addSubview'
        self.addSubview(self.contentView)
        ~~~~ ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:291:65: error: value of type 'StatusAlert' has no member 'leadingAnchor'
        self.contentView.leadingAnchor.constraint(equalTo: self.leadingAnchor).isActive = true
                                                           ~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:292:66: error: value of type 'StatusAlert' has no member 'trailingAnchor'
        self.contentView.trailingAnchor.constraint(equalTo: self.trailingAnchor).isActive = true
                                                            ~~~~ ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:293:61: error: value of type 'StatusAlert' has no member 'topAnchor'
        self.contentView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
                                                       ~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:294:64: error: value of type 'StatusAlert' has no member 'bottomAnchor'
        self.contentView.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
                                                          ~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:318:28: error: cannot find 'UILongPressGestureRecognizer' in scope
        self.pickGesture = UILongPressGestureRecognizer(target: self, action: #selector(self.pick))
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:337:14: error: value of type 'StatusAlert' has no member 'isAccessibilityElement'
        self.isAccessibilityElement = false
        ~~~~ ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:338:14: error: value of type 'StatusAlert' has no member 'accessibilityElementsHidden'
        self.accessibilityElementsHidden = true
        ~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:339:14: error: value of type 'StatusAlert' has no member 'accessibilityTraits'
        self.accessibilityTraits = AccessibilityTraitNone
        ~~~~ ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:353:30: error: 'nil' requires a contextual type
            self.imageView = nil
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:358:31: error: 'nil' requires a contextual type
            self.titleLabel = nil
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:363:33: error: 'nil' requires a contextual type
            self.messageLabel = nil
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:368:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.deactivate(array)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:415:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.activate(self.reusableObjectsConstraints)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:426:14: error: value of type 'StatusAlert' has no member 'centerXAnchor'
        self.centerXAnchor.constraint(equalTo: presenter.centerXAnchor).isActive = true
        ~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:430:18: error: value of type 'StatusAlert' has no member 'centerYAnchor'
            self.centerYAnchor.constraint(
            ~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:436:22: error: value of type 'StatusAlert' has no member 'topAnchor'
                self.topAnchor.constraint(
                ~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:441:22: error: value of type 'StatusAlert' has no member 'topAnchor'
                self.topAnchor.constraint(
                ~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:448:22: error: value of type 'StatusAlert' has no member 'bottomAnchor'
                self.bottomAnchor.constraint(
                ~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:453:22: error: value of type 'StatusAlert' has no member 'bottomAnchor'
                self.bottomAnchor.constraint(
                ~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:462:27: error: cannot find type 'NSLayoutConstraint' in scope
        var constraints: [NSLayoutConstraint] = []
                          ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:496:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.activate(self.contentStackViewConstraints)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:508:75: error: missing argument label 'where:' in call
            } else if StatusAlert.currentlyPresentedStatusAlerts.contains(self) {
                                                                          ^
                                                                          where:
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:508:75: error: cannot convert value of type 'StatusAlert' to expected argument type '(StatusAlert) throws -> Bool'
            } else if StatusAlert.currentlyPresentedStatusAlerts.contains(self) {
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:594:72: error: missing argument label 'where:' in call
            guard !StatusAlert.currentlyPresentedStatusAlerts.contains(self) else { return }
                                                                       ^
                                                                       where:
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:594:72: error: cannot convert value of type 'StatusAlert' to expected argument type '(StatusAlert) throws -> Bool'
            guard !StatusAlert.currentlyPresentedStatusAlerts.contains(self) else { return }
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:634:9: error: cannot find 'UIView' in scope
        UIView.animate(
        ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:637:23: error: cannot infer contextual base in reference to member 'curveEaseOut'
            options: .curveEaseOut,
                     ~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:641:30: error: value of type 'StatusAlert' has no member 'alpha'
                        self.alpha = 1
                        ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:651:40: error: cannot infer type of closure parameter '_' without a type annotation
            completion: { [weak self] (_) in
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:659:25: error: type 'UIAccessibility' has no member 'post'
        UIAccessibility.post(notification: UIAccessibility.Notification.announcement, argument: announcement)
        ~~~~~~~~~~~~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:676:18: error: value of type 'StatusAlert' has no member 'isUserInteractionEnabled'
            self.isUserInteractionEnabled = false
            ~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:677:13: error: cannot find 'UIView' in scope
            UIView.animate(
            ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:680:28: error: reference to member 'curveEaseOut' cannot be resolved without a contextual type
                options: [.curveEaseOut, .beginFromCurrentState],
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:680:43: error: reference to member 'beginFromCurrentState' cannot be resolved without a contextual type
                options: [.curveEaseOut, .beginFromCurrentState],
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:684:34: error: value of type 'StatusAlert' has no member 'alpha'
                            self.alpha = 0
                            ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:694:44: error: cannot infer type of closure parameter '_' without a type annotation
                completion: { [weak self] (_) in
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:696:80: error: referencing instance method 'firstIndex(of:)' on 'Collection' requires that 'StatusAlert' conform to 'Equatable'
                        let index = StatusAlert.currentlyPresentedStatusAlerts.firstIndex(of: strongSelf) {
                                                                               ^
Swift.Collection:1:11: note: where 'Self.Element' = 'StatusAlert'
extension Collection where Self.Element : Equatable {
          ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:725:25: error: cannot find 'UIImageView' in scope
        let imageView = UIImageView()
                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:726:34: error: cannot infer contextual base in reference to member 'scaleAspectFit'
        imageView.contentMode = .scaleAspectFit
                                ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:745:21: error: cannot find 'UILabel' in scope
        let label = UILabel()
                    ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:746:32: error: cannot infer contextual base in reference to member 'center'
        label.textAlignment = .center
                              ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:764:25: error: cannot find 'UIView' in scope
        let spaceView = UIView()
                        ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
SwiftCompile normal arm64_32 Compiling\ StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift:71:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
    @objc (StatusAlertSizesAndDistances)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:57:34: error: cannot find type 'UIBlurEffect' in scope
    private lazy var blurEffect: UIBlurEffect = {
                                 ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:30:29: warning: static property 'multiplePresentationsBehavior' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    @objc public static var multiplePresentationsBehavior: MultiplePresentationsBehavior = .ignoreIfAlreadyPresenting
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:30:29: note: convert 'multiplePresentationsBehavior' to a 'let' constant to make 'Sendable' shared state immutable
    @objc public static var multiplePresentationsBehavior: MultiplePresentationsBehavior = .ignoreIfAlreadyPresenting
                        ~~~ ^
                        let
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:30:29: note: annotate 'multiplePresentationsBehavior' with '@MainActor' if property should only be accessed from the main actor
    @objc public static var multiplePresentationsBehavior: MultiplePresentationsBehavior = .ignoreIfAlreadyPresenting
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:30:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    @objc public static var multiplePresentationsBehavior: MultiplePresentationsBehavior = .ignoreIfAlreadyPresenting
                            ^
          nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:49:24: warning: static property 'currentlyPresentedStatusAlerts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var currentlyPresentedStatusAlerts: [StatusAlert] = []
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:49:24: note: convert 'currentlyPresentedStatusAlerts' to a 'let' constant to make 'Sendable' shared state immutable
    private static var currentlyPresentedStatusAlerts: [StatusAlert] = []
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:49:24: note: annotate 'currentlyPresentedStatusAlerts' with '@MainActor' if property should only be accessed from the main actor
    private static var currentlyPresentedStatusAlerts: [StatusAlert] = []
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:49:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var currentlyPresentedStatusAlerts: [StatusAlert] = []
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:51:24: warning: static property 'alertToPresent' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var alertToPresent: StatusAlert? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:51:24: note: convert 'alertToPresent' to a 'let' constant to make 'Sendable' shared state immutable
    private static var alertToPresent: StatusAlert? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:51:24: note: annotate 'alertToPresent' with '@MainActor' if property should only be accessed from the main actor
    private static var alertToPresent: StatusAlert? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:51:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var alertToPresent: StatusAlert? = nil
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:785:55: error: cannot find 'UINavigationController' in scope
private let NavigationControllerHideShowBarDuration = UINavigationController.hideShowBarDuration
                                                      ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:61:30: error: cannot find type 'UIVisualEffectView' in scope
    private let contentView: UIVisualEffectView = UIVisualEffectView()
                             ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:62:35: error: cannot find type 'UIStackView' in scope
    private let contentStackView: UIStackView = UIStackView()
                                  ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:64:28: error: cannot find type 'UIImageView' in scope
    private var imageView: UIImageView? = nil
                           ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:65:29: error: cannot find type 'UILabel' in scope
    private var titleLabel: UILabel? = nil
                            ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:66:31: error: cannot find type 'UILabel' in scope
    private var messageLabel: UILabel? = nil
                              ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:68:47: error: cannot find type 'NSLayoutConstraint' in scope
    private var contentStackViewConstraints: [NSLayoutConstraint] = []
                                              ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:69:46: error: cannot find type 'NSLayoutConstraint' in scope
    private var reusableObjectsConstraints: [NSLayoutConstraint] = []
                                             ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:85:30: error: cannot find type 'UILongPressGestureRecognizer' in scope
    private var pickGesture: UILongPressGestureRecognizer?
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:103:27: error: initializer does not override a designated initializer from its superclass
    @objc public override init(frame: CGRect) {
                 ~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:132:36: error: cannot find type 'UIView' in scope
    public func show(in presenter: UIView) {
                                   ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:167:23: error: cannot find type 'UIView' in scope
        in presenter: UIView,
                      ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:182:23: error: cannot find type 'UIView' in scope
        in presenter: UIView,
                      ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:213:23: error: cannot find type 'UIView' in scope
        in presenter: UIView,
                      ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:228:32: error: cannot find type 'UIView' in scope
        inPresenter presenter: UIView = UIApplication.shared.keyWindow ?? UIView(),
                               ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:367:56: error: cannot find type 'NSLayoutConstraint' in scope
    private func deactivateConstraints(_ array: inout [NSLayoutConstraint]) {
                                                       ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:419:32: error: cannot find type 'UIView' in scope
        inPresenter presenter: UIView,
                               ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:519:14: error: cannot find type 'UIView' in scope
        ) -> UIView {
             ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:527:47: error: cannot find type 'UIImageView' in scope
    private func createImageViewIfNeeded() -> UIImageView? {
                                              ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:541:48: error: cannot find type 'UILabel' in scope
    private func createTitleLabelIfNeeded() -> UILabel? {
                                               ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:556:50: error: cannot find type 'UILabel' in scope
    private func createMessageLabelIfNeeded() -> UILabel? {
                                                 ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:577:39: error: cannot find type 'UILabel' in scope
    private func createBaseLabel() -> UILabel {
                                      ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:716:68: error: cannot find type 'UIImageView' in scope
    private static let reusableImageViewsManager: ReusablesManager<UIImageView> = ReusablesManager(
                                                                   ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:724:48: error: cannot find type 'UIImageView' in scope
    private static func reusableImageView() -> UIImageView {
                                               ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:736:64: error: cannot find type 'UILabel' in scope
    private static let reusableLabelsManager: ReusablesManager<UILabel> = ReusablesManager(
                                                               ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:744:44: error: cannot find type 'UILabel' in scope
    private static func reusableLabel() -> UILabel {
                                           ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:755:68: error: cannot find type 'UIView' in scope
    private static let reusableSpaceViewsManager: ReusablesManager<UIView> = ReusablesManager(
                                                                   ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:763:48: error: cannot find type 'UIView' in scope
    private static func reusableSpaceView() -> UIView {
                                               ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:8:39: error: cannot find type 'UIView' in scope
@objc public final class StatusAlert: UIView {
                                      ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:8:2: error: only classes that inherit from NSObject can be declared @objc
@objc public final class StatusAlert: UIView {
~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:8:26: note: inherit from 'NSObject' to silence this error
@objc public final class StatusAlert: UIView {
                         ^
                                      NSObject,
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:786:94: error: type 'UIAccessibility' has no member 'reduceTransparencyStatusDidChangeNotification'
private let AccessibilityReduceTransparencyStatusDidChangeNotificationName = UIAccessibility.reduceTransparencyStatusDidChangeNotification
                                                                             ~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:787:60: warning: reference to static property 'none' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
private let AccessibilityTraitNone = UIAccessibilityTraits.none
                                                           ^
UIKit.UIAccessibilityTraits:2:23: note: static property declared here
    public static var none: UIAccessibilityTraits
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:82:16: error: cannot find 'UIDevice' in scope
        return UIDevice.current.isBlurAvailable
               ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:104:9: error: 'super' members cannot be referenced in a root class
        super.init(frame: frame)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:123:19: error: missing argument for parameter 'withVerticalPosition' in call
        self.show()
                  ^
                  withVerticalPosition: <#StatusAlert.VerticalPosition#>
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:143:17: note: 'show(withVerticalPosition:)' declared here
    public func show(withVerticalPosition verticalPosition: VerticalPosition) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:134:14: error: no exact matches in call to instance method 'show'
        self.show(inPresenter: presenter)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:143:17: note: incorrect labels for candidate (have: '(inPresenter:)', expected: '(withVerticalPosition:)')
    public func show(withVerticalPosition verticalPosition: VerticalPosition) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:154:17: note: incorrect labels for candidate (have: '(inPresenter:)', expected: '(withOffset:)')
    public func show(withOffset offset: CGFloat) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:145:18: error: incorrect argument label in call (have 'with:offset:', expected 'withVerticalPosition:offset:')
        self.show(with: verticalPosition, offset: 0)
                 ^~~~~
                  withVerticalPosition
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:156:19: error: missing argument for parameter 'withVerticalPosition' in call
        self.show(offset: offset)
                  ^
                  withVerticalPosition: <#StatusAlert.VerticalPosition#>,
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:196:17: note: 'show(withVerticalPosition:offset:)' declared here
    public func show(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:171:18: error: incorrect argument labels in call (have 'inPresenter:with:', expected 'withVerticalPosition:offset:')
        self.show(inPresenter: presenter, with: verticalPosition)
                 ^~~~~~~~~~~~             ~~~~
                  withVerticalPosition    offset
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:171:49: error: cannot convert value of type 'StatusAlert.VerticalPosition' to expected argument type 'CGFloat'
        self.show(inPresenter: presenter, with: verticalPosition)
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:186:18: error: incorrect argument label in call (have 'inPresenter:offset:', expected 'withVerticalPosition:offset:')
        self.show(inPresenter: presenter, offset: offset)
                 ^~~~~~~~~~~~
                  withVerticalPosition
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:201:18: error: incorrect argument label in call (have 'with:offset:', expected 'withVerticalPosition:offset:')
        self.show(with: verticalPosition, offset: offset)
                 ^~~~~
                  withVerticalPosition
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:218:18: error: extra arguments at positions #1, #2 in call
        self.show(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:196:17: note: 'show(withVerticalPosition:offset:)' declared here
    public func show(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:219:13: error: missing argument for parameter 'withVerticalPosition' in call
            inPresenter: presenter,
            ^
            withVerticalPosition: <#StatusAlert.VerticalPosition#>,
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:196:17: note: 'show(withVerticalPosition:offset:)' declared here
    public func show(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:261:14: error: value of type 'StatusAlert' has no member 'translatesAutoresizingMaskIntoConstraints'
        self.translatesAutoresizingMaskIntoConstraints = false
        ~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:267:22: error: value of type 'StatusAlert' has no member 'alpha'
                self.alpha = 0
                ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:272:18: error: value of type 'StatusAlert' has no member 'alpha'
            self.alpha = 0
            ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:280:39: error: cannot infer contextual base in reference to member 'vertical'
        self.contentStackView.axis = .vertical
                                     ~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:281:47: error: cannot infer contextual base in reference to member 'fill'
        self.contentStackView.distribution = .fill
                                             ~^~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:282:44: error: cannot infer contextual base in reference to member 'center'
        self.contentStackView.alignment = .center
                                          ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:287:14: error: value of type 'StatusAlert' has no member 'addSubview'
        self.addSubview(self.contentView)
        ~~~~ ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:291:65: error: value of type 'StatusAlert' has no member 'leadingAnchor'
        self.contentView.leadingAnchor.constraint(equalTo: self.leadingAnchor).isActive = true
                                                           ~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:292:66: error: value of type 'StatusAlert' has no member 'trailingAnchor'
        self.contentView.trailingAnchor.constraint(equalTo: self.trailingAnchor).isActive = true
                                                            ~~~~ ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:293:61: error: value of type 'StatusAlert' has no member 'topAnchor'
        self.contentView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
                                                       ~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:294:64: error: value of type 'StatusAlert' has no member 'bottomAnchor'
        self.contentView.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
                                                          ~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:318:28: error: cannot find 'UILongPressGestureRecognizer' in scope
        self.pickGesture = UILongPressGestureRecognizer(target: self, action: #selector(self.pick))
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:337:14: error: value of type 'StatusAlert' has no member 'isAccessibilityElement'
        self.isAccessibilityElement = false
        ~~~~ ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:338:14: error: value of type 'StatusAlert' has no member 'accessibilityElementsHidden'
        self.accessibilityElementsHidden = true
        ~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:339:14: error: value of type 'StatusAlert' has no member 'accessibilityTraits'
        self.accessibilityTraits = AccessibilityTraitNone
        ~~~~ ^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:353:30: error: 'nil' requires a contextual type
            self.imageView = nil
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:358:31: error: 'nil' requires a contextual type
            self.titleLabel = nil
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:363:33: error: 'nil' requires a contextual type
            self.messageLabel = nil
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:368:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.deactivate(array)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:415:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.activate(self.reusableObjectsConstraints)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:426:14: error: value of type 'StatusAlert' has no member 'centerXAnchor'
        self.centerXAnchor.constraint(equalTo: presenter.centerXAnchor).isActive = true
        ~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:430:18: error: value of type 'StatusAlert' has no member 'centerYAnchor'
            self.centerYAnchor.constraint(
            ~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:436:22: error: value of type 'StatusAlert' has no member 'topAnchor'
                self.topAnchor.constraint(
                ~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:441:22: error: value of type 'StatusAlert' has no member 'topAnchor'
                self.topAnchor.constraint(
                ~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:448:22: error: value of type 'StatusAlert' has no member 'bottomAnchor'
                self.bottomAnchor.constraint(
                ~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:453:22: error: value of type 'StatusAlert' has no member 'bottomAnchor'
                self.bottomAnchor.constraint(
                ~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:462:27: error: cannot find type 'NSLayoutConstraint' in scope
        var constraints: [NSLayoutConstraint] = []
                          ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:496:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.activate(self.contentStackViewConstraints)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:508:75: error: missing argument label 'where:' in call
            } else if StatusAlert.currentlyPresentedStatusAlerts.contains(self) {
                                                                          ^
                                                                          where:
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:508:75: error: cannot convert value of type 'StatusAlert' to expected argument type '(StatusAlert) throws -> Bool'
            } else if StatusAlert.currentlyPresentedStatusAlerts.contains(self) {
                                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:594:72: error: missing argument label 'where:' in call
            guard !StatusAlert.currentlyPresentedStatusAlerts.contains(self) else { return }
                                                                       ^
                                                                       where:
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:594:72: error: cannot convert value of type 'StatusAlert' to expected argument type '(StatusAlert) throws -> Bool'
            guard !StatusAlert.currentlyPresentedStatusAlerts.contains(self) else { return }
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:634:9: error: cannot find 'UIView' in scope
        UIView.animate(
        ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:637:23: error: cannot infer contextual base in reference to member 'curveEaseOut'
            options: .curveEaseOut,
                     ~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:641:30: error: value of type 'StatusAlert' has no member 'alpha'
                        self.alpha = 1
                        ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:651:40: error: cannot infer type of closure parameter '_' without a type annotation
            completion: { [weak self] (_) in
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:659:25: error: type 'UIAccessibility' has no member 'post'
        UIAccessibility.post(notification: UIAccessibility.Notification.announcement, argument: announcement)
        ~~~~~~~~~~~~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:676:18: error: value of type 'StatusAlert' has no member 'isUserInteractionEnabled'
            self.isUserInteractionEnabled = false
            ~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:677:13: error: cannot find 'UIView' in scope
            UIView.animate(
            ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:680:28: error: reference to member 'curveEaseOut' cannot be resolved without a contextual type
                options: [.curveEaseOut, .beginFromCurrentState],
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:680:43: error: reference to member 'beginFromCurrentState' cannot be resolved without a contextual type
                options: [.curveEaseOut, .beginFromCurrentState],
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:684:34: error: value of type 'StatusAlert' has no member 'alpha'
                            self.alpha = 0
                            ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:694:44: error: cannot infer type of closure parameter '_' without a type annotation
                completion: { [weak self] (_) in
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:696:80: error: referencing instance method 'firstIndex(of:)' on 'Collection' requires that 'StatusAlert' conform to 'Equatable'
                        let index = StatusAlert.currentlyPresentedStatusAlerts.firstIndex(of: strongSelf) {
                                                                               ^
Swift.Collection:1:11: note: where 'Self.Element' = 'StatusAlert'
extension Collection where Self.Element : Equatable {
          ^
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:725:25: error: cannot find 'UIImageView' in scope
        let imageView = UIImageView()
                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:726:34: error: cannot infer contextual base in reference to member 'scaleAspectFit'
        imageView.contentMode = .scaleAspectFit
                                ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:745:21: error: cannot find 'UILabel' in scope
        let label = UILabel()
                    ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:746:32: error: cannot infer contextual base in reference to member 'center'
        label.textAlignment = .center
                              ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:764:25: error: cannot find 'UIView' in scope
        let spaceView = UIView()
                        ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
SwiftDriver\ Compilation\ Requirements StatusAlert normal armv7k com.apple.xcode.tools.swift.compiler (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name StatusAlert -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'StatusAlert' from project 'StatusAlert')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 Compiling\ UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k Compiling\ StatusAlertUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ StatusAlert (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k Compiling\ UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ StatusAlert (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 Compiling\ StatusAlertUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k Compiling\ StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 Compiling\ StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
(14 failures)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme StatusAlert -destination generic/platform=watchos "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  StatusAlert: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'StatusAlert' in project 'StatusAlert'
        ➜ Explicit dependency on target 'StatusAlert' in project 'StatusAlert'
    Target 'StatusAlert' in project 'StatusAlert' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'StatusAlert' from project 'StatusAlert')
SwiftDriver StatusAlert normal armv7k com.apple.xcode.tools.swift.compiler (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name StatusAlert -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver StatusAlert normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name StatusAlert -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert-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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver StatusAlert normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name StatusAlert -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert-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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.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/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ StatusAlertUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlertUtils.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal armv7k Emitting\ module\ for\ StatusAlert (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift:3:11: error: cannot find type 'UIDevice' in scope
 1 | import UIKit
 2 |
 3 | extension UIDevice {
   |           `- error: cannot find type 'UIDevice' in scope
 4 |
 5 |     /// If the device is able to display blur:
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift:7:11: error: cannot find type 'UIDevice' in scope
  5 | }
  6 |
  7 | extension UIDevice {
    |           `- error: cannot find type 'UIDevice' in scope
  8 |     enum DevicePlatform {
  9 |
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift:71:6: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 69 |     }
 70 |
 71 |     @objc (StatusAlertSizesAndDistances)
    |      `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 72 |     public final class SizesAndDistances: NSObject {
 73 |
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:57:34: error: cannot find type 'UIBlurEffect' in scope
 55 |
 56 |     private let defaultFadeAnimationDuration: TimeInterval = TimeInterval(NavigationControllerHideShowBarDuration)
 57 |     private lazy var blurEffect: UIBlurEffect = {
    |                                  `- error: cannot find type 'UIBlurEffect' in scope
 58 |         return UIBlurEffect(style: self.appearance.blurStyle)
 59 |     }()
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:30:29: warning: static property 'multiplePresentationsBehavior' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 |     /// Multiple presentation requests behavior
 30 |     @objc public static var multiplePresentationsBehavior: MultiplePresentationsBehavior = .ignoreIfAlreadyPresenting
    |                             |- warning: static property 'multiplePresentationsBehavior' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                             |- note: convert 'multiplePresentationsBehavior' to a 'let' constant to make 'Sendable' shared state immutable
    |                             |- note: annotate 'multiplePresentationsBehavior' with '@MainActor' if property should only be accessed from the main actor
    |                             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |     /// @1x should be 90*90 by default
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:49:24: warning: static property 'currentlyPresentedStatusAlerts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |     /// Used to present only one `StatusAlert` at once if `multiplePresentationsBehavior` is `ignoreIfAlreadyPresenting`
 48 |     /// or to dismiss currently presented alerts if `multiplePresentationsBehavior` is `dismissCurrentlyPresented`
 49 |     private static var currentlyPresentedStatusAlerts: [StatusAlert] = []
    |                        |- warning: static property 'currentlyPresentedStatusAlerts' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'currentlyPresentedStatusAlerts' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'currentlyPresentedStatusAlerts' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     private static var alertToPresent: StatusAlert? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:51:24: warning: static property 'alertToPresent' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 |     private static var currentlyPresentedStatusAlerts: [StatusAlert] = []
 50 |
 51 |     private static var alertToPresent: StatusAlert? = nil
    |                        |- warning: static property 'alertToPresent' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'alertToPresent' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'alertToPresent' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     private static var dismissing: Bool {
 53 |         return alertToPresent != nil
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:785:55: error: cannot find 'UINavigationController' in scope
783 |
784 | #if swift(>=4.2)
785 | private let NavigationControllerHideShowBarDuration = UINavigationController.hideShowBarDuration
    |                                                       `- error: cannot find 'UINavigationController' in scope
786 | private let AccessibilityReduceTransparencyStatusDidChangeNotificationName = UIAccessibility.reduceTransparencyStatusDidChangeNotification
787 | private let AccessibilityTraitNone = UIAccessibilityTraits.none
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:61:30: error: cannot find type 'UIVisualEffectView' in scope
 59 |     }()
 60 |
 61 |     private let contentView: UIVisualEffectView = UIVisualEffectView()
    |                              `- error: cannot find type 'UIVisualEffectView' in scope
 62 |     private let contentStackView: UIStackView = UIStackView()
 63 |
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:62:35: error: cannot find type 'UIStackView' in scope
 60 |
 61 |     private let contentView: UIVisualEffectView = UIVisualEffectView()
 62 |     private let contentStackView: UIStackView = UIStackView()
    |                                   `- error: cannot find type 'UIStackView' in scope
 63 |
 64 |     private var imageView: UIImageView? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:64:28: error: cannot find type 'UIImageView' in scope
 62 |     private let contentStackView: UIStackView = UIStackView()
 63 |
 64 |     private var imageView: UIImageView? = nil
    |                            `- error: cannot find type 'UIImageView' in scope
 65 |     private var titleLabel: UILabel? = nil
 66 |     private var messageLabel: UILabel? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:65:29: error: cannot find type 'UILabel' in scope
 63 |
 64 |     private var imageView: UIImageView? = nil
 65 |     private var titleLabel: UILabel? = nil
    |                             `- error: cannot find type 'UILabel' in scope
 66 |     private var messageLabel: UILabel? = nil
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:66:31: error: cannot find type 'UILabel' in scope
 64 |     private var imageView: UIImageView? = nil
 65 |     private var titleLabel: UILabel? = nil
 66 |     private var messageLabel: UILabel? = nil
    |                               `- error: cannot find type 'UILabel' in scope
 67 |
 68 |     private var contentStackViewConstraints: [NSLayoutConstraint] = []
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift:68:47: error: cannot find type 'NSLayoutConstraint' in scope
 66 |     private var messageLabel: UILabel? = nil
 67 |
 68 |     private var contentStackViewConstraints: [NSLayoutConstraint] = []
    |                                               `- error: cannot find type 'NSLayoutConstraint' in scope
 69 |     private var reusableObjectsConstraints: [NSLayoutConstraint] = []
 70 |
SwiftCompile normal armv7k Compiling\ UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.dia -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/armv7k/UIDevice+Blur.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift:3:11: error: cannot find type 'UIDevice' in scope
extension UIDevice {
          ^~~~~~~~
SwiftCompile normal arm64_32 Compiling\ StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ StatusAlert (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift:3:11: error: cannot find type 'UIDevice' in scope
 1 | import UIKit
 2 |
 3 | extension UIDevice {
   |           `- error: cannot find type 'UIDevice' in scope
 4 |
 5 |     /// If the device is able to display blur:
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift:7:11: error: cannot find type 'UIDevice' in scope
  5 | }
  6 |
  7 | extension UIDevice {
    |           `- error: cannot find type 'UIDevice' in scope
  8 |     enum DevicePlatform {
  9 |
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift:71:6: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 69 |     }
 70 |
 71 |     @objc (StatusAlertSizesAndDistances)
    |      `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 72 |     public final class SizesAndDistances: NSObject {
 73 |
SwiftCompile normal arm64 Compiling\ UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/UIDevice+Platform.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Blur.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift:3:11: error: cannot find type 'UIDevice' in scope
extension UIDevice {
          ^~~~~~~~
SwiftCompile normal arm64_32 Compiling\ UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Platform.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Platform.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Platform.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Platform.dia -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Platform.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64_32/UIDevice+Platform.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift (in target 'StatusAlert' from project 'StatusAlert')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Platform.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlert.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/StatusAlertUtils.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.dia -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StatusAlert -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.o -index-unit-output-path /StatusAlert.build/Debug-watchos/StatusAlert.build/Objects-normal/arm64/StatusAlert.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'StatusAlert' from project 'StatusAlert')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal armv7k Compiling\ UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 Compiling\ UIDevice+Blur.swift /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/StatusAlert/Extensions/UIDevice+Blur.swift (in target 'StatusAlert' from project 'StatusAlert')
(4 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.