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 Notifly, reference 0.2.0 (88819e), with Swift 5.10 for watchOS using Xcode 15.4 on 2 Feb 2025 20:03:19 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.4.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Notifly -destination generic/platform=watchOS

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:29:30: error: cannot find type 'NSLayoutConstraint' in scope
    var contentConstraints: [NSLayoutConstraint] = []
                             ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:32:27: error: cannot find 'UILabel' in scope
    open var titleLabel = UILabel()
                          ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:80:20: error: cannot find type 'UIViewController' in scope
        on parent: UIViewController? = nil,
                   ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:98:24: error: method does not override any method from its superclass
    override open func layoutSubviews() {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:111:24: error: method does not override any method from its superclass
    override open func systemLayoutSizeFitting(_ targetSize: CGSize) -> CGSize {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:83:19: error: extra arguments at positions #1, #2, #3, #4 in call
        super.init(direction: direction, presentation: presenter, queue: queue, on: parent)
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:123:21: note: 'init(coder:)' declared here
    public required init?(coder: NSCoder) {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:83:20: error: missing argument for parameter 'coder' in call
        super.init(direction: direction, presentation: presenter, queue: queue, on: parent)
                   ^
                   coder: <#NSCoder#>,
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:123:21: note: 'init(coder:)' declared here
    public required init?(coder: NSCoder) {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:86:14: error: value of type 'SimpleNotifly' has no member 'backgroundColor'
        self.backgroundColor = backgroundColor
        ~~~~ ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:99:15: error: value of type 'NotiflyBase' has no member 'layoutSubviews'
        super.layoutSubviews()
        ~~~~~ ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:100:9: error: cannot find 'layer' in scope
        layer.cornerRadius = frame.size.height / 2
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:100:30: error: cannot find 'frame' in scope
        layer.cornerRadius = frame.size.height / 2
                             ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:101:9: error: cannot find 'layer' in scope
        layer.masksToBounds = true
        ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:114:22: error: value of type 'NotiflyBase' has no member 'systemLayoutSizeFitting'
        return super.systemLayoutSizeFitting(targetSize)
               ~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:120:13: error: cannot find 'addSubview' in scope
            addSubview(titleLabel)
            ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:123:28: error: cannot infer contextual base in reference to member 'systemFont'
        titleLabel.font = .systemFont(ofSize: 17, weight: .medium)
                          ~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:123:60: error: cannot infer contextual base in reference to member 'medium'
        titleLabel.font = .systemFont(ofSize: 17, weight: .medium)
                                                          ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:134:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.deactivate(contentConstraints)
        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:136:58: error: cannot find 'leadingAnchor' in scope
            titleLabel.leadingAnchor.constraint(equalTo: leadingAnchor, constant: contentInsets.left),
                                                         ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:137:59: error: cannot find 'trailingAnchor' in scope
            titleLabel.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -contentInsets.right),
                                                          ^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:138:54: error: cannot find 'topAnchor' in scope
            titleLabel.topAnchor.constraint(equalTo: topAnchor, constant: contentInsets.top),
                                                     ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:139:57: error: cannot find 'bottomAnchor' in scope
            titleLabel.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -contentInsets.bottom)
                                                        ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:142:9: error: cannot find 'NSLayoutConstraint' in scope
        NSLayoutConstraint.activate(contentConstraints)
        ^~~~~~~~~~~~~~~~~~
SwiftCompile normal armv7k Compiling\ NotiflyBackgroundView+GradientLayer.swift,\ NotiflyBackgroundView.swift,\ Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-10 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.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/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-10 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:15:17: error: cannot find 'colors' in scope
                colors = gradientColors?.map { $0.cgColor }
                ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:21:17: error: cannot find 'locations' in scope
                locations = gradientLocations?.map { NSNumber(value: Float($0)) }
                ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:27:17: error: cannot find 'startPoint' in scope
                startPoint = gradientDirection.startPoint
                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:28:17: error: cannot find 'endPoint' in scope
                endPoint = gradientDirection.endPoint
                ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:12:26: error: cannot find type 'CAGradientLayer' in scope
    class GradientLayer: CAGradientLayer {
                         ^~~~~~~~~~~~~~~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-10 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:54:25: error: property does not override any property from its superclass
    override public var backgroundColor: UIColor? {
    ~~~~~~~~            ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:56:28: error: value of type 'NotiflyBackgroundView.GradientLayer' has no member 'removeFromSuperlayer'
            gradientLayer?.removeFromSuperlayer()
            ~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:63:26: error: method does not override any method from its superclass
    override public func layoutSubviews() {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:12:37: error: cannot find type 'UIView' in scope
public class NotiflyBackgroundView: UIView {
                                    ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Notifications/Notifly/Background/NotiflyBackgroundView.swift:64:9: error: 'super' members cannot be referenced in a root class
        super.layoutSubviews()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:68:27: error: cannot find 'bounds' in scope
            layer.frame = bounds
                          ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:68:19: error: value of type 'NotiflyBackgroundView.GradientLayer' has no member 'frame'
            layer.frame = bounds
            ~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:69:19: error: value of type 'NotiflyBackgroundView.GradientLayer' has no member 'cornerRadius'
            layer.cornerRadius = self.layer.cornerRadius
            ~~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:69:39: error: value of type 'NotiflyBackgroundView' has no member 'layer'
            layer.cornerRadius = self.layer.cornerRadius
                                 ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:78:31: error: cannot find 'frame' in scope
            gradient.bounds = frame
                              ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:78:22: error: value of type 'NotiflyBackgroundView.GradientLayer' has no member 'bounds'
            gradient.bounds = frame
            ~~~~~~~~ ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:79:13: error: cannot find 'layer' in scope
            layer.insertSublayer(gradient, at: 0)
            ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:91:17: error: cannot find 'layer' in scope
                layer.cornerRadius = 0.5 * frame.size.height
                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:91:44: error: cannot find 'frame' in scope
                layer.cornerRadius = 0.5 * frame.size.height
                                           ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:93:17: error: cannot find 'layer' in scope
                layer.cornerRadius = value
                ^~~~~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-10 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView+GradientLayer.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyBackgroundView.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly+Configuration.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:60:28: error: cannot find type 'UIStackView' in scope
            textAlignment: UIStackView.Alignment = .center,
                           ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:61:31: error: cannot find type 'UIStackView' in scope
            contentAlignment: UIStackView.Alignment = .center,
                              ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:41:35: error: cannot find type 'UIStackView' in scope
        public var textAlignment: UIStackView.Alignment
                                  ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:44:38: error: cannot find type 'UIStackView' in scope
        public var contentAlignment: UIStackView.Alignment
                                     ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:53:36: error: type 'UIColor' has no member 'label'
            titleColor: UIColor = .label,
                                  ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:55:39: error: type 'UIColor' has no member 'secondaryLabel'
            subtitleColor: UIColor = .secondaryLabel,
                                     ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:84:26: error: cannot infer contextual base in reference to member 'white'
            titleColor: .white,
                        ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:85:29: error: cannot infer contextual base in reference to member 'white'
            subtitleColor: .white,
                           ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:86:28: error: cannot infer contextual base in reference to member 'systemFont'
            subtitleFont: .systemFont(ofSize: 14),
                          ~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:87:31: error: cannot infer contextual base in reference to member 'default'
            backgroundColor: .default(UIColor(red: 85 / 255, green: 159 / 255, blue: 255 / 255, alpha: 1)),
                             ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:89:28: error: cannot infer contextual base in reference to member 'radius'
            cornerRadius: .radius(10),
                          ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:90:29: error: cannot infer contextual base in reference to member 'leading'
            textAlignment: .leading,
                           ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:91:32: error: cannot infer contextual base in reference to member 'center'
            contentAlignment: .center
                              ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:98:26: error: cannot infer contextual base in reference to member 'white'
            titleColor: .white,
                        ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:99:29: error: cannot infer contextual base in reference to member 'white'
            subtitleColor: .white,
                           ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:100:28: error: cannot infer contextual base in reference to member 'systemFont'
            subtitleFont: .systemFont(ofSize: 14),
                          ~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:101:31: error: cannot infer contextual base in reference to member 'default'
            backgroundColor: .default(UIColor(red: 42 / 255, green: 187 / 255, blue: 143 / 255, alpha: 1)),
                             ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:103:28: error: cannot infer contextual base in reference to member 'radius'
            cornerRadius: .radius(10),
                          ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:104:29: error: cannot infer contextual base in reference to member 'leading'
            textAlignment: .leading,
                           ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:105:32: error: cannot infer contextual base in reference to member 'center'
            contentAlignment: .center
                              ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:112:26: error: cannot infer contextual base in reference to member 'white'
            titleColor: .white,
                        ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:113:29: error: cannot infer contextual base in reference to member 'white'
            subtitleColor: .white,
                           ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:114:28: error: cannot infer contextual base in reference to member 'systemFont'
            subtitleFont: .systemFont(ofSize: 14),
                          ~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:115:31: error: cannot infer contextual base in reference to member 'default'
            backgroundColor: .default(UIColor(red: 216 / 255, green: 92 / 255, blue: 90 / 255, alpha: 1)),
                             ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:117:28: error: cannot infer contextual base in reference to member 'radius'
            cornerRadius: .radius(10),
                          ~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:118:29: error: cannot infer contextual base in reference to member 'leading'
            textAlignment: .leading,
                           ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:119:32: error: cannot infer contextual base in reference to member 'center'
            contentAlignment: .center
                              ~^~~~~~
SwiftCompile normal armv7k Compiling\ UIColor+Notifly.swift,\ UIEdgeInsets+Notifly.swift,\ NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-1 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.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/Extension/UIColor+Notifly.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-1 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift:23:16: error: no exact matches in call to initializer
        return UIColor { traitCollection in
               ^
UIKit.UIColor:36:12: note: candidate expects value of type 'CGColor' for parameter #1 (got '(_) -> UIColor')
    public init(cgColor: CGColor)
           ^
UIKit.UIColor:39:12: note: candidate expects value of type 'UIImage' for parameter #1 (got '(_) -> UIColor')
    public init(patternImage image: UIImage)
           ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-1 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.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/Feedback/NotiflyFeedback.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/supplementaryOutputs-1 -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyFeedback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:17:24: error: cannot find type 'UIImpactFeedbackGenerator' in scope
    case impact(style: UIImpactFeedbackGenerator.FeedbackStyle)
                       ^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:23:29: error: cannot find type 'UINotificationFeedbackGenerator' in scope
    case notification(type: UINotificationFeedbackGenerator.FeedbackType)
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:36:33: error: cannot find 'UIImpactFeedbackGenerator' in scope
                let generator = UIImpactFeedbackGenerator(style: style)
                                ^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:41:33: error: cannot find 'UISelectionFeedbackGenerator' in scope
                let generator = UISelectionFeedbackGenerator()
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:46:33: error: cannot find 'UINotificationFeedbackGenerator' in scope
                let generator = UINotificationFeedbackGenerator()
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal armv7k Compiling\ NotiflyScalePresenter.swift,\ NotiflyState.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.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/Presenter/NotiflyScalePresenter.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:15:75: error: cannot find type 'UIView' in scope
    override public func prepare(notification: NotiflyBase, in superview: UIView) {
                                                                          ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:15:26: error: method does not override any method from its superclass
    override public func prepare(notification: NotiflyBase, in superview: UIView) {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:20:101: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:20:90: error: cannot find type 'UIView' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                         ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:20:26: error: method does not override any method from its superclass
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:31:96: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                               ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:31:85: error: cannot find type 'UIView' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                    ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:31:26: error: method does not override any method from its superclass
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift:63:66: error: cannot find type 'UIView' in scope
    func finalFrame(for notification: NotiflyBase, in superview: UIView) -> CGRect {
                                                                 ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:16:22: error: value of type 'NotiflyBase' has no member 'frame'
        notification.frame = finalFrame(for: notification, in: superview)
        ~~~~~~~~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:17:22: error: value of type 'NotiflyBase' has no member 'transform'
        notification.transform = transform
        ~~~~~~~~~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:21:24: error: cannot find 'UIViewPropertyAnimator' in scope
        let animator = UIViewPropertyAnimator(duration: animationDuration, curve: .easeInOut)
                       ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:21:84: error: cannot infer contextual base in reference to member 'easeInOut'
        let animator = UIViewPropertyAnimator(duration: animationDuration, curve: .easeInOut)
                                                                                  ~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:24:26: error: value of type 'NotiflyBase' has no member 'transform'
            notification.transform = .identity
            ~~~~~~~~~~~~ ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:24:39: error: cannot infer contextual base in reference to member 'identity'
            notification.transform = .identity
                                     ~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:32:24: error: cannot find 'UIViewPropertyAnimator' in scope
        let animator = UIViewPropertyAnimator(duration: animationDuration, curve: .easeOut) { [weak self] in
                       ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:32:84: error: cannot infer contextual base in reference to member 'easeOut'
        let animator = UIViewPropertyAnimator(duration: animationDuration, curve: .easeOut) { [weak self] in
                                                                                  ~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:34:26: error: value of type 'NotiflyBase' has no member 'frame'
            notification.frame = self.finalFrame(for: notification, in: superview)
            ~~~~~~~~~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift:30:54: error: cannot find type 'UIView' in scope
    func present(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?)
                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyPresenter.swift:38:54: error: cannot find type 'UIView' in scope
    func dismiss(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?)
                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyScalePresenter.o -index-unit-output-path /Notifly.build/Debug-watchos/Notifly.build/Objects-normal/armv7k/NotiflyState.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift:30:54: error: cannot find type 'UIView' in scope
    func present(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?)
                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyPresenter.swift:38:54: error: cannot find type 'UIView' in scope
    func dismiss(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?)
                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
SwiftEmitModule normal arm64 Emitting\ module\ for\ Notifly (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:17:24: error: cannot find type 'UIImpactFeedbackGenerator' in scope
    case impact(style: UIImpactFeedbackGenerator.FeedbackStyle)
                       ^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:23:29: error: cannot find type 'UINotificationFeedbackGenerator' in scope
    case notification(type: UINotificationFeedbackGenerator.FeedbackType)
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:15:17: error: cannot find 'colors' in scope
                colors = gradientColors?.map { $0.cgColor }
                ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:21:17: error: cannot find 'locations' in scope
                locations = gradientLocations?.map { NSNumber(value: Float($0)) }
                ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:27:17: error: cannot find 'startPoint' in scope
                startPoint = gradientDirection.startPoint
                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:28:17: error: cannot find 'endPoint' in scope
                endPoint = gradientDirection.endPoint
                ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift:12:26: error: cannot find type 'CAGradientLayer' in scope
    class GradientLayer: CAGradientLayer {
                         ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:54:25: error: property does not override any property from its superclass
    override public var backgroundColor: UIColor? {
    ~~~~~~~~            ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:56:28: error: value of type 'NotiflyBackgroundView.GradientLayer' has no member 'removeFromSuperlayer'
            gradientLayer?.removeFromSuperlayer()
            ~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:63:26: error: method does not override any method from its superclass
    override public func layoutSubviews() {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift:12:37: error: cannot find type 'UIView' in scope
public class NotiflyBackgroundView: UIView {
                                    ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Notifications/Notifly/Notifly+Configuration.swift:60:28: error: cannot find type 'UIStackView' in scope
            textAlignment: UIStackView.Alignment = .center,
                           ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:61:31: error: cannot find type 'UIStackView' in scope
            contentAlignment: UIStackView.Alignment = .center,
                              ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:41:35: error: cannot find type 'UIStackView' in scope
        public var textAlignment: UIStackView.Alignment
                                  ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:44:38: error: cannot find type 'UIStackView' in scope
        public var contentAlignment: UIStackView.Alignment
                                     ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:53:36: error: type 'UIColor' has no member 'label'
            titleColor: UIColor = .label,
                                  ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift:55:39: error: type 'UIColor' has no member 'secondaryLabel'
            subtitleColor: UIColor = .secondaryLabel,
                                     ~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:112:28: error: cannot find type 'UIViewController' in scope
                on parent: UIViewController? = nil) {
                           ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:15:38: error: cannot find type 'NSLayoutConstraint' in scope
    private var contentConstraints: [NSLayoutConstraint] = []
                                     ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:17:36: error: cannot find 'UIStackView' in scope
    private let contentStackView = UIStackView()
                                   ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:18:34: error: cannot find 'UIStackView' in scope
    private let labelStackView = UIStackView()
                                 ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:19:30: error: cannot find 'UILabel' in scope
    private let titleLabel = UILabel()
                             ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:20:33: error: cannot find 'UILabel' in scope
    private let subtitleLabel = UILabel()
                                ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:21:29: error: cannot find 'UIImageView' in scope
    private let imageView = UIImageView()
                            ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:25:23: error: property does not override any property from its superclass
    override open var layoutMargins: UIEdgeInsets {
    ~~~~~~~~          ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:30:23: error: property does not override any property from its superclass
    override open var backgroundColor: UIColor? {
    ~~~~~~~~          ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:35:25: error: property does not override any property from its superclass
    override public var insetsLayoutMarginsFromSafeArea: Bool {
    ~~~~~~~~            ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:72:107: error: cannot find type 'UILayoutPriority' in scope
                                                 withHorizontalFittingPriority horizontalFittingPriority: UILayoutPriority,
                                                                                                          ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:73:75: error: cannot find type 'UILayoutPriority' in scope
                                                 verticalFittingPriority: UILayoutPriority) -> CGSize {
                                                                          ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:71:26: error: method does not override any method from its superclass
    override public func systemLayoutSizeFitting(_ targetSize: CGSize,
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift:95:20: error: cannot find type 'UIViewController' in scope
        on parent: UIViewController? = nil,
                   ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:15:36: error: cannot find type 'NSLayoutConstraint' in scope
    private var labelConstraints: [NSLayoutConstraint] = []
                                   ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:16:41: error: cannot find type 'NSLayoutConstraint' in scope
    private var customViewConstraints: [NSLayoutConstraint] = []
                                        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:17:36: error: cannot find type 'NSLayoutConstraint' in scope
    private var stackConstraints: [NSLayoutConstraint] = []
                                   ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:49:42: error: cannot find 'UILabel' in scope
    public private(set) var titleLabel = UILabel()
                                         ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:50:45: error: cannot find 'UILabel' in scope
    public private(set) var subtitleLabel = UILabel()
                                            ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:52:41: error: cannot find 'UIStackView' in scope
    private(set) var buttonsStackView = UIStackView()
                                        ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:54:78: error: value of type 'NotiflyCard' has no member 'frame'
    private lazy var exitButtonReact: CGRect = .init(origin: CGPoint(x: self.frame.width - 21 - exitButtonSize.width, y: 16 + exitButtonSize.height), size: exitButtonSize)
                                                                        ~~~~ ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:69:13: error: cannot find 'setNeedsDisplay' in scope
            setNeedsDisplay()
            ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:76:13: error: cannot find 'setNeedsDisplay' in scope
            setNeedsDisplay()
            ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:81:28: error: cannot find type 'UIView' in scope
    public var customView: UIView? {
                           ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Notifications/NotiflyCardNotification/NotiflyCard.swift:110:22: error: cannot find type 'UIViewController' in scope
                 on: UIViewController?) {
                     ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:132:24: error: method does not override any method from its superclass
    override open func layoutSubviews() {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:152:38: error: cannot find type 'UIView' in scope
    func setCustomView(_ customView: UIView?) {
                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Notifications/NotiflyCardNotification/NotiflyCard.swift:165:24: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
    @objc private func didTapButton(_ button: NotiflyCardButton) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:165:47: note: classes not annotated with @objc cannot be represented in Objective-C
    @objc private func didTapButton(_ button: NotiflyCardButton) {
                                              ^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:273:47: error: cannot find type 'UITouch' in scope
    override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                                              ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:273:69: error: cannot find type 'UIEvent' in scope
    override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                                    ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:273:19: error: method does not override any method from its superclass
    override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:288:19: error: method does not override any method from its superclass
    override func draw(_ rect: CGRect) {
    ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:370:38: error: cannot find type 'UIStackView' in scope
    dynamic var buttonsDistribution: UIStackView.Distribution {
                                     ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:376:34: error: cannot find type 'UIStackView' in scope
    dynamic var buttonsAligment: UIStackView.Alignment {
                                 ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:382:30: error: cannot find type 'NSLayoutConstraint' in scope
    dynamic var buttonsAxis: NSLayoutConstraint.Axis {
                             ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift:401:25: error: cannot find type 'UIView' in scope
        case customView(UIView)
                        ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Notifications/NotiflyCardNotification/NotiflyCard.swift:405:25: error: cannot find type 'NSLayoutConstraint' in scope
        case buttonAxis(NSLayoutConstraint.Axis)
                        ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift:21:25: error: property does not override any property from its superclass
    override public var tintColor: UIColor! {
    ~~~~~~~~            ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift:48:21: error: initializer does not override a designated initializer from its superclass
    override public init(frame: CGRect) {
    ~~~~~~~~        ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift:84:54: error: cannot find type 'UITouch' in scope
    override public func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                     ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift:84:76: error: cannot find type 'UIEvent' in scope
    override public func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                                           ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift:84:26: error: method does not override any method from its superclass
    override public func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift:10:33: error: cannot find type 'UIButton' in scope
public class NotiflyCardButton: UIButton {
                                ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:29:30: error: cannot find type 'NSLayoutConstraint' in scope
    var contentConstraints: [NSLayoutConstraint] = []
                             ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:32:27: error: cannot find 'UILabel' in scope
    open var titleLabel = UILabel()
                          ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:80:20: error: cannot find type 'UIViewController' in scope
        on parent: UIViewController? = nil,
                   ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:98:24: error: method does not override any method from its superclass
    override open func layoutSubviews() {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift:111:24: error: method does not override any method from its superclass
    override open func systemLayoutSizeFitting(_ targetSize: CGSize) -> CGSize {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:17:60: error: cannot infer contextual base in reference to member 'light'
    public var feedback: NotiflyFeedback = .impact(style: .light)
                                                          ~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:35:27: error: cannot find type 'UISwipeGestureRecognizer' in scope
    public var onSwipe: ((UISwipeGestureRecognizer) -> Void)?
                          ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:68:41: error: cannot find type 'UIViewController' in scope
    open weak var parentViewController: UIViewController?
                                        ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift:30:54: error: cannot find type 'UIView' in scope
    func present(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?)
                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyPresenter.swift:38:54: error: cannot find type 'UIView' in scope
    func dismiss(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?)
                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/NotiflyBase.swift:88:38: error: cannot find 'UIScreen' in scope
    private let screenSize: CGSize = UIScreen.main.bounds.size
                                     ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:94:33: error: cannot find type 'UIView' in scope
    private weak var appWindow: UIView? = (UIApplication.shared.connectedScenes
                                ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/NotiflyBase.swift:12:25: error: cannot find type 'UIControl' in scope
open class NotiflyBase: UIControl {
                        ^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:267:28: error: cannot find type 'UIView' in scope
    public var parentView: UIView? {
                           ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/NotiflyBase.swift:285:54: error: cannot find type 'UISwipeGestureRecognizer' in scope
    @objc open func onSwipeGestureRecognizer(sender: UISwipeGestureRecognizer) {
                                                     ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:285:11: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
    @objc open func onSwipeGestureRecognizer(sender: UISwipeGestureRecognizer) {
          ^~~~
          public
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:299:52: error: cannot find type 'UITouch' in scope
    override open func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                   ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:299:74: error: cannot find type 'UIEvent' in scope
    override open func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                                         ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:299:14: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
    override open func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
             ^~~~
             public
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:299:24: error: method does not override any method from its superclass
    override open func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:312:52: error: cannot find type 'UITouch' in scope
    override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                   ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:312:74: error: cannot find type 'UIEvent' in scope
    override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                                         ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:312:14: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
    override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
             ^~~~
             public
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:312:24: error: method does not override any method from its superclass
    override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:322:52: error: cannot find type 'UITouch' in scope
    override open func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                   ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:322:74: error: cannot find type 'UIEvent' in scope
    override open func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                                         ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:322:14: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
    override open func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
             ^~~~
             public
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:322:24: error: method does not override any method from its superclass
    override open func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:338:56: error: cannot find type 'UITouch' in scope
    override open func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                       ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:338:78: error: cannot find type 'UIEvent' in scope
    override open func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
                                                                             ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:338:14: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
    override open func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
             ^~~~
             public
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:338:24: error: method does not override any method from its superclass
    override open func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
    ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:17:101: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:17:90: error: cannot find type 'UIView' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                         ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyBouncePresenter.swift:17:26: error: method does not override any method from its superclass
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:31:96: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                               ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:31:85: error: cannot find type 'UIView' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                    ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyBouncePresenter.swift:31:26: error: method does not override any method from its superclass
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift:23:24: error: cannot find type 'UIViewAnimating' in scope
    weak var animator: UIViewAnimating?
                       ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift:32:61: error: cannot find type 'UIView' in scope
    public func present(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?) {
                                                            ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyDefaultPresenter.swift:51:61: error: cannot find type 'UIView' in scope
    public func dismiss(notification: NotiflyBase, in view: UIView, completion: (() -> Void)?) {
                                                            ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyDefaultPresenter.swift:71:64: error: cannot find type 'UIView' in scope
    open func prepare(notification: NotiflyBase, in superview: UIView) {
                                                               ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyDefaultPresenter.swift:81:90: error: cannot find type 'UIViewPropertyAnimator' in scope
    open func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                         ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift:81:79: error: cannot find type 'UIView' in scope
    open func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                              ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyDefaultPresenter.swift:98:85: error: cannot find type 'UIViewPropertyAnimator' in scope
    open func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift:98:74: error: cannot find type 'UIView' in scope
    open func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                         ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyDefaultPresenter.swift:121:81: error: cannot find type 'UIView' in scope
    private func presentNotification(_ notification: NotiflyBase, in superview: UIView, _ completion: (() -> Void)?) {
                                                                                ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyDefaultPresenter.swift:133:81: error: cannot find type 'UIView' in scope
    private func dismissNotification(_ notification: NotiflyBase, in superview: UIView, _ completion: (() -> Void)?) {
                                                                                ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyFadePresenter.swift:16:75: error: cannot find type 'UIView' in scope
    override public func prepare(notification: NotiflyBase, in superview: UIView) {
                                                                          ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyFadePresenter.swift:16:26: error: method does not override any method from its superclass
    override public func prepare(notification: NotiflyBase, in superview: UIView) {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift:21:101: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift:21:90: error: cannot find type 'UIView' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                         ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyFadePresenter.swift:21:26: error: method does not override any method from its superclass
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift:32:96: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                               ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift:32:85: error: cannot find type 'UIView' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                    ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyFadePresenter.swift:32:26: error: method does not override any method from its superclass
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift:45:70: error: cannot find type 'UIView' in scope
    func adjustPosition(for notification: NotiflyBase, in superview: UIView) {
                                                                     ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyPresenter.swift:63:66: error: cannot find type 'UIView' in scope
    func finalFrame(for notification: NotiflyBase, in superview: UIView) -> CGRect {
                                                                 ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyPresenter.swift:88:68: error: cannot find type 'UIView' in scope
    func initialFrame(for notification: NotiflyBase, in superview: UIView) -> CGRect {
                                                                   ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:15:75: error: cannot find type 'UIView' in scope
    override public func prepare(notification: NotiflyBase, in superview: UIView) {
                                                                          ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:15:26: error: method does not override any method from its superclass
    override public func prepare(notification: NotiflyBase, in superview: UIView) {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:20:101: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                                    ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:20:90: error: cannot find type 'UIView' in scope
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                         ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:20:26: error: method does not override any method from its superclass
    override public func presentationAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:31:96: error: cannot find type 'UIViewPropertyAnimator' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                               ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift:31:85: error: cannot find type 'UIView' in scope
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
                                                                                    ^~~~~~
/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.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/Presenter/NotiflyScalePresenter.swift:31:26: error: method does not override any method from its superclass
    override public func dismissAnimator(_ notification: NotiflyBase, in superview: UIView) -> UIViewPropertyAnimator {
    ~~~~~~~~             ^
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Notifly (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+IconSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCard.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyDefaultPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyFadePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -package-name spi_builder_workspace -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly_const_extract_protocols.json -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 /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -disable-clang-spi -target-sdk-version 10.5 -target-sdk-name watchos10.5 -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64_32/Notifly.abi.json
Command SwiftEmitModule failed with a nonzero exit code
SwiftDriver\ Compilation\ Requirements Notifly normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.4.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Notifly -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -sdk /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.4.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.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.4.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.5.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.5-21T569-607812366920c826b3ec796033b57e80.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly-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/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xfrontend -package-name -Xfrontend spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly_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/Notifly.build/Debug-watchos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-watchos/Notifly.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/Notifly.build/Debug-watchos/Notifly.build/Objects-normal/arm64/Notifly-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k Compiling\ NotiflyBase.swift,\ NotiflyDelegate.swift,\ NotiflyDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k Compiling\ NotiflyQueue.swift,\ NotiflyType.swift,\ NotiflyBouncePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k Compiling\ NotiflyCardButton.swift,\ NotiflyFullWidth.swift,\ SimpleNotifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyCardNotification/NotiflyCardButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/NotiflyFullWidth/NotiflyFullWidth.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/SimpleNotifly/SimpleNotifly.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k Compiling\ NotiflyBackgroundView+GradientLayer.swift,\ NotiflyBackgroundView.swift,\ Notifly+Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView.swift /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Notifly+Configuration.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k Compiling\ UIColor+Notifly.swift,\ UIEdgeInsets+Notifly.swift,\ NotiflyFeedback.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k Compiling\ NotiflyScalePresenter.swift,\ NotiflyState.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyScalePresenter.swift (in target 'Notifly' from project 'Notifly')
	SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyState.swift (in target 'Notifly' from project 'Notifly')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ Notifly (in target 'Notifly' from project 'Notifly')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Notifly (in target 'Notifly' from project 'Notifly')
(22 failures)
BUILD FAILURE 5.10 watchOS