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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of NiceNotifications with Swift 6.0 for watchOS using Xcode 16.0.

Swift 6 data race errors: 36

Build Command

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

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:805:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
803 | }
804 |
805 | @_functionBuilder
    |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
806 | public enum TimelineBuilder {
807 |     public typealias Expression = LocalNotifications.NotificationRequest
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: warning: static property 'info' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | extension LocalNotifications {
 13 |     public enum Log {
 14 |         public static var info: (Any) -> () = { _ in }
    |                           |- warning: static property 'info' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |     }
 16 | }
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 | extension LocalNotifications {
 19 |     public struct PermissionStrategy {
    |                   `- note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
 20 |
 21 |         public init(groupLevel: LocalNotifications.PermissionStrategy.GroupLevel, systemLevel: LocalNotifications.PermissionStrategy.SystemLevel) {
    :
 45 |         }
 46 |
 47 |         public static let askSystemPermissionIfNeeded = PermissionStrategy(
    |                           |- warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |             groupLevel: .bypass,
 49 |             systemLevel: .askPermission
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 | extension LocalNotifications {
 19 |     public struct PermissionStrategy {
    |                   `- note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
 20 |
 21 |         public init(groupLevel: LocalNotifications.PermissionStrategy.GroupLevel, systemLevel: LocalNotifications.PermissionStrategy.SystemLevel) {
    :
 50 |         )
 51 |
 52 |         public static let scheduleIfSystemAllowed = PermissionStrategy(
    |                           |- warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |             groupLevel: .bypass,
 54 |             systemLevel: .ifAlreadyAllowed
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 84 |
 85 |     public enum Env {
 86 |         public static var addNotificationRequest = UNUserNotificationCenter.current().add
    |                           |- warning: static property 'addNotificationRequest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 85 |     public enum Env {
 86 |         public static var addNotificationRequest = UNUserNotificationCenter.current().add
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
    |                           |- warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |         public static var addNotificationRequest = UNUserNotificationCenter.current().add
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
    |                           |- warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
 90 |         public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
    |                           |- warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |         public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
 91 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
 90 |         public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
    |                           |- warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     }
 92 |
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
430 |
431 |         public enum Env {
432 |             public static var valueForKey = UserDefaults.standard.value(forKey:)
    |                               |- warning: static property 'valueForKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
433 |             public static var setValue = UserDefaults.standard.setValue(_:forKey:)
434 |
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
431 |         public enum Env {
432 |             public static var valueForKey = UserDefaults.standard.value(forKey:)
433 |             public static var setValue = UserDefaults.standard.setValue(_:forKey:)
    |                               |- warning: static property 'setValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
434 |
435 |             public static func setUserDefaults(_ userDefaults: UserDefaults) {
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
474 |
475 |         public enum Env {
476 |             public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
    |                               |- warning: static property 'getNotificationSettings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
477 |             public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
478 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
475 |         public enum Env {
476 |             public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
477 |             public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
    |                               |- warning: static property 'requestAuthorization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
478 |         }
479 |
SwiftCompile normal arm64 Compiling\ NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.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/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:805:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
@_functionBuilder
 ^~~~~~~~~~~~~~~~
 resultBuilder
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: warning: static property 'info' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var info: (Any) -> () = { _ in }
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
        public static var info: (Any) -> () = { _ in }
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
        public static var info: (Any) -> () = { _ in }
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var info: (Any) -> () = { _ in }
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let askSystemPermissionIfNeeded = PermissionStrategy(
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
    public struct PermissionStrategy {
                  ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
        public static let askSystemPermissionIfNeeded = PermissionStrategy(
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let askSystemPermissionIfNeeded = PermissionStrategy(
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let scheduleIfSystemAllowed = PermissionStrategy(
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
    public struct PermissionStrategy {
                  ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
        public static let scheduleIfSystemAllowed = PermissionStrategy(
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let scheduleIfSystemAllowed = PermissionStrategy(
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: warning: capture of 'completion' with non-sendable type '(LocalNotifications.FinalAuthorizationStatus) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completion(status)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(status)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: warning: capture of 'status' with non-sendable type 'LocalNotifications.FinalAuthorizationStatus' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completion(status)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:93:17: note: consider making enum 'FinalAuthorizationStatus' conform to the 'Sendable' protocol
    public enum FinalAuthorizationStatus {
                ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:243:55: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
                ? { DispatchQueue.main.async(execute: performScheduleInCurrentContext) }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: warning: capture of 'completion' with non-sendable type '(LocalNotifications.SchedulingResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            DispatchQueue.main.async { completion(val) }
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: warning: capture of 'val' with non-sendable type 'LocalNotifications.SchedulingResult' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:205:17: note: consider making enum 'SchedulingResult' conform to the 'Sendable' protocol
    public enum SchedulingResult {
                ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
                completion(status)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                completion(status)
                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: warning: sending 'status' risks causing data races; this is an error in the Swift 6 language mode
                completion(status)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: note: task-isolated 'status' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                completion(status)
                           ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                     ~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            DispatchQueue.main.async { completion(val) }
                                       ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: warning: sending 'val' risks causing data races; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                     ~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: note: task-isolated 'val' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            DispatchQueue.main.async { completion(val) }
                                                  ^~~
SwiftEmitModule normal armv7k Emitting\ module\ for\ NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:805:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
803 | }
804 |
805 | @_functionBuilder
    |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
806 | public enum TimelineBuilder {
807 |     public typealias Expression = LocalNotifications.NotificationRequest
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: warning: static property 'info' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 12 | extension LocalNotifications {
 13 |     public enum Log {
 14 |         public static var info: (Any) -> () = { _ in }
    |                           |- warning: static property 'info' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |     }
 16 | }
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 | extension LocalNotifications {
 19 |     public struct PermissionStrategy {
    |                   `- note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
 20 |
 21 |         public init(groupLevel: LocalNotifications.PermissionStrategy.GroupLevel, systemLevel: LocalNotifications.PermissionStrategy.SystemLevel) {
    :
 45 |         }
 46 |
 47 |         public static let askSystemPermissionIfNeeded = PermissionStrategy(
    |                           |- warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |             groupLevel: .bypass,
 49 |             systemLevel: .askPermission
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 | extension LocalNotifications {
 19 |     public struct PermissionStrategy {
    |                   `- note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
 20 |
 21 |         public init(groupLevel: LocalNotifications.PermissionStrategy.GroupLevel, systemLevel: LocalNotifications.PermissionStrategy.SystemLevel) {
    :
 50 |         )
 51 |
 52 |         public static let scheduleIfSystemAllowed = PermissionStrategy(
    |                           |- warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |             groupLevel: .bypass,
 54 |             systemLevel: .ifAlreadyAllowed
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 84 |
 85 |     public enum Env {
 86 |         public static var addNotificationRequest = UNUserNotificationCenter.current().add
    |                           |- warning: static property 'addNotificationRequest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 85 |     public enum Env {
 86 |         public static var addNotificationRequest = UNUserNotificationCenter.current().add
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
    |                           |- warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |         public static var addNotificationRequest = UNUserNotificationCenter.current().add
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
    |                           |- warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
 90 |         public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 87 |         public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
    |                           |- warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |         public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
 91 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |         public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
 89 |         public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
 90 |         public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
    |                           |- warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
    |                           |- note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |     }
 92 |
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
430 |
431 |         public enum Env {
432 |             public static var valueForKey = UserDefaults.standard.value(forKey:)
    |                               |- warning: static property 'valueForKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
433 |             public static var setValue = UserDefaults.standard.setValue(_:forKey:)
434 |
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
431 |         public enum Env {
432 |             public static var valueForKey = UserDefaults.standard.value(forKey:)
433 |             public static var setValue = UserDefaults.standard.setValue(_:forKey:)
    |                               |- warning: static property 'setValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
434 |
435 |             public static func setUserDefaults(_ userDefaults: UserDefaults) {
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
474 |
475 |         public enum Env {
476 |             public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
    |                               |- warning: static property 'getNotificationSettings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
477 |             public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
478 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
475 |         public enum Env {
476 |             public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
477 |             public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
    |                               |- warning: static property 'requestAuthorization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
478 |         }
479 |
SwiftCompile normal armv7k Compiling\ NotificationPermissionView.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ NotificationPermissionView.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.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/NiceNotifications/NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.dia -target arm64-apple-watchos4.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NotificationPermissionView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift /Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NotificationPermissionView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.dia -target armv7k-apple-watchos4.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name NiceNotifications -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-unit-output-path /NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:805:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
@_functionBuilder
 ^~~~~~~~~~~~~~~~
 resultBuilder
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: warning: static property 'info' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var info: (Any) -> () = { _ in }
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
        public static var info: (Any) -> () = { _ in }
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
        public static var info: (Any) -> () = { _ in }
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:14:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var info: (Any) -> () = { _ in }
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: warning: static property 'askSystemPermissionIfNeeded' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let askSystemPermissionIfNeeded = PermissionStrategy(
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
    public struct PermissionStrategy {
                  ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: annotate 'askSystemPermissionIfNeeded' with '@MainActor' if property should only be accessed from the main actor
        public static let askSystemPermissionIfNeeded = PermissionStrategy(
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let askSystemPermissionIfNeeded = PermissionStrategy(
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: warning: static property 'scheduleIfSystemAllowed' is not concurrency-safe because non-'Sendable' type 'LocalNotifications.PermissionStrategy' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let scheduleIfSystemAllowed = PermissionStrategy(
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:19:19: note: consider making struct 'PermissionStrategy' conform to the 'Sendable' protocol
    public struct PermissionStrategy {
                  ^
                                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: annotate 'scheduleIfSystemAllowed' with '@MainActor' if property should only be accessed from the main actor
        public static let scheduleIfSystemAllowed = PermissionStrategy(
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let scheduleIfSystemAllowed = PermissionStrategy(
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: warning: static property 'addNotificationRequest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: convert 'addNotificationRequest' to a 'let' constant to make 'Sendable' shared state immutable
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: annotate 'addNotificationRequest' with '@MainActor' if property should only be accessed from the main actor
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var addNotificationRequest = UNUserNotificationCenter.current().add
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: warning: static property 'removeDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: convert 'removeDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: annotate 'removeDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var removeDeliveredNotifications = UNUserNotificationCenter.current().removeDeliveredNotifications
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: warning: static property 'removePendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: convert 'removePendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: annotate 'removePendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var removePendingNotificationRequests = UNUserNotificationCenter.current().removePendingNotificationRequests
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: warning: static property 'getPendingNotificationRequests' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: convert 'getPendingNotificationRequests' to a 'let' constant to make 'Sendable' shared state immutable
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: annotate 'getPendingNotificationRequests' with '@MainActor' if property should only be accessed from the main actor
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:89:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var getPendingNotificationRequests = UNUserNotificationCenter.current().getPendingNotificationRequests
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: warning: static property 'getDeliveredNotifications' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: convert 'getDeliveredNotifications' to a 'let' constant to make 'Sendable' shared state immutable
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: annotate 'getDeliveredNotifications' with '@MainActor' if property should only be accessed from the main actor
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:90:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var getDeliveredNotifications = UNUserNotificationCenter.current().getDeliveredNotifications
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: warning: static property 'valueForKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: convert 'valueForKey' to a 'let' constant to make 'Sendable' shared state immutable
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: annotate 'valueForKey' with '@MainActor' if property should only be accessed from the main actor
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:432:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var valueForKey = UserDefaults.standard.value(forKey:)
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: warning: static property 'setValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: convert 'setValue' to a 'let' constant to make 'Sendable' shared state immutable
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: annotate 'setValue' with '@MainActor' if property should only be accessed from the main actor
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:433:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var setValue = UserDefaults.standard.setValue(_:forKey:)
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: warning: static property 'getNotificationSettings' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: convert 'getNotificationSettings' to a 'let' constant to make 'Sendable' shared state immutable
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: annotate 'getNotificationSettings' with '@MainActor' if property should only be accessed from the main actor
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:476:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var getNotificationSettings = UNUserNotificationCenter.current().getNotificationSettings
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: warning: static property 'requestAuthorization' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: convert 'requestAuthorization' to a 'let' constant to make 'Sendable' shared state immutable
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                          ~~~ ^
                          let
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: annotate 'requestAuthorization' with '@MainActor' if property should only be accessed from the main actor
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:477:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static var requestAuthorization = UNUserNotificationCenter.current().requestAuthorization
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: warning: capture of 'completion' with non-sendable type '(LocalNotifications.FinalAuthorizationStatus) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completion(status)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(status)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: warning: capture of 'status' with non-sendable type 'LocalNotifications.FinalAuthorizationStatus' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                completion(status)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:93:17: note: consider making enum 'FinalAuthorizationStatus' conform to the 'Sendable' protocol
    public enum FinalAuthorizationStatus {
                ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:243:55: warning: converting non-sendable function value to '@MainActor @Sendable @convention(block) () -> Void' may introduce data races
                ? { DispatchQueue.main.async(execute: performScheduleInCurrentContext) }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: warning: capture of 'completion' with non-sendable type '(LocalNotifications.SchedulingResult) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            DispatchQueue.main.async { completion(val) }
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: warning: capture of 'val' with non-sendable type 'LocalNotifications.SchedulingResult' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:205:17: note: consider making enum 'SchedulingResult' conform to the 'Sendable' protocol
    public enum SchedulingResult {
                ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
                completion(status)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                completion(status)
                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: warning: sending 'status' risks causing data races; this is an error in the Swift 6 language mode
                completion(status)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:106:28: note: task-isolated 'status' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                completion(status)
                           ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                     ~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:40: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            DispatchQueue.main.async { completion(val) }
                                       ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: warning: sending 'val' risks causing data races; this is an error in the Swift 6 language mode
            DispatchQueue.main.async { completion(val) }
                                     ~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/NiceNotifications/NiceNotifications.swift:225:51: note: task-isolated 'val' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            DispatchQueue.main.async { completion(val) }
                                                  ^~~
SwiftDriverJobDiscovery normal arm64 Compiling NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal armv7k Compiling NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal arm64_32 Compiling NotificationPermissionView.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriverJobDiscovery normal arm64 Emitting module for NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation\ Requirements NiceNotifications normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.abi.json (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftdoc (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftsourceinfo (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Emitting module for NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation\ Requirements NiceNotifications normal armv7k com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdoc (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.abi.json (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftsourceinfo (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for NiceNotifications (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation\ Requirements NiceNotifications normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/NiceNotifications-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/NiceNotifications-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftdoc (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.abi.json (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftsourceinfo (in target 'NiceNotifications' from project 'NiceNotifications')
    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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling DateBuilder.swift (in target 'DateBuilder' from project 'DateBuilder')
SwiftDriver\ Compilation DateBuilder normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DateBuilder' from project 'DateBuilder')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name DateBuilder -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos4.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 -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder-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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.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/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/Binary/DateBuilder.o normal arm64 (in target 'DateBuilder' from project 'DateBuilder')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/DateBuilder_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/Binary/DateBuilder.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o normal arm64\ armv7k\ arm64_32 (in target 'DateBuilder' from project 'DateBuilder')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64/Binary/DateBuilder.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/armv7k/Binary/DateBuilder.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DateBuilder.build/Debug-watchos/DateBuilder.build/Objects-normal/arm64_32/Binary/DateBuilder.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o (in target 'DateBuilder' from project 'DateBuilder')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DateBuilder
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/DateBuilder.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.LinkFileList (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.LinkFileList (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.LinkFileList (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.LinkFileList
SwiftDriverJobDiscovery normal armv7k Compiling NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation NiceNotifications normal armv7k com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/Binary/NiceNotifications.o normal armv7k (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos4.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/NiceNotifications_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/Binary/NiceNotifications.o
SwiftDriverJobDiscovery normal arm64_32 Compiling NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation NiceNotifications normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64_32-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/Binary/NiceNotifications.o normal arm64_32 (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos4.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/NiceNotifications_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/Binary/NiceNotifications.o
SwiftDriverJobDiscovery normal arm64 Compiling NiceNotifications.swift (in target 'NiceNotifications' from project 'NiceNotifications')
SwiftDriver\ Compilation NiceNotifications normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name NiceNotifications -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target arm64-apple-watchos4.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.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/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/Binary/NiceNotifications.o normal arm64 (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos4.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/NiceNotifications_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/Binary/NiceNotifications.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o normal arm64\ armv7k\ arm64_32 (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64/Binary/NiceNotifications.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/armv7k/Binary/NiceNotifications.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/NiceNotifications.build/Debug-watchos/NiceNotifications.build/Objects-normal/arm64_32/Binary/NiceNotifications.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o (in target 'NiceNotifications' from project 'NiceNotifications')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/NiceNotifications.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NiceNotifications' from project 'NiceNotifications')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'DateBuilder' from project 'DateBuilder')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'NiceNotifications' from project 'NiceNotifications')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "datebuilder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dreymonde/DateBuilder"
    }
  ],
  "manifest_display_name" : "NiceNotifications",
  "name" : "NiceNotifications",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    }
  ],
  "products" : [
    {
      "name" : "NiceNotifications",
      "targets" : [
        "NiceNotifications"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NiceNotificationsTests",
      "module_type" : "SwiftTarget",
      "name" : "NiceNotificationsTests",
      "path" : "Tests/NiceNotificationsTests",
      "sources" : [
        "NiceNotificationsTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "NiceNotifications"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NiceNotifications",
      "module_type" : "SwiftTarget",
      "name" : "NiceNotifications",
      "path" : "Sources/NiceNotifications",
      "product_dependencies" : [
        "DateBuilder"
      ],
      "product_memberships" : [
        "NiceNotifications"
      ],
      "sources" : [
        "NiceNotifications.swift",
        "NotificationPermissionView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.