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

The Swift Package Index logo.Swift Package Index

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

Build Information

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

Build Command

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

Build Log

318 |     }
319 |
320 |     static var defaultValue = false
    |                |- warning: static property 'defaultValue' 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 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' 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
321 | }
322 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:325:20: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
323 | extension EnvironmentValues {
324 |     private struct SheeDismissActionEnvironmentKey: EnvironmentKey {
325 |         static var defaultValue: DismissAction?
    |                    |- warning: static property 'defaultValue' 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 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'defaultValue' 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
326 |     }
327 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:329:20: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
327 |
328 |     private struct SheeIsPresentedEnvironmentKey: EnvironmentKey {
329 |         static var defaultValue = false
    |                    |- warning: static property 'defaultValue' 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 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'defaultValue' 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
330 |     }
331 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:56:44: error: cannot find type 'UIPopoverArrowDirection' in scope
 54 |     ///   - sourceRectTransform: allows to change the `sourceRect` of the `UIPopoverPresentationController`
 55 |     ///   - adaptiveSheetProperties: properties to assign to adaptive `UISheetPresentationController` which will be used when the app's scene is resized into `.compact` horizontal size class (via multitasking).
 56 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetProperties? = nil)
    |                                            `- error: cannot find type 'UIPopoverArrowDirection' in scope
 57 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 58 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:58:40: error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 56 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetProperties? = nil)
 57 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 58 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
    |                                        `- error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 59 | }
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:58:26: error: cannot find type 'UISheetPresentationController' in scope
 56 |     /// Detents must be specified in order from smallest to largest height.
 57 |     /// Default: an array of only `.large()`
 58 |     public var detents: [UISheetPresentationController.Detent]
    |                          `- error: cannot find type 'UISheetPresentationController' in scope
 59 |
 60 |     /// The identifier of the selected detent. When binding's wrapped value is `nil` or the identifier is not found in detents, the sheet is displayed at the smallest detent.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:63:50: error: cannot find type 'UISheetPresentationController' in scope
 61 |     /// When binding is `nil` (default), the user's chosen detent is considered unmanaged and is never overwritten.
 62 |     /// Default: `nil`
 63 |     public var selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil
    |                                                  `- error: cannot find type 'UISheetPresentationController' in scope
 64 |
 65 |     /// Set to `true` to enforce the sheet to animate adaptation to a newly set ``selectedDetentIdentifier`` which is different from the one that has been used previously.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:71:49: error: cannot find type 'UISheetPresentationController' in scope
 69 |     /// The identifier of the largest detent that is not dimmed. When `nil` or the identifier is not found in detents, all detents are dimmed.
 70 |     /// Default: `nil`
 71 |     public var largestUndimmedDetentIdentifier: UISheetPresentationController.Detent.Identifier?
    |                                                 `- error: cannot find type 'UISheetPresentationController' in scope
 72 |
 73 |     /// If there is a larger detent to expand to than the selected detent, and a descendent scroll view is scrolled to top, this controls whether scrolling down will expand to a larger detent.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:428:46: error: 'LibraryItem' is only available in watchOS 7.0 or newer
405 |
406 | @available(iOS 15.0, *)
407 | public struct Shee_Library: LibraryContentProvider {
    |               `- note: add @available attribute to enclosing struct
408 |     struct SheetContent: View {
409 |         @Environment(\.shee_dismiss) var dismiss
    :
426 |
427 |     @LibraryContentBuilder
428 |     public func modifiers(base: AnyView) -> [LibraryItem] {
    |                 |                            `- error: 'LibraryItem' is only available in watchOS 7.0 or newer
    |                 `- note: add @available attribute to enclosing instance method
429 |         LibraryItem(base.shee(isPresented: .constant(true),
430 |                               presentationStyle: .formSheet(properties: .init(detents: [.medium(), .large()]))) { SheetContent() },
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:427:6: error: 'LibraryContentBuilder' is only available in watchOS 7.0 or newer
405 |
406 | @available(iOS 15.0, *)
407 | public struct Shee_Library: LibraryContentProvider {
    |               `- note: add @available attribute to enclosing struct
408 |     struct SheetContent: View {
409 |         @Environment(\.shee_dismiss) var dismiss
    :
425 |     }
426 |
427 |     @LibraryContentBuilder
    |      `- error: 'LibraryContentBuilder' is only available in watchOS 7.0 or newer
428 |     public func modifiers(base: AnyView) -> [LibraryItem] {
    |                 `- note: add @available attribute to enclosing instance method
429 |         LibraryItem(base.shee(isPresented: .constant(true),
430 |                               presentationStyle: .formSheet(properties: .init(detents: [.medium(), .large()]))) { SheetContent() },
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:77:44: error: cannot find type 'UIPopoverArrowDirection' in scope
 75 |     ///   - permittedArrowDirections: The arrow directions that you allow for the popover.
 76 |     ///   - sourceRectTransform: allows to change the `sourceRect` of the `UIPopoverPresentationController`
 77 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetPropertiesCompat? = nil)
    |                                            `- error: cannot find type 'UIPopoverArrowDirection' in scope
 78 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 79 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:79:40: error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 77 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetPropertiesCompat? = nil)
 78 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 79 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
    |                                        `- error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 80 | }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:83:34: error: cannot find type 'UIViewController' in scope
 81 |
 82 | protocol ModalPresentationConfigurator {
 83 |     func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool)
    |                                  `- error: cannot find type 'UIViewController' in scope
 84 | }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:83:63: error: cannot find type 'UIViewController' in scope
 81 |
 82 | protocol ModalPresentationConfigurator {
 83 |     func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool)
    |                                                               `- error: cannot find type 'UIViewController' in scope
 84 | }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:87:63: error: cannot find type 'UIViewController' in scope
 85 |
 86 | extension ModalPresentationConfigurator {
 87 |     static func setupModalPresentationStyle(_ viewController: UIViewController, style: UIModalPresentationStyle, isInitial: Bool) {
    |                                                               `- error: cannot find type 'UIViewController' in scope
 88 |         if isInitial {
 89 |             viewController.modalPresentationStyle = style
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:87:88: error: cannot find type 'UIModalPresentationStyle' in scope
 85 |
 86 | extension ModalPresentationConfigurator {
 87 |     static func setupModalPresentationStyle(_ viewController: UIViewController, style: UIModalPresentationStyle, isInitial: Bool) {
    |                                                                                        `- error: cannot find type 'UIModalPresentationStyle' in scope
 88 |         if isInitial {
 89 |             viewController.modalPresentationStyle = style
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:93:47: error: cannot find type 'UIViewController' in scope
 91 |     }
 92 |
 93 |     static func setupCustom(_ viewController: UIViewController, transitioningDelegate: UIViewControllerTransitioningDelegate?, isInitial: Bool) {
    |                                               `- error: cannot find type 'UIViewController' in scope
 94 |         setupModalPresentationStyle(viewController, style: .custom, isInitial: isInitial)
 95 |         viewController.transitioningDelegate = transitioningDelegate
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:93:88: error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 91 |     }
 92 |
 93 |     static func setupCustom(_ viewController: UIViewController, transitioningDelegate: UIViewControllerTransitioningDelegate?, isInitial: Bool) {
    |                                                                                        `- error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 94 |         setupModalPresentationStyle(viewController, style: .custom, isInitial: isInitial)
 95 |         viewController.transitioningDelegate = transitioningDelegate
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:98:50: error: cannot find type 'UIViewController' in scope
 96 |     }
 97 |
 98 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
 99 |         setupModalPresentationStyle(viewController, style: .pageSheet, isInitial: isInitial)
100 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:98:79: error: cannot find type 'UIViewController' in scope
 96 |     }
 97 |
 98 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
 99 |         setupModalPresentationStyle(viewController, style: .pageSheet, isInitial: isInitial)
100 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:102:50: error: cannot find type 'UIViewController' in scope
100 |     }
101 |
102 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
103 |         setupModalPresentationStyle(viewController, style: .formSheet, isInitial: isInitial)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:102:79: error: cannot find type 'UIViewController' in scope
100 |     }
101 |
102 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
103 |         setupModalPresentationStyle(viewController, style: .formSheet, isInitial: isInitial)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:106:48: error: cannot find type 'UIViewController' in scope
104 |     }
105 |
106 |     static func setupPopover(_ viewController: UIViewController,
    |                                                `- error: cannot find type 'UIViewController' in scope
107 |                              presenter: UIViewController,
108 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:107:41: error: cannot find type 'UIViewController' in scope
105 |
106 |     static func setupPopover(_ viewController: UIViewController,
107 |                              presenter: UIViewController,
    |                                         `- error: cannot find type 'UIViewController' in scope
108 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
109 |                              permittedArrowDirections: UIPopoverArrowDirection,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:109:56: error: cannot find type 'UIPopoverArrowDirection' in scope
107 |                              presenter: UIViewController,
108 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
109 |                              permittedArrowDirections: UIPopoverArrowDirection,
    |                                                        `- error: cannot find type 'UIPopoverArrowDirection' in scope
110 |                              isInitial: Bool) {
111 |         setupModalPresentationStyle(viewController, style: .popover, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:123:50: error: cannot find type 'UISheetPresentationController' in scope
121 | @available(iOS 15, *)
122 | protocol SheetPropertiesPresentationConfigurator: ModalPresentationConfigurator {
123 |     var selectedDetentIdentifierBinding: Binding<UISheetPresentationController.Detent.Identifier?>? { get }
    |                                                  `- error: cannot find type 'UISheetPresentationController' in scope
124 | }
125 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:128:50: error: cannot find type 'UIViewController' in scope
126 | @available(iOS 15, *)
127 | extension SheetPropertiesPresentationConfigurator {
128 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
129 |         setupPageSheet(viewController, presenter: presenter, isInitial: isInitial)
130 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:128:79: error: cannot find type 'UIViewController' in scope
126 | @available(iOS 15, *)
127 | extension SheetPropertiesPresentationConfigurator {
128 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
129 |         setupPageSheet(viewController, presenter: presenter, isInitial: isInitial)
130 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:133:50: error: cannot find type 'UIViewController' in scope
131 |     }
132 |
133 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
134 |         setupFormSheet(viewController, presenter: presenter, isInitial: isInitial)
135 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:133:79: error: cannot find type 'UIViewController' in scope
131 |     }
132 |
133 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
134 |         setupFormSheet(viewController, presenter: presenter, isInitial: isInitial)
135 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:138:48: error: cannot find type 'UIViewController' in scope
136 |     }
137 |
138 |     static func setupPopover(_ viewController: UIViewController,
    |                                                `- error: cannot find type 'UIViewController' in scope
139 |                              presenter: UIViewController,
140 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:139:41: error: cannot find type 'UIViewController' in scope
137 |
138 |     static func setupPopover(_ viewController: UIViewController,
139 |                              presenter: UIViewController,
    |                                         `- error: cannot find type 'UIViewController' in scope
140 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
141 |                              permittedArrowDirections: UIPopoverArrowDirection,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:141:56: error: cannot find type 'UIPopoverArrowDirection' in scope
139 |                              presenter: UIViewController,
140 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
141 |                              permittedArrowDirections: UIPopoverArrowDirection,
    |                                                        `- error: cannot find type 'UIPopoverArrowDirection' in scope
142 |                              adaptiveSheetProperties: SheetProperties?,
143 |                              isInitial: Bool) {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:154:54: error: cannot find type 'UISheetPresentationController' in scope
152 |     }
153 |
154 |     static func setup(_ sheetPresentationController: UISheetPresentationController?, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                      `- error: cannot find type 'UISheetPresentationController' in scope
155 |         guard let sheetPresentationController = sheetPresentationController,
156 |               let properties = properties
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:154:97: error: cannot find type 'UIViewController' in scope
152 |     }
153 |
154 |     static func setup(_ sheetPresentationController: UISheetPresentationController?, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                                                                 `- error: cannot find type 'UIViewController' in scope
155 |         guard let sheetPresentationController = sheetPresentationController,
156 |               let properties = properties
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:207:11: error: cannot find type 'UISheetPresentationController' in scope
205 |
206 | @available(iOS 15, *)
207 | extension UISheetPresentationController.Detent: Comparable {
    |           `- error: cannot find type 'UISheetPresentationController' in scope
208 |     public static func < (lhs: UISheetPresentationController.Detent, rhs: UISheetPresentationController.Detent) -> Bool {
209 |         lhs == medium() && rhs == large() ? true : false
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:215:59: error: cannot find type 'UISheetPresentationController' in scope
213 | @available(iOS 15, *)
214 | extension ModalPresentationStyle: SheetPropertiesPresentationConfigurator {
215 |     internal var selectedDetentIdentifierBinding: Binding<UISheetPresentationController.Detent.Identifier?>? {
    |                                                           `- error: cannot find type 'UISheetPresentationController' in scope
216 |         switch self {
217 |         case .pageSheet(let properties): return properties?.selectedDetentIdentifier
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:224:43: error: cannot find type 'UIViewController' in scope
222 |     }
223 |
224 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                           `- error: cannot find type 'UIViewController' in scope
225 |         switch self {
226 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:224:72: error: cannot find type 'UIViewController' in scope
222 |     }
223 |
224 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                        `- error: cannot find type 'UIViewController' in scope
225 |         switch self {
226 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:250:43: error: cannot find type 'UIViewController' in scope
248 |
249 | extension ModalPresentationStyleCompat: ModalPresentationConfigurator {
250 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                           `- error: cannot find type 'UIViewController' in scope
251 |         switch self {
252 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:250:72: error: cannot find type 'UIViewController' in scope
248 |
249 | extension ModalPresentationStyleCompat: ModalPresentationConfigurator {
250 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                        `- error: cannot find type 'UIViewController' in scope
251 |         switch self {
252 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:32:43: error: cannot find type 'UIHostingController' in scope
 30 | import SwiftUI
 31 |
 32 | final class SheetHostingController<Item>: UIHostingController<AnyView> where Item : Identifiable {
    |                                           `- error: cannot find type 'UIHostingController' in scope
 33 |     var itemId: Item.ID?
 34 |     var item: Item
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:37:42: error: cannot find type 'UIStatusBarStyle' in scope
 35 |     var onDismiss: (() -> Void)?
 36 |     var overrideDisablesAutomaticKeyboardDismissal: Bool?
 37 |     var overridePreferredStatusBarStyle: UIStatusBarStyle?
    |                                          `- error: cannot find type 'UIStatusBarStyle' in scope
 38 |     var overridePrefersStatusBarHidden: Bool?
 39 |     var overridePreferredStatusBarUpdateAnimation: UIStatusBarAnimation?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:39:52: error: cannot find type 'UIStatusBarAnimation' in scope
 37 |     var overridePreferredStatusBarStyle: UIStatusBarStyle?
 38 |     var overridePrefersStatusBarHidden: Bool?
 39 |     var overridePreferredStatusBarUpdateAnimation: UIStatusBarAnimation?
    |                                                    `- error: cannot find type 'UIStatusBarAnimation' in scope
 40 |     var overridePrefersPointerLocked: Bool?
 41 |     var overridePreferredScreenEdgesDeferringSystemGestures: UIRectEdge?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:82:43: error: cannot find type 'UIStatusBarStyle' in scope
 80 |     }
 81 |
 82 |     override var preferredStatusBarStyle: UIStatusBarStyle {
    |                                           `- error: cannot find type 'UIStatusBarStyle' in scope
 83 |         guard let r = overridePreferredStatusBarStyle else { return super.preferredStatusBarStyle }
 84 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:82:18: error: property does not override any property from its superclass
 80 |     }
 81 |
 82 |     override var preferredStatusBarStyle: UIStatusBarStyle {
    |                  `- error: property does not override any property from its superclass
 83 |         guard let r = overridePreferredStatusBarStyle else { return super.preferredStatusBarStyle }
 84 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:87:18: error: property does not override any property from its superclass
 85 |     }
 86 |
 87 |     override var prefersStatusBarHidden: Bool {
    |                  `- error: property does not override any property from its superclass
 88 |         guard let r = overridePrefersStatusBarHidden else { return super.prefersStatusBarHidden }
 89 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:93:18: error: property does not override any property from its superclass
 91 |
 92 |     @available(iOS 14, *)
 93 |     override var prefersPointerLocked: Bool {
    |                  `- error: property does not override any property from its superclass
 94 |         guard let r = overridePrefersPointerLocked else { return super.prefersPointerLocked }
 95 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:98:18: error: property does not override any property from its superclass
 96 |     }
 97 |
 98 |     override var prefersHomeIndicatorAutoHidden: Bool {
    |                  `- error: property does not override any property from its superclass
 99 |         guard let r = overridePrefersHomeIndicatorAutoHidden else { return super.prefersHomeIndicatorAutoHidden }
100 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:103:18: error: property does not override any property from its superclass
101 |     }
102 |
103 |     override var preferredScreenEdgesDeferringSystemGestures: UIRectEdge {
    |                  `- error: property does not override any property from its superclass
104 |         guard let r = overridePreferredScreenEdgesDeferringSystemGestures else { return super.preferredScreenEdgesDeferringSystemGestures }
105 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:108:53: error: cannot find type 'UIStatusBarAnimation' in scope
106 |     }
107 |
108 |     override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
    |                                                     `- error: cannot find type 'UIStatusBarAnimation' in scope
109 |         guard let r = overridePreferredStatusBarUpdateAnimation else { return super.preferredStatusBarUpdateAnimation }
110 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:108:18: error: property does not override any property from its superclass
106 |     }
107 |
108 |     override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
    |                  `- error: property does not override any property from its superclass
109 |         guard let r = overridePreferredStatusBarUpdateAnimation else { return super.preferredStatusBarUpdateAnimation }
110 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:48:61: error: cannot find type 'UIViewController' in scope
46 |     }
47 |
48 |     private var sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item> { { coordinator, presenter, item, dismiss in
   |                                                             `- error: cannot find type 'UIViewController' in scope
49 |         let rootView = sheetContent(for: item, isPresented: true, dismiss: dismiss) { [weak coordinator] isInteractiveDismissDisabled in
50 |             coordinator?.isInteractiveDismissDisabled = isInteractiveDismissDisabled
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:64:60: error: cannot find type 'UIViewController' in scope
62 |     } }
63 |
64 |     private var sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void { { coordinator, presenter, isPresented, dismiss in
   |                                                            `- error: cannot find type 'UIViewController' in scope
65 |         guard let sheetHost = coordinator.sheetHost else { return }
66 |         if isPresented {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:40:38: error: cannot find type 'UIModalTransitionStyle' in scope
 38 |     /// To change the transition type, you must set this property before presenting the `View`. The default value for this property is `UIModalTransitionStyle.coverVertical`.
 39 |     /// For a list of possible transition styles, and their compatibility with the available presentation styles, see the `UIModalTransitionStyle` constant descriptions.
 40 |     public var modalTransitionStyle: UIModalTransitionStyle = .coverVertical
    |                                      `- error: cannot find type 'UIModalTransitionStyle' in scope
 41 |
 42 |     /// Specifies whether a `View` takes over control of status bar appearance from the presenting `View`.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:69:41: error: cannot find type 'UIStatusBarStyle' in scope
 67 |
 68 |     /// The preferred status bar style for the `View`.
 69 |     public var preferredStatusBarStyle: UIStatusBarStyle?
    |                                         `- error: cannot find type 'UIStatusBarStyle' in scope
 70 |
 71 |     /// Specifies whether the view controller prefers the status bar to be hidden or shown.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:78:51: error: cannot find type 'UIStatusBarAnimation' in scope
 76 |     /// Default value is `nil`, in which case system uses `UIStatusBarAnimation.fade`.
 77 |     /// This property comes into play only when you actively change the status bar’s show/hide state by changing the ``prefersStatusBarHidden`` attribute.
 78 |     public var preferredStatusBarUpdateAnimation: UIStatusBarAnimation?
    |                                                   `- error: cannot find type 'UIStatusBarAnimation' in scope
 79 |
 80 |     /// Specifies whether the presentation hosting the `View` is forced into modal behavior.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:58:30: error: cannot find type 'UIViewController' in scope
 56 |     }
 57 |
 58 |     weak var presenterProxy: UIViewController?
    |                              `- error: cannot find type 'UIViewController' in scope
 59 |
 60 |     override func didMove(toParent parent: UIViewController?) {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:32:39: error: cannot find type 'UIViewController' in scope
 30 | import SwiftUI
 31 |
 32 | final class SheetPresenterController: UIViewController {
    |                                       `- error: cannot find type 'UIViewController' in scope
 33 |     private final class AppearanceCallbackView: UIView {
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:33:49: error: cannot find type 'UIView' in scope
 31 |
 32 | final class SheetPresenterController: UIViewController {
 33 |     private final class AppearanceCallbackView: UIView {
    |                                                 `- error: cannot find type 'UIView' in scope
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
 35 |         var onAppearCallback: (() -> Void)?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:34:28: error: property does not override any property from its superclass
 32 | final class SheetPresenterController: UIViewController {
 33 |     private final class AppearanceCallbackView: UIView {
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
    |                            `- error: property does not override any property from its superclass
 35 |         var onAppearCallback: (() -> Void)?
 36 |         override func didMoveToWindow() {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:36:23: error: method does not override any method from its superclass
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
 35 |         var onAppearCallback: (() -> Void)?
 36 |         override func didMoveToWindow() {
    |                       `- error: method does not override any method from its superclass
 37 |             if window != nil {
 38 |                 onAppearCallback?()
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:60:44: error: cannot find type 'UIViewController' in scope
 58 |     weak var presenterProxy: UIViewController?
 59 |
 60 |     override func didMove(toParent parent: UIViewController?) {
    |                                            `- error: cannot find type 'UIViewController' in scope
 61 |         super.didMove(toParent: parent)
 62 |         /// Fix of https://github.com/edudnyk/SheeKit/issues/8 - the NavigationView considers sheet presenter
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:60:19: error: method does not override any method from its superclass
 58 |     weak var presenterProxy: UIViewController?
 59 |
 60 |     override func didMove(toParent parent: UIViewController?) {
    |                   `- error: method does not override any method from its superclass
 61 |         super.didMove(toParent: parent)
 62 |         /// Fix of https://github.com/edudnyk/SheeKit/issues/8 - the NavigationView considers sheet presenter
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:83:19: error: method does not override any method from its superclass
 81 |     }
 82 |
 83 |     override func loadView() {
    |                   `- error: method does not override any method from its superclass
 84 |         view = AppearanceCallbackView()
 85 |         view.translatesAutoresizingMaskIntoConstraints = false
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:101:19: error: cannot find type 'UIView' in scope
 99 | }
100 |
101 | private extension UIView {
    |                   `- error: cannot find type 'UIView' in scope
102 |     var nextResponderViewController: UIViewController? {
103 |         guard let next = next as? UIViewController else {
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:117:53: error: cannot find type 'UIViewController' in scope
115 |     @Binding var item: Item?
116 |     let onDismiss: (() -> Void)?
117 |     let sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item>
    |                                                     `- error: cannot find type 'UIViewController' in scope
118 |     let sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void
119 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:118:52: error: cannot find type 'UIViewController' in scope
116 |     let onDismiss: (() -> Void)?
117 |     let sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item>
118 |     let sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void
    |                                                    `- error: cannot find type 'UIViewController' in scope
119 |
120 |     func makeCoordinator() -> AdaptiveDelegate<Item> {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:128:40: error: cannot find type 'Context' in scope
126 |     }
127 |
128 |     func makeUIViewController(context: Context) -> SheetPresenterController { .init() }
    |                                        `- error: cannot find type 'Context' in scope
129 |
130 |     func updateUIViewController(_ presenter: SheetPresenterController, context: Context) {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:130:81: error: cannot find type 'Context' in scope
128 |     func makeUIViewController(context: Context) -> SheetPresenterController { .init() }
129 |
130 |     func updateUIViewController(_ presenter: SheetPresenterController, context: Context) {
    |                                                                                 `- error: cannot find type 'Context' in scope
131 |         let coordinator = context.coordinator
132 |         let dismissAction = dismissAction(coordinator)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:183:70: error: cannot find type 'Context' in scope
181 |     }
182 |
183 |     func updateSheet(_ presenter: SheetPresenterController, context: Context) -> Bool {
    |                                                                      `- error: cannot find type 'Context' in scope
184 |         guard let sheetHost = context.coordinator.sheetHost,
185 |               sheetHost.presentingViewController != nil else { return false }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:114:53: error: cannot find type 'UIViewControllerRepresentable' in scope
112 | }
113 |
114 | struct SheetPresenterControllerRepresentable<Item>: UIViewControllerRepresentable where Item : Identifiable {
    |                                                     `- error: cannot find type 'UIViewControllerRepresentable' in scope
115 |     @Binding var item: Item?
116 |     let onDismiss: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:87:19: error: cannot find type 'UISheetPresentationController' in scope
 85 |         prefersGrabberVisible: Bool = false,
 86 |         preferredCornerRadius: CGFloat? = nil,
 87 |         detents: [UISheetPresentationController.Detent] = [ .large() ],
    |                   `- error: cannot find type 'UISheetPresentationController' in scope
 88 |         selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil,
 89 |         animatesSelectedDetentIdentifierChange: Bool = false,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:88:43: error: cannot find type 'UISheetPresentationController' in scope
 86 |         preferredCornerRadius: CGFloat? = nil,
 87 |         detents: [UISheetPresentationController.Detent] = [ .large() ],
 88 |         selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil,
    |                                           `- error: cannot find type 'UISheetPresentationController' in scope
 89 |         animatesSelectedDetentIdentifierChange: Bool = false,
 90 |         largestUndimmedDetentIdentifier: UISheetPresentationController.Detent.Identifier? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:90:42: error: cannot find type 'UISheetPresentationController' in scope
 88 |         selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil,
 89 |         animatesSelectedDetentIdentifierChange: Bool = false,
 90 |         largestUndimmedDetentIdentifier: UISheetPresentationController.Detent.Identifier? = nil,
    |                                          `- error: cannot find type 'UISheetPresentationController' in scope
 91 |         prefersScrollingExpandsWhenScrolledToEdge: Bool = true,
 92 |         shouldAdjustToSourceView: Bool = false
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ SheeKit (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/AdaptiveDelegate.swift:31:41: error: cannot find type 'UIPopoverPresentationControllerDelegate' in scope
29 | import SwiftUI
30 |
31 | class AdaptiveDelegate<Item>: NSObject, UIPopoverPresentationControllerDelegate where Item : Identifiable {
   |                                         `- error: cannot find type 'UIPopoverPresentationControllerDelegate' in scope
32 |     var performNextPresentationIfNeeded: (() -> Void)?
33 |     var dismissedByUserCallback: DismissAction?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/AdaptiveDelegate.swift:47:69: error: cannot find type 'UIPresentationController' in scope
45 |     }
46 |
47 |     func presentationControllerDidDismiss(_ presentationController: UIPresentationController) {
   |                                                                     `- error: cannot find type 'UIPresentationController' in scope
48 |         dismissedByUserCallback?()
49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/AdaptiveDelegate.swift:51:72: error: cannot find type 'UIPresentationController' in scope
49 |     }
50 |
51 |     func presentationControllerShouldDismiss(_ presentationController: UIPresentationController) -> Bool {
   |                                                                        `- error: cannot find type 'UIPresentationController' in scope
52 |         !isInteractiveDismissDisabled
53 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/AdaptiveDelegate.swift:57:66: error: cannot find type 'UISheetPresentationControllerDelegate' in scope
55 |
56 | @available(iOS 15.0, *)
57 | final class AdaptiveSheetDelegate<Item>: AdaptiveDelegate<Item>, UISheetPresentationControllerDelegate where Item : Identifiable {
   |                                                                  `- error: cannot find type 'UISheetPresentationControllerDelegate' in scope
58 |
59 |     var selectedDetentIdentifierBinding: Binding<UISheetPresentationController.Detent.Identifier?>?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/AdaptiveDelegate.swift:59:50: error: cannot find type 'UISheetPresentationController' in scope
57 | final class AdaptiveSheetDelegate<Item>: AdaptiveDelegate<Item>, UISheetPresentationControllerDelegate where Item : Identifiable {
58 |
59 |     var selectedDetentIdentifierBinding: Binding<UISheetPresentationController.Detent.Identifier?>?
   |                                                  `- error: cannot find type 'UISheetPresentationController' in scope
60 |
61 |     override init() { super.init() }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/AdaptiveDelegate.swift:63:102: error: cannot find type 'UISheetPresentationController' in scope
61 |     override init() { super.init() }
62 |
63 |     func sheetPresentationControllerDidChangeSelectedDetentIdentifier(_ sheetPresentationController: UISheetPresentationController) {
   |                                                                                                      `- error: cannot find type 'UISheetPresentationController' in scope
64 |         selectedDetentIdentifierBinding?.wrappedValue = sheetPresentationController.selectedDetentIdentifier
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:287:52: error: 'DismissAction' is only available in watchOS 8.0 or newer
277 | ///     }
278 | /// ```
279 | public struct DismissAction {
    |               `- note: add @available attribute to enclosing struct
280 |     let closure: () -> Void
281 |
    :
285 |
286 |     @available(iOS 15.0, *)
287 |     internal init(_ custom: Self?, system: SwiftUI.DismissAction?) {
    |              |                                     `- error: 'DismissAction' is only available in watchOS 8.0 or newer
    |              `- note: add @available attribute to enclosing initializer
288 |         closure = {
289 |             if let custom = custom {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:320:16: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
318 |     }
319 |
320 |     static var defaultValue = false
    |                |- warning: static property 'defaultValue' 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 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'defaultValue' 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
321 | }
322 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:325:20: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
323 | extension EnvironmentValues {
324 |     private struct SheeDismissActionEnvironmentKey: EnvironmentKey {
325 |         static var defaultValue: DismissAction?
    |                    |- warning: static property 'defaultValue' 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 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'defaultValue' 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
326 |     }
327 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:329:20: warning: static property 'defaultValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
327 |
328 |     private struct SheeIsPresentedEnvironmentKey: EnvironmentKey {
329 |         static var defaultValue = false
    |                    |- warning: static property 'defaultValue' 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 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'defaultValue' 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
330 |     }
331 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:56:44: error: cannot find type 'UIPopoverArrowDirection' in scope
 54 |     ///   - sourceRectTransform: allows to change the `sourceRect` of the `UIPopoverPresentationController`
 55 |     ///   - adaptiveSheetProperties: properties to assign to adaptive `UISheetPresentationController` which will be used when the app's scene is resized into `.compact` horizontal size class (via multitasking).
 56 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetProperties? = nil)
    |                                            `- error: cannot find type 'UIPopoverArrowDirection' in scope
 57 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 58 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:58:40: error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 56 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetProperties? = nil)
 57 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 58 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
    |                                        `- error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 59 | }
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:58:26: error: cannot find type 'UISheetPresentationController' in scope
 56 |     /// Detents must be specified in order from smallest to largest height.
 57 |     /// Default: an array of only `.large()`
 58 |     public var detents: [UISheetPresentationController.Detent]
    |                          `- error: cannot find type 'UISheetPresentationController' in scope
 59 |
 60 |     /// The identifier of the selected detent. When binding's wrapped value is `nil` or the identifier is not found in detents, the sheet is displayed at the smallest detent.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:63:50: error: cannot find type 'UISheetPresentationController' in scope
 61 |     /// When binding is `nil` (default), the user's chosen detent is considered unmanaged and is never overwritten.
 62 |     /// Default: `nil`
 63 |     public var selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil
    |                                                  `- error: cannot find type 'UISheetPresentationController' in scope
 64 |
 65 |     /// Set to `true` to enforce the sheet to animate adaptation to a newly set ``selectedDetentIdentifier`` which is different from the one that has been used previously.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:71:49: error: cannot find type 'UISheetPresentationController' in scope
 69 |     /// The identifier of the largest detent that is not dimmed. When `nil` or the identifier is not found in detents, all detents are dimmed.
 70 |     /// Default: `nil`
 71 |     public var largestUndimmedDetentIdentifier: UISheetPresentationController.Detent.Identifier?
    |                                                 `- error: cannot find type 'UISheetPresentationController' in scope
 72 |
 73 |     /// If there is a larger detent to expand to than the selected detent, and a descendent scroll view is scrolled to top, this controls whether scrolling down will expand to a larger detent.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:428:46: error: 'LibraryItem' is only available in watchOS 7.0 or newer
405 |
406 | @available(iOS 15.0, *)
407 | public struct Shee_Library: LibraryContentProvider {
    |               `- note: add @available attribute to enclosing struct
408 |     struct SheetContent: View {
409 |         @Environment(\.shee_dismiss) var dismiss
    :
426 |
427 |     @LibraryContentBuilder
428 |     public func modifiers(base: AnyView) -> [LibraryItem] {
    |                 |                            `- error: 'LibraryItem' is only available in watchOS 7.0 or newer
    |                 `- note: add @available attribute to enclosing instance method
429 |         LibraryItem(base.shee(isPresented: .constant(true),
430 |                               presentationStyle: .formSheet(properties: .init(detents: [.medium(), .large()]))) { SheetContent() },
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift:427:6: error: 'LibraryContentBuilder' is only available in watchOS 7.0 or newer
405 |
406 | @available(iOS 15.0, *)
407 | public struct Shee_Library: LibraryContentProvider {
    |               `- note: add @available attribute to enclosing struct
408 |     struct SheetContent: View {
409 |         @Environment(\.shee_dismiss) var dismiss
    :
425 |     }
426 |
427 |     @LibraryContentBuilder
    |      `- error: 'LibraryContentBuilder' is only available in watchOS 7.0 or newer
428 |     public func modifiers(base: AnyView) -> [LibraryItem] {
    |                 `- note: add @available attribute to enclosing instance method
429 |         LibraryItem(base.shee(isPresented: .constant(true),
430 |                               presentationStyle: .formSheet(properties: .init(detents: [.medium(), .large()]))) { SheetContent() },
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:77:44: error: cannot find type 'UIPopoverArrowDirection' in scope
 75 |     ///   - permittedArrowDirections: The arrow directions that you allow for the popover.
 76 |     ///   - sourceRectTransform: allows to change the `sourceRect` of the `UIPopoverPresentationController`
 77 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetPropertiesCompat? = nil)
    |                                            `- error: cannot find type 'UIPopoverArrowDirection' in scope
 78 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 79 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:79:40: error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 77 |     case popover(permittedArrowDirections: UIPopoverArrowDirection = .any, sourceRectTransform: ((CGRect) -> CGRect)? = nil, adaptiveSheetProperties: SheetPropertiesCompat? = nil)
 78 |     /// A custom view presentation style that is managed by a custom presentation controller and one or more custom animator objects.
 79 |     case custom(transitioningDelegate: UIViewControllerTransitioningDelegate?)
    |                                        `- error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 80 | }
 81 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:83:34: error: cannot find type 'UIViewController' in scope
 81 |
 82 | protocol ModalPresentationConfigurator {
 83 |     func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool)
    |                                  `- error: cannot find type 'UIViewController' in scope
 84 | }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:83:63: error: cannot find type 'UIViewController' in scope
 81 |
 82 | protocol ModalPresentationConfigurator {
 83 |     func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool)
    |                                                               `- error: cannot find type 'UIViewController' in scope
 84 | }
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:87:63: error: cannot find type 'UIViewController' in scope
 85 |
 86 | extension ModalPresentationConfigurator {
 87 |     static func setupModalPresentationStyle(_ viewController: UIViewController, style: UIModalPresentationStyle, isInitial: Bool) {
    |                                                               `- error: cannot find type 'UIViewController' in scope
 88 |         if isInitial {
 89 |             viewController.modalPresentationStyle = style
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:87:88: error: cannot find type 'UIModalPresentationStyle' in scope
 85 |
 86 | extension ModalPresentationConfigurator {
 87 |     static func setupModalPresentationStyle(_ viewController: UIViewController, style: UIModalPresentationStyle, isInitial: Bool) {
    |                                                                                        `- error: cannot find type 'UIModalPresentationStyle' in scope
 88 |         if isInitial {
 89 |             viewController.modalPresentationStyle = style
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:93:47: error: cannot find type 'UIViewController' in scope
 91 |     }
 92 |
 93 |     static func setupCustom(_ viewController: UIViewController, transitioningDelegate: UIViewControllerTransitioningDelegate?, isInitial: Bool) {
    |                                               `- error: cannot find type 'UIViewController' in scope
 94 |         setupModalPresentationStyle(viewController, style: .custom, isInitial: isInitial)
 95 |         viewController.transitioningDelegate = transitioningDelegate
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:93:88: error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 91 |     }
 92 |
 93 |     static func setupCustom(_ viewController: UIViewController, transitioningDelegate: UIViewControllerTransitioningDelegate?, isInitial: Bool) {
    |                                                                                        `- error: cannot find type 'UIViewControllerTransitioningDelegate' in scope
 94 |         setupModalPresentationStyle(viewController, style: .custom, isInitial: isInitial)
 95 |         viewController.transitioningDelegate = transitioningDelegate
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:98:50: error: cannot find type 'UIViewController' in scope
 96 |     }
 97 |
 98 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
 99 |         setupModalPresentationStyle(viewController, style: .pageSheet, isInitial: isInitial)
100 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:98:79: error: cannot find type 'UIViewController' in scope
 96 |     }
 97 |
 98 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
 99 |         setupModalPresentationStyle(viewController, style: .pageSheet, isInitial: isInitial)
100 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:102:50: error: cannot find type 'UIViewController' in scope
100 |     }
101 |
102 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
103 |         setupModalPresentationStyle(viewController, style: .formSheet, isInitial: isInitial)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:102:79: error: cannot find type 'UIViewController' in scope
100 |     }
101 |
102 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
103 |         setupModalPresentationStyle(viewController, style: .formSheet, isInitial: isInitial)
104 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:106:48: error: cannot find type 'UIViewController' in scope
104 |     }
105 |
106 |     static func setupPopover(_ viewController: UIViewController,
    |                                                `- error: cannot find type 'UIViewController' in scope
107 |                              presenter: UIViewController,
108 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:107:41: error: cannot find type 'UIViewController' in scope
105 |
106 |     static func setupPopover(_ viewController: UIViewController,
107 |                              presenter: UIViewController,
    |                                         `- error: cannot find type 'UIViewController' in scope
108 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
109 |                              permittedArrowDirections: UIPopoverArrowDirection,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:109:56: error: cannot find type 'UIPopoverArrowDirection' in scope
107 |                              presenter: UIViewController,
108 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
109 |                              permittedArrowDirections: UIPopoverArrowDirection,
    |                                                        `- error: cannot find type 'UIPopoverArrowDirection' in scope
110 |                              isInitial: Bool) {
111 |         setupModalPresentationStyle(viewController, style: .popover, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:123:50: error: cannot find type 'UISheetPresentationController' in scope
121 | @available(iOS 15, *)
122 | protocol SheetPropertiesPresentationConfigurator: ModalPresentationConfigurator {
123 |     var selectedDetentIdentifierBinding: Binding<UISheetPresentationController.Detent.Identifier?>? { get }
    |                                                  `- error: cannot find type 'UISheetPresentationController' in scope
124 | }
125 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:128:50: error: cannot find type 'UIViewController' in scope
126 | @available(iOS 15, *)
127 | extension SheetPropertiesPresentationConfigurator {
128 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
129 |         setupPageSheet(viewController, presenter: presenter, isInitial: isInitial)
130 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:128:79: error: cannot find type 'UIViewController' in scope
126 | @available(iOS 15, *)
127 | extension SheetPropertiesPresentationConfigurator {
128 |     static func setupPageSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
129 |         setupPageSheet(viewController, presenter: presenter, isInitial: isInitial)
130 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:133:50: error: cannot find type 'UIViewController' in scope
131 |     }
132 |
133 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                  `- error: cannot find type 'UIViewController' in scope
134 |         setupFormSheet(viewController, presenter: presenter, isInitial: isInitial)
135 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:133:79: error: cannot find type 'UIViewController' in scope
131 |     }
132 |
133 |     static func setupFormSheet(_ viewController: UIViewController, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                                               `- error: cannot find type 'UIViewController' in scope
134 |         setupFormSheet(viewController, presenter: presenter, isInitial: isInitial)
135 |         setup(viewController.sheetPresentationController, presenter: presenter, properties: properties, isInitial: isInitial)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:138:48: error: cannot find type 'UIViewController' in scope
136 |     }
137 |
138 |     static func setupPopover(_ viewController: UIViewController,
    |                                                `- error: cannot find type 'UIViewController' in scope
139 |                              presenter: UIViewController,
140 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:139:41: error: cannot find type 'UIViewController' in scope
137 |
138 |     static func setupPopover(_ viewController: UIViewController,
139 |                              presenter: UIViewController,
    |                                         `- error: cannot find type 'UIViewController' in scope
140 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
141 |                              permittedArrowDirections: UIPopoverArrowDirection,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:141:56: error: cannot find type 'UIPopoverArrowDirection' in scope
139 |                              presenter: UIViewController,
140 |                              sourceRectTransform: ((CGRect) -> CGRect)?,
141 |                              permittedArrowDirections: UIPopoverArrowDirection,
    |                                                        `- error: cannot find type 'UIPopoverArrowDirection' in scope
142 |                              adaptiveSheetProperties: SheetProperties?,
143 |                              isInitial: Bool) {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:154:54: error: cannot find type 'UISheetPresentationController' in scope
152 |     }
153 |
154 |     static func setup(_ sheetPresentationController: UISheetPresentationController?, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                      `- error: cannot find type 'UISheetPresentationController' in scope
155 |         guard let sheetPresentationController = sheetPresentationController,
156 |               let properties = properties
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:154:97: error: cannot find type 'UIViewController' in scope
152 |     }
153 |
154 |     static func setup(_ sheetPresentationController: UISheetPresentationController?, presenter: UIViewController, properties: SheetProperties?, isInitial: Bool) {
    |                                                                                                 `- error: cannot find type 'UIViewController' in scope
155 |         guard let sheetPresentationController = sheetPresentationController,
156 |               let properties = properties
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:207:11: error: cannot find type 'UISheetPresentationController' in scope
205 |
206 | @available(iOS 15, *)
207 | extension UISheetPresentationController.Detent: Comparable {
    |           `- error: cannot find type 'UISheetPresentationController' in scope
208 |     public static func < (lhs: UISheetPresentationController.Detent, rhs: UISheetPresentationController.Detent) -> Bool {
209 |         lhs == medium() && rhs == large() ? true : false
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:215:59: error: cannot find type 'UISheetPresentationController' in scope
213 | @available(iOS 15, *)
214 | extension ModalPresentationStyle: SheetPropertiesPresentationConfigurator {
215 |     internal var selectedDetentIdentifierBinding: Binding<UISheetPresentationController.Detent.Identifier?>? {
    |                                                           `- error: cannot find type 'UISheetPresentationController' in scope
216 |         switch self {
217 |         case .pageSheet(let properties): return properties?.selectedDetentIdentifier
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:224:43: error: cannot find type 'UIViewController' in scope
222 |     }
223 |
224 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                           `- error: cannot find type 'UIViewController' in scope
225 |         switch self {
226 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:224:72: error: cannot find type 'UIViewController' in scope
222 |     }
223 |
224 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                        `- error: cannot find type 'UIViewController' in scope
225 |         switch self {
226 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:250:43: error: cannot find type 'UIViewController' in scope
248 |
249 | extension ModalPresentationStyleCompat: ModalPresentationConfigurator {
250 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                           `- error: cannot find type 'UIViewController' in scope
251 |         switch self {
252 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:250:72: error: cannot find type 'UIViewController' in scope
248 |
249 | extension ModalPresentationStyleCompat: ModalPresentationConfigurator {
250 |     internal func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool) {
    |                                                                        `- error: cannot find type 'UIViewController' in scope
251 |         switch self {
252 |         case .automatic:
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:32:43: error: cannot find type 'UIHostingController' in scope
 30 | import SwiftUI
 31 |
 32 | final class SheetHostingController<Item>: UIHostingController<AnyView> where Item : Identifiable {
    |                                           `- error: cannot find type 'UIHostingController' in scope
 33 |     var itemId: Item.ID?
 34 |     var item: Item
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:37:42: error: cannot find type 'UIStatusBarStyle' in scope
 35 |     var onDismiss: (() -> Void)?
 36 |     var overrideDisablesAutomaticKeyboardDismissal: Bool?
 37 |     var overridePreferredStatusBarStyle: UIStatusBarStyle?
    |                                          `- error: cannot find type 'UIStatusBarStyle' in scope
 38 |     var overridePrefersStatusBarHidden: Bool?
 39 |     var overridePreferredStatusBarUpdateAnimation: UIStatusBarAnimation?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:39:52: error: cannot find type 'UIStatusBarAnimation' in scope
 37 |     var overridePreferredStatusBarStyle: UIStatusBarStyle?
 38 |     var overridePrefersStatusBarHidden: Bool?
 39 |     var overridePreferredStatusBarUpdateAnimation: UIStatusBarAnimation?
    |                                                    `- error: cannot find type 'UIStatusBarAnimation' in scope
 40 |     var overridePrefersPointerLocked: Bool?
 41 |     var overridePreferredScreenEdgesDeferringSystemGestures: UIRectEdge?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:82:43: error: cannot find type 'UIStatusBarStyle' in scope
 80 |     }
 81 |
 82 |     override var preferredStatusBarStyle: UIStatusBarStyle {
    |                                           `- error: cannot find type 'UIStatusBarStyle' in scope
 83 |         guard let r = overridePreferredStatusBarStyle else { return super.preferredStatusBarStyle }
 84 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:82:18: error: property does not override any property from its superclass
 80 |     }
 81 |
 82 |     override var preferredStatusBarStyle: UIStatusBarStyle {
    |                  `- error: property does not override any property from its superclass
 83 |         guard let r = overridePreferredStatusBarStyle else { return super.preferredStatusBarStyle }
 84 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:87:18: error: property does not override any property from its superclass
 85 |     }
 86 |
 87 |     override var prefersStatusBarHidden: Bool {
    |                  `- error: property does not override any property from its superclass
 88 |         guard let r = overridePrefersStatusBarHidden else { return super.prefersStatusBarHidden }
 89 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:93:18: error: property does not override any property from its superclass
 91 |
 92 |     @available(iOS 14, *)
 93 |     override var prefersPointerLocked: Bool {
    |                  `- error: property does not override any property from its superclass
 94 |         guard let r = overridePrefersPointerLocked else { return super.prefersPointerLocked }
 95 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:98:18: error: property does not override any property from its superclass
 96 |     }
 97 |
 98 |     override var prefersHomeIndicatorAutoHidden: Bool {
    |                  `- error: property does not override any property from its superclass
 99 |         guard let r = overridePrefersHomeIndicatorAutoHidden else { return super.prefersHomeIndicatorAutoHidden }
100 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:103:18: error: property does not override any property from its superclass
101 |     }
102 |
103 |     override var preferredScreenEdgesDeferringSystemGestures: UIRectEdge {
    |                  `- error: property does not override any property from its superclass
104 |         guard let r = overridePreferredScreenEdgesDeferringSystemGestures else { return super.preferredScreenEdgesDeferringSystemGestures }
105 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:108:53: error: cannot find type 'UIStatusBarAnimation' in scope
106 |     }
107 |
108 |     override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
    |                                                     `- error: cannot find type 'UIStatusBarAnimation' in scope
109 |         guard let r = overridePreferredStatusBarUpdateAnimation else { return super.preferredStatusBarUpdateAnimation }
110 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift:108:18: error: property does not override any property from its superclass
106 |     }
107 |
108 |     override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
    |                  `- error: property does not override any property from its superclass
109 |         guard let r = overridePreferredStatusBarUpdateAnimation else { return super.preferredStatusBarUpdateAnimation }
110 |         return r
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:48:61: error: cannot find type 'UIViewController' in scope
46 |     }
47 |
48 |     private var sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item> { { coordinator, presenter, item, dismiss in
   |                                                             `- error: cannot find type 'UIViewController' in scope
49 |         let rootView = sheetContent(for: item, isPresented: true, dismiss: dismiss) { [weak coordinator] isInteractiveDismissDisabled in
50 |             coordinator?.isInteractiveDismissDisabled = isInteractiveDismissDisabled
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:64:60: error: cannot find type 'UIViewController' in scope
62 |     } }
63 |
64 |     private var sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void { { coordinator, presenter, isPresented, dismiss in
   |                                                            `- error: cannot find type 'UIViewController' in scope
65 |         guard let sheetHost = coordinator.sheetHost else { return }
66 |         if isPresented {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:40:38: error: cannot find type 'UIModalTransitionStyle' in scope
 38 |     /// To change the transition type, you must set this property before presenting the `View`. The default value for this property is `UIModalTransitionStyle.coverVertical`.
 39 |     /// For a list of possible transition styles, and their compatibility with the available presentation styles, see the `UIModalTransitionStyle` constant descriptions.
 40 |     public var modalTransitionStyle: UIModalTransitionStyle = .coverVertical
    |                                      `- error: cannot find type 'UIModalTransitionStyle' in scope
 41 |
 42 |     /// Specifies whether a `View` takes over control of status bar appearance from the presenting `View`.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:69:41: error: cannot find type 'UIStatusBarStyle' in scope
 67 |
 68 |     /// The preferred status bar style for the `View`.
 69 |     public var preferredStatusBarStyle: UIStatusBarStyle?
    |                                         `- error: cannot find type 'UIStatusBarStyle' in scope
 70 |
 71 |     /// Specifies whether the view controller prefers the status bar to be hidden or shown.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:78:51: error: cannot find type 'UIStatusBarAnimation' in scope
 76 |     /// Default value is `nil`, in which case system uses `UIStatusBarAnimation.fade`.
 77 |     /// This property comes into play only when you actively change the status bar’s show/hide state by changing the ``prefersStatusBarHidden`` attribute.
 78 |     public var preferredStatusBarUpdateAnimation: UIStatusBarAnimation?
    |                                                   `- error: cannot find type 'UIStatusBarAnimation' in scope
 79 |
 80 |     /// Specifies whether the presentation hosting the `View` is forced into modal behavior.
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:58:30: error: cannot find type 'UIViewController' in scope
 56 |     }
 57 |
 58 |     weak var presenterProxy: UIViewController?
    |                              `- error: cannot find type 'UIViewController' in scope
 59 |
 60 |     override func didMove(toParent parent: UIViewController?) {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:32:39: error: cannot find type 'UIViewController' in scope
 30 | import SwiftUI
 31 |
 32 | final class SheetPresenterController: UIViewController {
    |                                       `- error: cannot find type 'UIViewController' in scope
 33 |     private final class AppearanceCallbackView: UIView {
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:33:49: error: cannot find type 'UIView' in scope
 31 |
 32 | final class SheetPresenterController: UIViewController {
 33 |     private final class AppearanceCallbackView: UIView {
    |                                                 `- error: cannot find type 'UIView' in scope
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
 35 |         var onAppearCallback: (() -> Void)?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:34:28: error: property does not override any property from its superclass
 32 | final class SheetPresenterController: UIViewController {
 33 |     private final class AppearanceCallbackView: UIView {
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
    |                            `- error: property does not override any property from its superclass
 35 |         var onAppearCallback: (() -> Void)?
 36 |         override func didMoveToWindow() {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:36:23: error: method does not override any method from its superclass
 34 |         override class var layerClass: AnyClass { CATransformLayer.self }
 35 |         var onAppearCallback: (() -> Void)?
 36 |         override func didMoveToWindow() {
    |                       `- error: method does not override any method from its superclass
 37 |             if window != nil {
 38 |                 onAppearCallback?()
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:60:44: error: cannot find type 'UIViewController' in scope
 58 |     weak var presenterProxy: UIViewController?
 59 |
 60 |     override func didMove(toParent parent: UIViewController?) {
    |                                            `- error: cannot find type 'UIViewController' in scope
 61 |         super.didMove(toParent: parent)
 62 |         /// Fix of https://github.com/edudnyk/SheeKit/issues/8 - the NavigationView considers sheet presenter
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:60:19: error: method does not override any method from its superclass
 58 |     weak var presenterProxy: UIViewController?
 59 |
 60 |     override func didMove(toParent parent: UIViewController?) {
    |                   `- error: method does not override any method from its superclass
 61 |         super.didMove(toParent: parent)
 62 |         /// Fix of https://github.com/edudnyk/SheeKit/issues/8 - the NavigationView considers sheet presenter
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:83:19: error: method does not override any method from its superclass
 81 |     }
 82 |
 83 |     override func loadView() {
    |                   `- error: method does not override any method from its superclass
 84 |         view = AppearanceCallbackView()
 85 |         view.translatesAutoresizingMaskIntoConstraints = false
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:101:19: error: cannot find type 'UIView' in scope
 99 | }
100 |
101 | private extension UIView {
    |                   `- error: cannot find type 'UIView' in scope
102 |     var nextResponderViewController: UIViewController? {
103 |         guard let next = next as? UIViewController else {
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:117:53: error: cannot find type 'UIViewController' in scope
115 |     @Binding var item: Item?
116 |     let onDismiss: (() -> Void)?
117 |     let sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item>
    |                                                     `- error: cannot find type 'UIViewController' in scope
118 |     let sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void
119 |
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:118:52: error: cannot find type 'UIViewController' in scope
116 |     let onDismiss: (() -> Void)?
117 |     let sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item>
118 |     let sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void
    |                                                    `- error: cannot find type 'UIViewController' in scope
119 |
120 |     func makeCoordinator() -> AdaptiveDelegate<Item> {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:128:40: error: cannot find type 'Context' in scope
126 |     }
127 |
128 |     func makeUIViewController(context: Context) -> SheetPresenterController { .init() }
    |                                        `- error: cannot find type 'Context' in scope
129 |
130 |     func updateUIViewController(_ presenter: SheetPresenterController, context: Context) {
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:130:81: error: cannot find type 'Context' in scope
128 |     func makeUIViewController(context: Context) -> SheetPresenterController { .init() }
129 |
130 |     func updateUIViewController(_ presenter: SheetPresenterController, context: Context) {
    |                                                                                 `- error: cannot find type 'Context' in scope
131 |         let coordinator = context.coordinator
132 |         let dismissAction = dismissAction(coordinator)
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:183:70: error: cannot find type 'Context' in scope
181 |     }
182 |
183 |     func updateSheet(_ presenter: SheetPresenterController, context: Context) -> Bool {
    |                                                                      `- error: cannot find type 'Context' in scope
184 |         guard let sheetHost = context.coordinator.sheetHost,
185 |               sheetHost.presentingViewController != nil else { return false }
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:114:53: error: cannot find type 'UIViewControllerRepresentable' in scope
112 | }
113 |
114 | struct SheetPresenterControllerRepresentable<Item>: UIViewControllerRepresentable where Item : Identifiable {
    |                                                     `- error: cannot find type 'UIViewControllerRepresentable' in scope
115 |     @Binding var item: Item?
116 |     let onDismiss: (() -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:87:19: error: cannot find type 'UISheetPresentationController' in scope
 85 |         prefersGrabberVisible: Bool = false,
 86 |         preferredCornerRadius: CGFloat? = nil,
 87 |         detents: [UISheetPresentationController.Detent] = [ .large() ],
    |                   `- error: cannot find type 'UISheetPresentationController' in scope
 88 |         selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil,
 89 |         animatesSelectedDetentIdentifierChange: Bool = false,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:88:43: error: cannot find type 'UISheetPresentationController' in scope
 86 |         preferredCornerRadius: CGFloat? = nil,
 87 |         detents: [UISheetPresentationController.Detent] = [ .large() ],
 88 |         selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil,
    |                                           `- error: cannot find type 'UISheetPresentationController' in scope
 89 |         animatesSelectedDetentIdentifierChange: Bool = false,
 90 |         largestUndimmedDetentIdentifier: UISheetPresentationController.Detent.Identifier? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift:90:42: error: cannot find type 'UISheetPresentationController' in scope
 88 |         selectedDetentIdentifier: Binding<UISheetPresentationController.Detent.Identifier?>? = nil,
 89 |         animatesSelectedDetentIdentifierChange: Bool = false,
 90 |         largestUndimmedDetentIdentifier: UISheetPresentationController.Detent.Identifier? = nil,
    |                                          `- error: cannot find type 'UISheetPresentationController' in scope
 91 |         prefersScrollingExpandsWhenScrolledToEdge: Bool = true,
 92 |         shouldAdjustToSourceView: Bool = false
SwiftCompile normal arm64_32 Compiling\ UIViewControllerProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/UIViewControllerProxy.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:40:38: error: cannot find type 'UIModalTransitionStyle' in scope
    public var modalTransitionStyle: UIModalTransitionStyle = .coverVertical
                                     ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:69:41: error: cannot find type 'UIStatusBarStyle' in scope
    public var preferredStatusBarStyle: UIStatusBarStyle?
                                        ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:78:51: error: cannot find type 'UIStatusBarAnimation' in scope
    public var preferredStatusBarUpdateAnimation: UIStatusBarAnimation?
                                                  ^~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64_32 Compiling\ SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetPresenterController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:58:30: error: cannot find type 'UIViewController' in scope
    weak var presenterProxy: UIViewController?
                             ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:32:39: error: cannot find type 'UIViewController' in scope
final class SheetPresenterController: UIViewController {
                                      ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:33:49: error: cannot find type 'UIView' in scope
    private final class AppearanceCallbackView: UIView {
                                                ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:34:28: error: property does not override any property from its superclass
        override class var layerClass: AnyClass { CATransformLayer.self }
        ~~~~~~~~           ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:36:23: error: method does not override any method from its superclass
        override func didMoveToWindow() {
        ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:60:44: error: cannot find type 'UIViewController' in scope
    override func didMove(toParent parent: UIViewController?) {
                                           ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:60:19: error: method does not override any method from its superclass
    override func didMove(toParent parent: UIViewController?) {
    ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:83:19: error: method does not override any method from its superclass
    override func loadView() {
    ~~~~~~~~      ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:101:19: error: cannot find type 'UIView' in scope
private extension UIView {
                  ^~~~~~
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:117:53: error: cannot find type 'UIViewController' in scope
    let sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item>
                                                    ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:118:52: error: cannot find type 'UIViewController' in scope
    let sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void
                                                   ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:128:40: error: cannot find type 'Context' in scope
    func makeUIViewController(context: Context) -> SheetPresenterController { .init() }
                                       ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:130:81: error: cannot find type 'Context' in scope
    func updateUIViewController(_ presenter: SheetPresenterController, context: Context) {
                                                                                ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:183:70: error: cannot find type 'Context' in scope
    func updateSheet(_ presenter: SheetPresenterController, context: Context) -> Bool {
                                                                     ^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:114:53: error: cannot find type 'UIViewControllerRepresentable' in scope
struct SheetPresenterControllerRepresentable<Item>: UIViewControllerRepresentable where Item : Identifiable {
                                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:34:51: error: cannot find 'CATransformLayer' in scope
        override class var layerClass: AnyClass { CATransformLayer.self }
                                                  ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:37:16: error: cannot find 'window' in scope
            if window != nil {
               ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:45:16: error: cannot find 'window' in scope
            if window != nil {
               ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:61:9: error: 'super' members cannot be referenced in a root class
        super.didMove(toParent: parent)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:64:22: error: cannot find type 'UINavigationController' in scope
        if parent is UINavigationController || parent is UITabBarController || parent is UISplitViewController || parent is UIPageViewController {
                     ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:64:58: error: cannot find type 'UITabBarController' in scope
        if parent is UINavigationController || parent is UITabBarController || parent is UISplitViewController || parent is UIPageViewController {
                                                         ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:64:90: error: cannot find type 'UISplitViewController' in scope
        if parent is UINavigationController || parent is UITabBarController || parent is UISplitViewController || parent is UIPageViewController {
                                                                                         ^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:64:125: error: cannot find type 'UIPageViewController' in scope
        if parent is UINavigationController || parent is UITabBarController || parent is UISplitViewController || parent is UIPageViewController {
                                                                                                                            ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:66:13: error: cannot find 'willMove' in scope
            willMove(toParent: nil)
            ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:66:32: error: 'nil' requires a contextual type
            willMove(toParent: nil)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:67:13: error: cannot find 'removeFromParent' in scope
            removeFromParent()
            ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:74:39: error: cannot find 'isViewLoaded' in scope
                  proxy.isViewLoaded, isViewLoaded,
                                      ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:75:19: error: cannot find 'view' in scope
                  view.isDescendant(of: proxy.view)
                  ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:77:34: error: 'nil' requires a contextual type
                presenterProxy = nil
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:84:9: error: cannot find 'view' in scope
        view = AppearanceCallbackView()
        ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:85:9: error: cannot find 'view' in scope
        view.translatesAutoresizingMaskIntoConstraints = false
        ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:90:44: error: cannot find 'view' in scope
        guard let appearanceCallbackView = view as? AppearanceCallbackView else { return }
                                           ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:96:15: error: cannot find 'isViewLoaded' in scope
        guard isViewLoaded, let appearanceCallbackView = view as? AppearanceCallbackView else { return }
              ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:96:58: error: cannot find 'view' in scope
        guard isViewLoaded, let appearanceCallbackView = view as? AppearanceCallbackView else { return }
                                                         ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:179:23: error: call to main actor-isolated instance method 'cancelSheduledOnAppear()' in a synchronous nonisolated context
            presenter.cancelSheduledOnAppear()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:95:10: note: calls to instance method 'cancelSheduledOnAppear()' from outside of its actor context are implicitly asynchronous
    func cancelSheduledOnAppear() {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:130:10: note: add '@MainActor' to make instance method 'updateUIViewController(_:context:)' part of global actor 'MainActor'
    func updateUIViewController(_ presenter: SheetPresenterController, context: Context) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:197:53: error: value of type 'SheetHostingController<Item>' has no member 'presentingViewController'
           let presentingViewController = sheetHost.presentingViewController,
                                          ~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:208:22: error: value of type 'SheetPresenterController' has no member 'parent'
        if presenter.parent != nil {
           ~~~~~~~~~ ^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:209:23: error: value of type 'SheetPresenterController' has no member 'willMove'
            presenter.willMove(toParent: nil)
            ~~~~~~~~~ ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:209:42: error: 'nil' requires a contextual type
            presenter.willMove(toParent: nil)
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:210:26: error: value of type 'SheetPresenterController' has no member 'isViewLoaded'
            if presenter.isViewLoaded {
               ~~~~~~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:211:27: error: value of type 'SheetPresenterController' has no member 'view'
                presenter.view.removeFromSuperview()
                ~~~~~~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:213:23: error: value of type 'SheetPresenterController' has no member 'removeFromParent'
            presenter.removeFromParent()
            ~~~~~~~~~ ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:214:29: error: value of type 'SheetPresenterController' has no member 'isViewLoaded'
        } else if presenter.isViewLoaded {
                  ~~~~~~~~~ ^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:215:23: error: value of type 'SheetPresenterController' has no member 'view'
            presenter.view.removeFromSuperview()
            ~~~~~~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:204:19: error: call to main actor-isolated instance method 'cancelSheduledOnAppear()' in a synchronous nonisolated context
        presenter.cancelSheduledOnAppear()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:95:10: note: calls to instance method 'cancelSheduledOnAppear()' from outside of its actor context are implicitly asynchronous
    func cancelSheduledOnAppear() {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:195:17: note: add '@MainActor' to make static method 'dismantleUIViewController(_:coordinator:)' part of global actor 'MainActor'
    static func dismantleUIViewController(_ presenter: SheetPresenterController, coordinator: AdaptiveDelegate<Item>) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:226:39: error: value of type 'SheetHostingController<Item>' has no member 'presentingViewController'
            if coordinator.sheetHost?.presentingViewController == nil {
               ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:102:38: error: cannot find type 'UIViewController' in scope
    var nextResponderViewController: UIViewController? {
                                     ^~~~~~~~~~~~~~~~
SwiftCompile normal armv7k Compiling\ SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.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/SheeKit/SheetHostingController.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetHostingController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ UIViewControllerProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.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/SheeKit/UIViewControllerProxy.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64/UIViewControllerProxy.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.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/SheeKit/SheetPresenterController.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheetPresenterController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 Compiling\ SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift (in target 'SheeKit' from project 'SheeKit')
    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/SheeKit/AdaptiveDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetHostingController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SheeKit -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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.o -index-unit-output-path /SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/arm64_32/SheetModifier.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:83:34: error: cannot find type 'UIViewController' in scope
    func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool)
                                 ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/ModalPresentationStyle.swift:83:63: error: cannot find type 'UIViewController' in scope
    func setup(_ viewController: UIViewController, presenter: UIViewController, isInitial: Bool)
                                                              ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:48:61: error: cannot find type 'UIViewController' in scope
    private var sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item> { { coordinator, presenter, item, dismiss in
                                                            ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:64:60: error: cannot find type 'UIViewController' in scope
    private var sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void { { coordinator, presenter, isPresented, dismiss in
                                                           ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:40:38: error: cannot find type 'UIModalTransitionStyle' in scope
    public var modalTransitionStyle: UIModalTransitionStyle = .coverVertical
                                     ^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:69:41: error: cannot find type 'UIStatusBarStyle' in scope
    public var preferredStatusBarStyle: UIStatusBarStyle?
                                        ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift:78:51: error: cannot find type 'UIStatusBarAnimation' in scope
    public var preferredStatusBarUpdateAnimation: UIStatusBarAnimation?
                                                  ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:117:53: error: cannot find type 'UIViewController' in scope
    let sheetHostProvider: (AdaptiveDelegate<Item>, UIViewController, Item, DismissAction) -> SheetHostingController<Item>
                                                    ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:118:52: error: cannot find type 'UIViewController' in scope
    let sheetHostUpdater: (AdaptiveDelegate<Item>, UIViewController, Bool, DismissAction) -> Void
                                                   ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:42:25: error: generic parameter 'Item' could not be inferred
        content.overlay(SheetPresenterControllerRepresentable(item: $item,
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift:114:46: note: 'Item' declared as parameter to type 'SheetPresenterControllerRepresentable'
struct SheetPresenterControllerRepresentable<Item>: UIViewControllerRepresentable where Item : Identifiable {
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift:42:25: note: explicitly specify the generic arguments to fix this issue
        content.overlay(SheetPresenterControllerRepresentable(item: $item,
                        ^
                                                             <<#Item: Identifiable#>>
SwiftDriver\ Compilation\ Requirements SheeKit normal armv7k com.apple.xcode.tools.swift.compiler (in target 'SheeKit' from project 'SheeKit')
    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 SheeKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit.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-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit-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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit_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/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SheeKit.build/Debug-watchos/SheeKit.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/SheeKit.build/Debug-watchos/SheeKit.build/Objects-normal/armv7k/SheeKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'SheeKit' from project 'SheeKit')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal armv7k Emitting\ module\ for\ SheeKit (in target 'SheeKit' from project 'SheeKit')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ SheeKit (in target 'SheeKit' from project 'SheeKit')
	SwiftCompile normal arm64_32 Compiling\ UIViewControllerProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift (in target 'SheeKit' from project 'SheeKit')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/UIViewControllerProxy.swift (in target 'SheeKit' from project 'SheeKit')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetPresenterController.swift (in target 'SheeKit' from project 'SheeKit')
	SwiftCompile normal arm64_32 Compiling\ SheetModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift (in target 'SheeKit' from project 'SheeKit')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/SheeKit/SheetModifier.swift (in target 'SheeKit' from project 'SheeKit')
(7 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.