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

Successful build of Notifly, reference 0.2.0 (88819e), with Swift 6.0 for iOS using Xcode 16.2 on 2 Feb 2025 20:04:06 UTC.

Swift 6 data race errors: 2

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Notifly -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    public final func dismiss(showNext: Bool = true, completion: (() -> Void)? = nil) {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:58:15: note: add '@MainActor' to make instance method 'addNotification(_:queuePosition:)' part of global actor 'MainActor'
    open func addNotification(_ notification: NotiflyBase, queuePosition: QueuePosition) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:78:26: warning: call to main actor-isolated instance method 'present(placeOnQueue:queuePosition:_:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            notification.present(placeOnQueue: false)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:135:23: note: calls to instance method 'present(placeOnQueue:queuePosition:_:)' from outside of its actor context are implicitly asynchronous
    public final func present(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:58:15: note: add '@MainActor' to make instance method 'addNotification(_:queuePosition:)' part of global actor 'MainActor'
    open func addNotification(_ notification: NotiflyBase, queuePosition: QueuePosition) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:104:45: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let superview = notification.superview {
                                            ^
UIKit.UIView:2:25: note: property declared here
    @MainActor open var superview: UIView? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:100:15: note: add '@MainActor' to make instance method 'layoutPresentedNotificationsIfNeeded' part of global actor 'MainActor'
    open func layoutPresentedNotificationsIfNeeded(_ exclude: NotiflyBase? = nil) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:105:30: warning: main actor-isolated property 'presenter' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                notification.presenter.adjustPosition(for: notification, in: superview)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:85:9: note: property declared here
    let presenter: NotiflyPresenter
        ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:100:15: note: add '@MainActor' to make instance method 'layoutPresentedNotificationsIfNeeded' part of global actor 'MainActor'
    open func layoutPresentedNotificationsIfNeeded(_ exclude: NotiflyBase? = nil) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:112:45: warning: call to main actor-isolated instance method 'dismiss(showNext:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        presentedNotifications.forEach { $0.dismiss(showNext: false) }
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:152:23: note: calls to instance method 'dismiss(showNext:completion:)' from outside of its actor context are implicitly asynchronous
    public final func dismiss(showNext: Bool = true, completion: (() -> Void)? = nil) {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:119:26: warning: call to main actor-isolated instance method 'present(placeOnQueue:queuePosition:_:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            notification.present()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:135:23: note: calls to instance method 'present(placeOnQueue:queuePosition:_:)' from outside of its actor context are implicitly asynchronous
    public final func present(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:117:18: note: add '@MainActor' to make instance method 'showNext()' part of global actor 'MainActor'
    private func showNext() {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:127:35: warning: main actor-isolated property 'presentationState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        notifications.filter { $0.presentationState == .presented || $0.presentationState == .presenting }.first
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:44:16: note: property declared here
    public var presentationState: NotiflyState {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:127:73: warning: main actor-isolated property 'presentationState' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        notifications.filter { $0.presentationState == .presented || $0.presentationState == .presenting }.first
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:44:16: note: property declared here
    public var presentationState: NotiflyState {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:134:42: warning: main actor-isolated property 'presentationState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return notifications.filter { $0.presentationState == .idle }.first
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:44:16: note: property declared here
    public var presentationState: NotiflyState {
               ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-8 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyQueue.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyType.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBouncePresenter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyQueue.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyType.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBouncePresenter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyType.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-8 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyQueue.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyType.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBouncePresenter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyQueue.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyType.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBouncePresenter.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/NotiflyBouncePresenter.swift:18:24: warning: call to main actor-isolated initializer 'init(duration:timingParameters:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let animator = UIViewPropertyAnimator(
                       ^
UIKit.UIViewPropertyAnimator:19:23: note: calls to initializer 'init(duration:timingParameters:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(duration: TimeInterval, timingParameters parameters: any UITimingCurveProvider)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:20:31: warning: call to main actor-isolated initializer 'init(dampingRatio:initialVelocity:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            timingParameters: UISpringTimingParameters(dampingRatio: 0.5, initialVelocity: CGVector(dx: 1.0, dy: 0.0))
                              ^
UIKit.UISpringTimingParameters:6:23: note: calls to initializer 'init(dampingRatio:initialVelocity:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(dampingRatio ratio: CGFloat, initialVelocity velocity: CGVector)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:23:18: warning: call to main actor-isolated instance method 'addAnimations' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        animator.addAnimations { [weak self, notification] in
                 ^
UIKit.UIViewPropertyAnimator:27:26: note: calls to instance method 'addAnimations' from outside of its actor context are implicitly asynchronous
    @MainActor open func addAnimations(_ animation: @escaping () -> Void)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:25:26: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            notification.frame = self.finalFrame(for: notification, in: superview)
                         ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:32:24: warning: call to main actor-isolated initializer 'init(duration:curve:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let animator = UIViewPropertyAnimator(duration: animationDuration, curve: .easeOut) { [weak self] in
                       ^
UIKit.UIViewPropertyAnimator:20:24: note: calls to initializer 'init(duration:curve:animations:)' from outside of its actor context are implicitly asynchronous
    public convenience init(duration: TimeInterval, curve: UIView.AnimationCurve, animations: (() -> Void)? = nil)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:35:106: warning: main actor-isolated property 'direction' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let offset = self.offsetForNotifications(notification: notification, direction: notification.direction)
                                                                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:38:16: note: property declared here
    public var direction: NotiflyDirection
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:37:33: warning: main actor-isolated property 'direction' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            switch notification.direction {
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift:38:16: note: property declared here
    public var direction: NotiflyDirection
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:39:34: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    notification.frame.origin.y = initialRect.origin.y - offset
                                 ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:42:34: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    notification.frame.origin.y = initialRect.origin.y + offset
                                 ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:23:18: warning: sending task-isolated value of type '() -> Void' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
        animator.addAnimations { [weak self, notification] in
        ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Presenter/NotiflyBouncePresenter.swift:32:24: warning: sending task-isolated value of type '() -> Void' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
        let animator = UIViewPropertyAnimator(duration: animationDuration, curve: .easeOut) { [weak self] in
                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 Compiling\ NotiflyBackgroundView+BackgroundColor.swift,\ NotiflyBackgroundView+CornerRadius.swift,\ NotiflyBackgroundView+GradientDirection.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 (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+BackgroundColor.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+CornerRadius.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBackgroundView+GradientDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SYBannerFeedbackGenerator.swift,\ NotiflyDefaultHighlighter.swift,\ NotiflyHighlighter.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 (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:69:16: warning: call to main actor-isolated class method 'animate(withDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIView.animate(withDuration: animationDuration, animations: {
               ^
UIKit.UIView:13:32: note: calls to class method 'animate(withDuration:animations:)' from outside of its actor context are implicitly asynchronous
    @MainActor open class func animate(withDuration duration: TimeInterval, animations: @escaping () -> Void)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:64:17: note: add '@MainActor' to make instance method 'highlight(_:at:)' part of global actor 'MainActor'
    public func highlight(_ notification: NotiflyBase, at location: CGPoint) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:70:26: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            notification.transform = CGAffineTransform(scaleX: self.animationScale, y: self.animationScale)
                         ^
UIKit.UIView:5:25: note: mutation of this property is only permitted within the actor
    @MainActor open var transform: CGAffineTransform { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:79:16: warning: call to main actor-isolated class method 'animate(withDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIView.animate(withDuration: animationDuration, animations: {
               ^
UIKit.UIView:13:32: note: calls to class method 'animate(withDuration:animations:)' from outside of its actor context are implicitly asynchronous
    @MainActor open class func animate(withDuration duration: TimeInterval, animations: @escaping () -> Void)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:74:17: note: add '@MainActor' to make instance method 'stopHighlight' part of global actor 'MainActor'
    public func stopHighlight(_ notification: NotiflyBase) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:80:26: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            notification.transform = CGAffineTransform.identity
                         ^
UIKit.UIView:5:25: note: mutation of this property is only permitted within the actor
    @MainActor open var transform: CGAffineTransform { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:87:25: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if notification.bounds.contains(location) {
                        ^
UIKit.UIView:3:14: note: property declared here
    open var bounds: CGRect { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:84:17: note: add '@MainActor' to make instance method 'locationMoved(_:to:)' part of global actor 'MainActor'
    public func locationMoved(_ notification: NotiflyBase, to location: CGPoint) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift:69:16: warning: sending task-isolated value of type '() -> ()' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
        UIView.animate(withDuration: animationDuration, animations: {
        ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyHighlighter.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Feedback/SYBannerFeedbackGenerator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Highlighter/NotiflyDefaultHighlighter.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/SYBannerFeedbackGenerator.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDefaultHighlighter.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyHighlighter.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 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/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIColor+Notifly.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Extension/UIEdgeInsets+Notifly.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-1 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyFeedback.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIColor+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/UIEdgeInsets+Notifly.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/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:36:33: warning: call to main actor-isolated initializer 'init(style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let generator = UIImpactFeedbackGenerator(style: style)
                                ^
UIKit.UIImpactFeedbackGenerator:25:23: note: calls to initializer 'init(style:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(style: UIImpactFeedbackGenerator.FeedbackStyle)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:37:27: warning: call to main actor-isolated instance method 'prepare()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                generator.prepare()
                          ^
UIKit.UIFeedbackGenerator:10:26: note: calls to instance method 'prepare()' from outside of its actor context are implicitly asynchronous
    @MainActor open func prepare()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:38:27: warning: call to main actor-isolated instance method 'impactOccurred()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                generator.impactOccurred()
                          ^
UIKit.UIImpactFeedbackGenerator:8:26: note: calls to instance method 'impactOccurred()' from outside of its actor context are implicitly asynchronous
    @MainActor open func impactOccurred()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:41:33: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let generator = UISelectionFeedbackGenerator()
                                ^
UIKit.UISelectionFeedbackGenerator:13:23: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public init()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:42:27: warning: call to main actor-isolated instance method 'prepare()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                generator.prepare()
                          ^
UIKit.UIFeedbackGenerator:10:26: note: calls to instance method 'prepare()' from outside of its actor context are implicitly asynchronous
    @MainActor open func prepare()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:43:27: warning: call to main actor-isolated instance method 'selectionChanged()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                generator.selectionChanged()
                          ^
UIKit.UISelectionFeedbackGenerator:3:26: note: calls to instance method 'selectionChanged()' from outside of its actor context are implicitly asynchronous
    @MainActor open func selectionChanged()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:46:33: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let generator = UINotificationFeedbackGenerator()
                                ^
UIKit.UINotificationFeedbackGenerator:13:23: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public init()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:47:27: warning: call to main actor-isolated instance method 'prepare()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                generator.prepare()
                          ^
UIKit.UIFeedbackGenerator:10:26: note: calls to instance method 'prepare()' from outside of its actor context are implicitly asynchronous
    @MainActor open func prepare()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:48:27: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                generator.notificationOccurred(type)
                          ^
UIKit.UINotificationFeedbackGenerator:3:26: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
    @MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Feedback/NotiflyFeedback.swift:29:17: note: add '@MainActor' to make instance method 'generate()' part of global actor 'MainActor'
    public func generate() {
                ^
    @MainActor
SwiftDriverJobDiscovery normal arm64 Emitting module for Notifly (in target 'Notifly' from project 'Notifly')
SwiftCompile normal arm64 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')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:24:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'NotiflyQueue' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = NotiflyQueue()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:12:12: note: class 'NotiflyQueue' does not conform to the 'Sendable' protocol
open class NotiflyQueue: NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:24:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
    public static let `default` = NotiflyQueue()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NotiflyQueue.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = NotiflyQueue()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDirection.swift (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.2.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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyBase.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NotiflyDelegate.swift -primary-file /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-iphoneos/Notifly.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -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/.swiftpm/xcode -resource-dir /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Notifly -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.2 -target-sdk-name iphoneos18.2 -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyBase.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDelegate.o -index-unit-output-path /Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/NotiflyDirection.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyScalePresenter.swift, NotiflyState.swift (in target 'Notifly' from project 'Notifly')
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/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/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-iphoneos/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 -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/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-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/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-iphoneos/Notifly.build/Objects-normal/arm64/Notifly-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Notifly-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly-Swift.h (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Notifly-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyBackgroundView+BackgroundColor.swift, NotiflyBackgroundView+CornerRadius.swift, NotiflyBackgroundView+GradientDirection.swift (in target 'Notifly' from project 'Notifly')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftmodule (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftdoc (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.abi.json (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftsourceinfo (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling SYBannerFeedbackGenerator.swift, NotiflyDefaultHighlighter.swift, NotiflyHighlighter.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling UIColor+Notifly.swift, UIEdgeInsets+Notifly.swift, NotiflyFeedback.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyQueue.swift, NotiflyType.swift, NotiflyBouncePresenter.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyDefaultPresenter.swift, NotiflyFadePresenter.swift, NotiflyPresenter.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyBackgroundView+GradientLayer.swift, NotiflyBackgroundView.swift, Notifly+Configuration.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyCardButton.swift, NotiflyFullWidth.swift, SimpleNotifly.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling NotiflyBase.swift, NotiflyDelegate.swift, NotiflyDirection.swift (in target 'Notifly' from project 'Notifly')
SwiftDriverJobDiscovery normal arm64 Compiling Notifly+IconSource.swift, Notifly.swift, NotiflyCard.swift (in target 'Notifly' from project 'Notifly')
SwiftDriver\ Compilation Notifly normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.2.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-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.2-22C146-a64a35feaa8671fcbbb800ee3114b454.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/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-iphoneos/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 -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/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-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/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-iphoneos/Notifly.build/Objects-normal/arm64/Notifly-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.o normal (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.2.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Notifly.build/Debug-iphoneos/Notifly.build/Objects-normal/arm64/Notifly_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.o (in target 'Notifly' from project 'Notifly')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Notifly.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Notifly",
  "name" : "Notifly",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Notifly",
      "targets" : [
        "Notifly"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "NotiflyTests",
      "module_type" : "SwiftTarget",
      "name" : "NotiflyTests",
      "path" : "Tests",
      "sources" : [
        "NotiflyQueueTests.swift"
      ],
      "target_dependencies" : [
        "Notifly"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Notifly",
      "module_type" : "SwiftTarget",
      "name" : "Notifly",
      "path" : "Sources",
      "product_memberships" : [
        "Notifly"
      ],
      "sources" : [
        "Extension/UIColor+Notifly.swift",
        "Extension/UIEdgeInsets+Notifly.swift",
        "Feedback/NotiflyFeedback.swift",
        "Feedback/SYBannerFeedbackGenerator.swift",
        "Highlighter/NotiflyDefaultHighlighter.swift",
        "Highlighter/NotiflyHighlighter.swift",
        "Notifications/Notifly/Background/NotiflyBackgroundView+BackgroundColor.swift",
        "Notifications/Notifly/Background/NotiflyBackgroundView+CornerRadius.swift",
        "Notifications/Notifly/Background/NotiflyBackgroundView+GradientDirection.swift",
        "Notifications/Notifly/Background/NotiflyBackgroundView+GradientLayer.swift",
        "Notifications/Notifly/Background/NotiflyBackgroundView.swift",
        "Notifications/Notifly/Notifly+Configuration.swift",
        "Notifications/Notifly/Notifly+IconSource.swift",
        "Notifications/Notifly/Notifly.swift",
        "Notifications/NotiflyCardNotification/NotiflyCard.swift",
        "Notifications/NotiflyCardNotification/NotiflyCardButton.swift",
        "Notifications/NotiflyFullWidth/NotiflyFullWidth.swift",
        "Notifications/SimpleNotifly/SimpleNotifly.swift",
        "NotiflyBase.swift",
        "NotiflyDelegate.swift",
        "NotiflyDirection.swift",
        "NotiflyQueue.swift",
        "NotiflyType.swift",
        "Presenter/NotiflyBouncePresenter.swift",
        "Presenter/NotiflyDefaultPresenter.swift",
        "Presenter/NotiflyFadePresenter.swift",
        "Presenter/NotiflyPresenter.swift",
        "Presenter/NotiflyScalePresenter.swift",
        "Presenter/NotiflyState.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.