Build Information
Failed to build InputBarAccessoryView, reference master (0451bb
), with Swift 6.2 (beta) for watchOS using Xcode 26.0 on 10 Sep 2025 07:37:52 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme InputBarAccessoryView -destination generic/platform=watchOS
Build Log
setContentHuggingPriority(UILayoutPriority(rawValue: 500), for: .horizontal)
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:17:15: note: 'UILayoutPriority' has been explicitly marked unavailable here
typedef float UILayoutPriority NS_TYPED_EXTENSIBLE_ENUM API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:145:69: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
private var onKeyboardSwipeGestureAction: ((InputBarButtonItem, UISwipeGestureRecognizer) -> Void)?
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:244:98: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func onKeyboardSwipeGesture(_ action: @escaping (_ item: InputBarButtonItem, _ gesture: UISwipeGestureRecognizer) -> Void) -> Self {
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:321:56: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func keyboardSwipeGestureAction(with gesture: UISwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:36:32: error: 'UIButton' is unavailable in watchOS
open class InputBarButtonItem: UIButton, InputItem {
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:49:12: note: 'UIButton' has been explicitly marked unavailable here
@interface UIButton : UIControl <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:45:31: error: 'UIActivityIndicatorView' is unavailable in watchOS
private let activityView: UIActivityIndicatorView = {
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:46:19: error: 'UIActivityIndicatorView' is unavailable in watchOS
let view: UIActivityIndicatorView
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:49:20: error: 'UIActivityIndicatorView' is unavailable in watchOS
view = UIActivityIndicatorView(style: .medium)
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:49:52: error: 'medium' is unavailable in watchOS
view = UIActivityIndicatorView(style: .medium)
^~~~~~
UIKit.UIActivityIndicatorView.Style.medium:4:10: note: 'medium' has been explicitly marked unavailable here
case medium }
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:51:20: error: 'UIActivityIndicatorView' is unavailable in watchOS
view = UIActivityIndicatorView(style: .gray)
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:51:52: error: 'gray' is unavailable in watchOS
view = UIActivityIndicatorView(style: .gray)
^~~~
UIKit.UIActivityIndicatorView.Style.gray:4:10: note: 'gray' has been explicitly marked unavailable here
case gray }
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/NSNotification+Extensions.swift:56:25: error: 'UIView' is unavailable in watchOS
var animationCurve: UIView.AnimationCurve? {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/NSNotification+Extensions.swift:62:27: error: 'UIView' is unavailable in watchOS
var animationOptions: UIView.AnimationOptions {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UITextView+Extensions.swift:11:18: error: 'UITextView' is unavailable in watchOS
public extension UITextView {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:32: error: 'NSLayoutYAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:72:12: note: 'NSLayoutYAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutYAxisAnchor : NSLayoutAnchor<NSLayoutYAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:66: error: 'NSLayoutXAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:64:12: note: 'NSLayoutXAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutXAxisAnchor : NSLayoutAnchor<NSLayoutXAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:102: error: 'NSLayoutYAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:72:12: note: 'NSLayoutYAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutYAxisAnchor : NSLayoutAnchor<NSLayoutYAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:137: error: 'NSLayoutXAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:64:12: note: 'NSLayoutXAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutXAxisAnchor : NSLayoutAnchor<NSLayoutXAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:336: error: 'NSLayoutConstraint' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:30:20: error: 'UIView' is unavailable in watchOS
internal extension UIView {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:40:30: error: 'UIView' is unavailable in watchOS
open var backgroundView: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:41:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:41:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:50:27: error: 'UIView' is unavailable in watchOS
open var contentView: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:51:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:51:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:62:29: error: 'UIVisualEffectView' is unavailable in watchOS
open lazy var blurView: UIVisualEffectView = {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h:28:12: note: 'UIVisualEffectView' has been explicitly marked unavailable here
@interface UIVisualEffectView : UIView <NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:63:26: error: 'UIBlurEffect' is unavailable in watchOS
var blurEffect = UIBlurEffect(style: .light)
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:61:12: note: 'UIBlurEffect' has been explicitly marked unavailable here
@interface UIBlurEffect : UIVisualEffect
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:65:26: error: 'UIBlurEffect' is unavailable in watchOS
blurEffect = UIBlurEffect(style: .systemMaterial)
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:61:12: note: 'UIBlurEffect' has been explicitly marked unavailable here
@interface UIBlurEffect : UIVisualEffect
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:65:47: error: 'systemMaterial' is unavailable in watchOS
blurEffect = UIBlurEffect(style: .systemMaterial)
^~~~~~~~~~~~~~
UIKit.UIBlurEffect.Style.systemMaterial:4:10: note: 'systemMaterial' has been explicitly marked unavailable here
case systemMaterial }
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:67:20: error: 'UIVisualEffectView' is unavailable in watchOS
let view = UIVisualEffectView(effect: blurEffect)
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h:28:12: note: 'UIVisualEffectView' has been explicitly marked unavailable here
@interface UIVisualEffectView : UIView <NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:86:32: error: 'init()' is unavailable in watchOS
public let separatorLine = SeparatorLine()
^~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:136:53: error: 'UIView' is unavailable in watchOS
public private(set) weak var middleContentView: UIView?
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:139:43: error: 'UIView' is unavailable in watchOS
private let middleContentViewWrapper: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:140:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:140:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:147:21: error: 'systemBackground' is unavailable in watchOS
return .systemBackground
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:210:49: note: 'systemBackground' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBackgroundColor API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:347:39: error: 'NSLayoutConstraint' is unavailable in watchOS
private var textViewHeightAnchor: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:353:31: error: 'NSLayoutConstraint' is unavailable in watchOS
private var windowAnchor: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:376:59: error: 'UIView' is unavailable in watchOS
open override func willMove(toSuperview newSuperview: UIView?) {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:511:46: error: 'UIWindow' is unavailable in watchOS
private func setupConstraints(to window: UIWindow?) {
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:22:12: note: 'UIWindow' has been explicitly marked unavailable here
@interface UIWindow : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:605:65: error: 'UIEvent' is unavailable in watchOS
open override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h:62:12: note: 'UIEvent' has been explicitly marked unavailable here
@interface UIEvent : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:699:44: error: 'UIView' is unavailable in watchOS
open func setMiddleContentView(_ view: UIView?, animated: Bool) {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:850:76: error: 'UITraitCollection' is unavailable in watchOS
open override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
^~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:23:12: note: 'UITraitCollection' has been explicitly marked unavailable here
@interface UITraitCollection : NSObject <NSCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:850:24: error: cannot override 'traitCollectionDidChange' which has been marked unavailable
open override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
^
UIKit.UIView.traitCollectionDidChange:3:13: note: 'traitCollectionDidChange' has been explicitly marked unavailable here
open func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:850:24: note: remove 'override' modifier to declare a new 'traitCollectionDidChange'
open override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:935:43: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func didSwipeTextView(_ gesture: UISwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:31:35: error: 'UIView' is unavailable in watchOS
open class InputBarAccessoryView: UIView {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:40:39: error: 'UIView' is unavailable in watchOS
open weak var inputAccessoryView: UIView?
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:62:34: error: 'UIScrollView' is unavailable in watchOS
private weak var scrollView: UIScrollView?
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:87:12: note: 'UIScrollView' has been explicitly marked unavailable here
@interface UIScrollView : UIView <NSCoding, UIFocusItemScrollableContainer>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:68:29: error: 'UIPanGestureRecognizer' is unavailable in watchOS
private var panGesture: UIPanGestureRecognizer?
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h:31:12: note: 'UIPanGestureRecognizer' has been explicitly marked unavailable here
@interface UIPanGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:82:49: error: 'UIView' is unavailable in watchOS
public convenience init(inputAccessoryView: UIView) {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:169:36: error: 'UIView' is unavailable in watchOS
open func bind(inputAccessoryView: UIView, withAdditionalBottomSpace additionalBottomSpace: (() -> CGFloat)? = .none) -> Self {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:252:35: error: 'UIScrollView' is unavailable in watchOS
open func bind(to scrollView: UIScrollView) -> Self {
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:87:12: note: 'UIScrollView' has been explicitly marked unavailable here
@interface UIScrollView : UIView <NSCoding, UIFocusItemScrollableContainer>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:337:54: error: 'UIPanGestureRecognizer' is unavailable in watchOS
open func handlePanGestureRecognizer(recognizer: UIPanGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h:31:12: note: 'UIPanGestureRecognizer' has been explicitly marked unavailable here
@interface UIPanGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:372:54: error: 'UIGestureRecognizer' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:35:12: note: 'UIGestureRecognizer' has been explicitly marked unavailable here
@interface UIGestureRecognizer : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:372:96: error: 'UITouch' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h:51:12: note: 'UITouch' has been explicitly marked unavailable here
@interface UITouch : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:377:54: error: 'UIGestureRecognizer' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:35:12: note: 'UIGestureRecognizer' has been explicitly marked unavailable here
@interface UIGestureRecognizer : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:377:133: error: 'UIGestureRecognizer' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:35:12: note: 'UIGestureRecognizer' has been explicitly marked unavailable here
@interface UIGestureRecognizer : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:31:39: error: 'UIGestureRecognizerDelegate' is unavailable in watchOS
open class KeyboardManager: NSObject, UIGestureRecognizerDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:91:11: note: 'UIGestureRecognizerDelegate' has been explicitly marked unavailable here
@protocol UIGestureRecognizerDelegate <NSObject>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardNotification.swift:42:34: error: 'UIView' is unavailable in watchOS
public let animationOptions: UIView.AnimationOptions
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:34:14: error: 'NSLayoutConstraint' is unavailable in watchOS
var top: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:35:17: error: 'NSLayoutConstraint' is unavailable in watchOS
var bottom: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:36:15: error: 'NSLayoutConstraint' is unavailable in watchOS
var left: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:37:16: error: 'NSLayoutConstraint' is unavailable in watchOS
var right: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:38:18: error: 'NSLayoutConstraint' is unavailable in watchOS
var centerX: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:39:18: error: 'NSLayoutConstraint' is unavailable in watchOS
var centerY: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:40:16: error: 'NSLayoutConstraint' is unavailable in watchOS
var width: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:41:17: error: 'NSLayoutConstraint' is unavailable in watchOS
var height: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:43:22: error: 'NSLayoutConstraint' is unavailable in watchOS
public init(top: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:44:25: error: 'NSLayoutConstraint' is unavailable in watchOS
bottom: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:45:23: error: 'NSLayoutConstraint' is unavailable in watchOS
left: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:46:24: error: 'NSLayoutConstraint' is unavailable in watchOS
right: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:47:26: error: 'NSLayoutConstraint' is unavailable in watchOS
centerX: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:48:26: error: 'NSLayoutConstraint' is unavailable in watchOS
centerY: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:49:24: error: 'NSLayoutConstraint' is unavailable in watchOS
width: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:50:25: error: 'NSLayoutConstraint' is unavailable in watchOS
height: NSLayoutConstraint? = nil) {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:62:40: error: 'NSLayoutConstraint' is unavailable in watchOS
private var availableConstraints: [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:153:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:166:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:170:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:170:113: error: 'UICollectionViewCell' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
^~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h:65:12: note: 'UICollectionViewCell' has been explicitly marked unavailable here
@interface UICollectionViewCell : UICollectionReusableView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:204:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:204:103: error: 'UICollectionViewLayout' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:89:12: note: 'UICollectionViewLayout' has been explicitly marked unavailable here
@interface UICollectionViewLayout : NSObject <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:224:61: error: 'UICollectionView' is unavailable in watchOS
@objc open func createAttachmentCell(in collectionView: UICollectionView, at indexPath: IndexPath) -> AttachmentCell {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:149:30: error: 'UICollectionViewDataSource' is unavailable in watchOS
extension AttachmentManager: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
^~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:73:11: note: 'UICollectionViewDataSource' has been explicitly marked unavailable here
@protocol UICollectionViewDataSource <NSObject>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:149:58: error: 'UICollectionViewDelegateFlowLayout' is unavailable in watchOS
extension AttachmentManager: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h:33:11: note: 'UICollectionViewDelegateFlowLayout' has been explicitly marked unavailable here
@protocol UICollectionViewDelegateFlowLayout <UICollectionViewDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:38:31: error: 'UIView' is unavailable in watchOS
public let containerView: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:39:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:39:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:42:37: error: 'systemGray6' is unavailable in watchOS
view.backgroundColor = .systemGray6
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:152:49: note: 'systemGray6' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemGray6Color API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:44:37: error: 'groupTableViewBackground' is unavailable in watchOS
view.backgroundColor = .groupTableViewBackground
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:258:48: note: 'groupTableViewBackground' has been explicitly marked unavailable here
@property(class, nonatomic, readonly) UIColor *groupTableViewBackgroundColor API_DEPRECATED_WITH_REPLACEMENT("systemGroupedBackgroundColor", ios(2.0, 13.0), tvos(13.0, 13.0)) API_UNAVAILABLE(visionos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:57:33: error: 'UIButton' is unavailable in watchOS
open lazy var deleteButton: UIButton = { [weak self] in
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:49:12: note: 'UIButton' has been explicitly marked unavailable here
@interface UIButton : UIControl <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:58:22: error: 'UIButton' is unavailable in watchOS
let button = UIButton()
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:49:12: note: 'UIButton' has been explicitly marked unavailable here
@interface UIButton : UIControl <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:58:22: error: 'init()' is unavailable in watchOS
let button = UIButton()
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:61:26: error: 'systemBackground' is unavailable in watchOS
textColor = .systemBackground
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:210:49: note: 'systemBackground' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBackgroundColor API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:69:35: error: 'systemBlue' is unavailable in watchOS
button.backgroundColor = .systemBlue
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:125:49: note: 'systemBlue' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBlueColor API_AVAILABLE(ios(7.0), tvos(9.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:30:28: error: 'UICollectionViewCell' is unavailable in watchOS
open class AttachmentCell: UICollectionViewCell {
^~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h:65:12: note: 'UICollectionViewCell' has been explicitly marked unavailable here
@interface UICollectionViewCell : UICollectionReusableView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift:61:70: error: 'UICollectionViewLayout' is unavailable in watchOS
public override init(frame: CGRect, collectionViewLayout layout: UICollectionViewLayout) {
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:89:12: note: 'UICollectionViewLayout' has been explicitly marked unavailable here
@interface UICollectionViewLayout : NSObject <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift:33:38: error: 'UICollectionView' is unavailable in watchOS
open class AttachmentCollectionView: UICollectionView {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift:38:27: error: 'UIImageView' is unavailable in watchOS
public let imageView: UIImageView = {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h:21:12: note: 'UIImageView' has been explicitly marked unavailable here
@interface UIImageView : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift:39:25: error: 'UIImageView' is unavailable in watchOS
let imageView = UIImageView()
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h:21:12: note: 'UIImageView' has been explicitly marked unavailable here
@interface UIImageView : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift:39:25: error: 'init()' is unavailable in watchOS
let imageView = UIImageView()
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:52:44: error: 'UITextView' is unavailable in watchOS
private(set) public weak var textView: UITextView?
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:62:25: error: 'init()' is unavailable in watchOS
let tableView = AutocompleteTableView()
^~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:66:42: error: 'systemBackground' is unavailable in watchOS
tableView.backgroundColor = .systemBackground
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:210:49: note: 'systemBackground' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBackgroundColor API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:104:32: error: 'label' is unavailable in watchOS
foregroundColor = .label
^~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:173:49: note: 'label' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *labelColor API_AVAILABLE(ios(13.0), tvos(13.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:160:31: error: 'UITextView' is unavailable in watchOS
public init(for textView: UITextView) {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:410:47: error: 'UITextView' is unavailable in watchOS
public func textViewDidChange(_ textView: UITextView) {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:414:38: error: 'UITextView' is unavailable in watchOS
public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:498:46: error: 'UITableView' is unavailable in watchOS
open func numberOfSections(in tableView: UITableView) -> Int {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:502:38: error: 'UITableView' is unavailable in watchOS
open func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:506:38: error: 'UITableView' is unavailable in watchOS
open func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:506:89: error: 'UITableViewCell' is unavailable in watchOS
open func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:518:38: error: 'UITableView' is unavailable in watchOS
open func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:41:56: error: 'UITextViewDelegate' is unavailable in watchOS
open class AutocompleteManager: NSObject, InputPlugin, UITextViewDelegate, UITableViewDelegate, UITableViewDataSource {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:32:11: note: 'UITextViewDelegate' has been explicitly marked unavailable here
@protocol UITextViewDelegate <NSObject, UIScrollViewDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:41:76: error: 'UITableViewDelegate' is unavailable in watchOS
open class AutocompleteManager: NSObject, InputPlugin, UITextViewDelegate, UITableViewDelegate, UITableViewDataSource {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:100:11: note: 'UITableViewDelegate' has been explicitly marked unavailable here
@protocol UITableViewDelegate<NSObject, UIScrollViewDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:41:97: error: 'UITableViewDataSource' is unavailable in watchOS
open class AutocompleteManager: NSObject, InputPlugin, UITextViewDelegate, UITableViewDelegate, UITableViewDataSource {
^~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:539:11: note: 'UITableViewDataSource' has been explicitly marked unavailable here
@protocol UITableViewDataSource<NSObject>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:50:73: error: 'UITableView' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:50:158: error: 'UITableViewCell' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:55:73: error: 'UITableView' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:55:158: error: 'UITableViewCell' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift:39:32: error: 'init()' is unavailable in watchOS
public let separatorLine = SeparatorLine()
^~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift:45:26: error: 'UITableViewCell' is unavailable in watchOS
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift:30:30: error: 'UITableViewCell' is unavailable in watchOS
open class AutocompleteCell: UITableViewCell {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteTableView.swift:30:35: error: 'UITableView' is unavailable in watchOS
open class AutocompleteTableView: UITableView {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputBarAccessoryViewDelegate.swift:63:84: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
func inputBar(_ inputBar: InputBarAccessoryView, didSwipeTextViewWith gesture: UISwipeGestureRecognizer)
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputBarAccessoryViewDelegate.swift:74:84: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
func inputBar(_ inputBar: InputBarAccessoryView, didSwipeTextViewWith gesture: UISwipeGestureRecognizer) {}
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputItem.swift:44:51: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
func keyboardSwipeGestureAction(with gesture: UISwipeGestureRecognizer)
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift:49:43: error: 'UIView' is unavailable in watchOS
open override var inputAccessoryView: UIView? {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift:86:89: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func inputBar(_ inputBar: InputBarAccessoryView, didSwipeTextViewWith gesture: UISwipeGestureRecognizer) { }
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift:32:36: error: 'UIViewController' is unavailable in watchOS
open class InputBarViewController: UIViewController, InputBarAccessoryViewDelegate {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:102:12: note: 'UIViewController' has been explicitly marked unavailable here
@interface UIViewController : UIResponder <NSCoding, UIAppearanceContainer, UITraitEnvironment, UIContentContainer, UIFocusEnvironment>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputStackView.swift:52:28: error: 'NSLayoutConstraint' is unavailable in watchOS
convenience init(axis: NSLayoutConstraint.Axis, spacing: CGFloat) {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputStackView.swift:38:28: error: 'UIStackView' is unavailable in watchOS
open class InputStackView: UIStackView {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:124:12: note: 'UIStackView' has been explicitly marked unavailable here
@interface UIStackView : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:68:34: error: 'UILabel' is unavailable in watchOS
public let placeholderLabel: UILabel = {
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:33:12: note: 'UILabel' has been explicitly marked unavailable here
@interface UILabel : UIView <NSCoding, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:69:21: error: 'UILabel' is unavailable in watchOS
let label = UILabel()
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:33:12: note: 'UILabel' has been explicitly marked unavailable here
@interface UILabel : UIView <NSCoding, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:69:21: error: 'init()' is unavailable in watchOS
let label = UILabel()
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:72:32: error: 'systemGray2' is unavailable in watchOS
label.textColor = .systemGray2
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:148:49: note: 'systemGray2' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemGray2Color API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:148:56: error: 'NSTextContainer' is unavailable in watchOS
public override init(frame: CGRect, textContainer: NSTextContainer?) {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h:21:12: note: 'NSTextContainer' has been explicitly marked unavailable here
@interface NSTextContainer : NSObject <NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:244:24: error: cannot override 'paste' which has been marked unavailable
open override func paste(_ sender: Any?) {
^
UIKit.UIResponder.paste:3:13: note: 'paste' has been explicitly marked unavailable here
open func paste(_ sender: Any?)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:244:24: note: remove 'override' modifier to declare a new 'paste'
open override func paste(_ sender: Any?) {
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:40:27: error: 'UITextView' is unavailable in watchOS
open class InputTextView: UITextView {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift:43:36: error: 'UIScreen' is unavailable in watchOS
open var height: CGFloat = 1.0 / UIScreen.main.scale {
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:54:12: note: 'UIScreen' has been explicitly marked unavailable here
@interface UIScreen : NSObject <UITraitEnvironment>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift:43:45: error: 'main' is unavailable in watchOS
open var height: CGFloat = 1.0 / UIScreen.main.scale {
^~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:57:49: note: 'main' has been explicitly marked unavailable here
@property(class, nonatomic, readonly) UIScreen *mainScreen API_DEPRECATED("Use a UIScreen instance found through context instead: i.e, view.window.windowScene.screen", ios(2.0, API_TO_BE_DEPRECATED), visionos(1.0, API_TO_BE_DEPRECATED)) API_UNAVAILABLE(watchos); // the device's internal screen
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift:38:27: error: 'UIView' is unavailable in watchOS
open class SeparatorLine: UIView {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
SwiftEmitModule normal arm64 Emitting\ module\ for\ InputBarAccessoryView (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
EmitSwiftModule normal arm64 (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:62:43: error: 'UILayoutPriority' is unavailable in watchOS
setContentHuggingPriority(UILayoutPriority(rawValue: 1), for: .horizontal)
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:17:15: note: 'UILayoutPriority' has been explicitly marked unavailable here
typedef float UILayoutPriority NS_TYPED_EXTENSIBLE_ENUM API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:64:43: error: 'UILayoutPriority' is unavailable in watchOS
setContentHuggingPriority(UILayoutPriority(rawValue: 1000), for: .horizontal)
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:17:15: note: 'UILayoutPriority' has been explicitly marked unavailable here
typedef float UILayoutPriority NS_TYPED_EXTENSIBLE_ENUM API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:66:43: error: 'UILayoutPriority' is unavailable in watchOS
setContentHuggingPriority(UILayoutPriority(rawValue: 500), for: .horizontal)
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:17:15: note: 'UILayoutPriority' has been explicitly marked unavailable here
typedef float UILayoutPriority NS_TYPED_EXTENSIBLE_ENUM API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:145:69: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
private var onKeyboardSwipeGestureAction: ((InputBarButtonItem, UISwipeGestureRecognizer) -> Void)?
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:244:98: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func onKeyboardSwipeGesture(_ action: @escaping (_ item: InputBarButtonItem, _ gesture: UISwipeGestureRecognizer) -> Void) -> Self {
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:321:56: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func keyboardSwipeGestureAction(with gesture: UISwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift:36:32: error: 'UIButton' is unavailable in watchOS
open class InputBarButtonItem: UIButton, InputItem {
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:49:12: note: 'UIButton' has been explicitly marked unavailable here
@interface UIButton : UIControl <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:45:31: error: 'UIActivityIndicatorView' is unavailable in watchOS
private let activityView: UIActivityIndicatorView = {
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:46:19: error: 'UIActivityIndicatorView' is unavailable in watchOS
let view: UIActivityIndicatorView
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:49:20: error: 'UIActivityIndicatorView' is unavailable in watchOS
view = UIActivityIndicatorView(style: .medium)
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:49:52: error: 'medium' is unavailable in watchOS
view = UIActivityIndicatorView(style: .medium)
^~~~~~
UIKit.UIActivityIndicatorView.Style.medium:4:10: note: 'medium' has been explicitly marked unavailable here
case medium }
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:51:20: error: 'UIActivityIndicatorView' is unavailable in watchOS
view = UIActivityIndicatorView(style: .gray)
^~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h:24:12: note: 'UIActivityIndicatorView' has been explicitly marked unavailable here
@interface UIActivityIndicatorView : UIView <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift:51:52: error: 'gray' is unavailable in watchOS
view = UIActivityIndicatorView(style: .gray)
^~~~
UIKit.UIActivityIndicatorView.Style.gray:4:10: note: 'gray' has been explicitly marked unavailable here
case gray }
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/NSNotification+Extensions.swift:56:25: error: 'UIView' is unavailable in watchOS
var animationCurve: UIView.AnimationCurve? {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/NSNotification+Extensions.swift:62:27: error: 'UIView' is unavailable in watchOS
var animationOptions: UIView.AnimationOptions {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UITextView+Extensions.swift:11:18: error: 'UITextView' is unavailable in watchOS
public extension UITextView {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:32: error: 'NSLayoutYAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:72:12: note: 'NSLayoutYAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutYAxisAnchor : NSLayoutAnchor<NSLayoutYAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:66: error: 'NSLayoutXAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:64:12: note: 'NSLayoutXAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutXAxisAnchor : NSLayoutAnchor<NSLayoutXAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:102: error: 'NSLayoutYAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:72:12: note: 'NSLayoutYAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutYAxisAnchor : NSLayoutAnchor<NSLayoutYAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:137: error: 'NSLayoutXAxisAnchor' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h:64:12: note: 'NSLayoutXAxisAnchor' has been explicitly marked unavailable here
@interface NSLayoutXAxisAnchor : NSLayoutAnchor<NSLayoutXAxisAnchor *>
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:44:336: error: 'NSLayoutConstraint' is unavailable in watchOS
func addConstraints(_ top: NSLayoutYAxisAnchor? = nil, left: NSLayoutXAxisAnchor? = nil, bottom: NSLayoutYAxisAnchor? = nil, right: NSLayoutXAxisAnchor? = nil, topConstant: CGFloat = 0, leftConstant: CGFloat = 0, bottomConstant: CGFloat = 0, rightConstant: CGFloat = 0, widthConstant: CGFloat = 0, heightConstant: CGFloat = 0) -> [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift:30:20: error: 'UIView' is unavailable in watchOS
internal extension UIView {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:40:30: error: 'UIView' is unavailable in watchOS
open var backgroundView: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:41:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:41:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:50:27: error: 'UIView' is unavailable in watchOS
open var contentView: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:51:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:51:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:62:29: error: 'UIVisualEffectView' is unavailable in watchOS
open lazy var blurView: UIVisualEffectView = {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h:28:12: note: 'UIVisualEffectView' has been explicitly marked unavailable here
@interface UIVisualEffectView : UIView <NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:63:26: error: 'UIBlurEffect' is unavailable in watchOS
var blurEffect = UIBlurEffect(style: .light)
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:61:12: note: 'UIBlurEffect' has been explicitly marked unavailable here
@interface UIBlurEffect : UIVisualEffect
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:65:26: error: 'UIBlurEffect' is unavailable in watchOS
blurEffect = UIBlurEffect(style: .systemMaterial)
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h:61:12: note: 'UIBlurEffect' has been explicitly marked unavailable here
@interface UIBlurEffect : UIVisualEffect
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:65:47: error: 'systemMaterial' is unavailable in watchOS
blurEffect = UIBlurEffect(style: .systemMaterial)
^~~~~~~~~~~~~~
UIKit.UIBlurEffect.Style.systemMaterial:4:10: note: 'systemMaterial' has been explicitly marked unavailable here
case systemMaterial }
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:67:20: error: 'UIVisualEffectView' is unavailable in watchOS
let view = UIVisualEffectView(effect: blurEffect)
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h:28:12: note: 'UIVisualEffectView' has been explicitly marked unavailable here
@interface UIVisualEffectView : UIView <NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:86:32: error: 'init()' is unavailable in watchOS
public let separatorLine = SeparatorLine()
^~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:136:53: error: 'UIView' is unavailable in watchOS
public private(set) weak var middleContentView: UIView?
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:139:43: error: 'UIView' is unavailable in watchOS
private let middleContentViewWrapper: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:140:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:140:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:147:21: error: 'systemBackground' is unavailable in watchOS
return .systemBackground
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:210:49: note: 'systemBackground' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBackgroundColor API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:347:39: error: 'NSLayoutConstraint' is unavailable in watchOS
private var textViewHeightAnchor: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:353:31: error: 'NSLayoutConstraint' is unavailable in watchOS
private var windowAnchor: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:376:59: error: 'UIView' is unavailable in watchOS
open override func willMove(toSuperview newSuperview: UIView?) {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:511:46: error: 'UIWindow' is unavailable in watchOS
private func setupConstraints(to window: UIWindow?) {
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:22:12: note: 'UIWindow' has been explicitly marked unavailable here
@interface UIWindow : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:605:65: error: 'UIEvent' is unavailable in watchOS
open override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h:62:12: note: 'UIEvent' has been explicitly marked unavailable here
@interface UIEvent : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:699:44: error: 'UIView' is unavailable in watchOS
open func setMiddleContentView(_ view: UIView?, animated: Bool) {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:850:76: error: 'UITraitCollection' is unavailable in watchOS
open override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
^~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:23:12: note: 'UITraitCollection' has been explicitly marked unavailable here
@interface UITraitCollection : NSObject <NSCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:850:24: error: cannot override 'traitCollectionDidChange' which has been marked unavailable
open override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
^
UIKit.UIView.traitCollectionDidChange:3:13: note: 'traitCollectionDidChange' has been explicitly marked unavailable here
open func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)}
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:850:24: note: remove 'override' modifier to declare a new 'traitCollectionDidChange'
open override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:935:43: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func didSwipeTextView(_ gesture: UISwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift:31:35: error: 'UIView' is unavailable in watchOS
open class InputBarAccessoryView: UIView {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:40:39: error: 'UIView' is unavailable in watchOS
open weak var inputAccessoryView: UIView?
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:62:34: error: 'UIScrollView' is unavailable in watchOS
private weak var scrollView: UIScrollView?
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:87:12: note: 'UIScrollView' has been explicitly marked unavailable here
@interface UIScrollView : UIView <NSCoding, UIFocusItemScrollableContainer>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:68:29: error: 'UIPanGestureRecognizer' is unavailable in watchOS
private var panGesture: UIPanGestureRecognizer?
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h:31:12: note: 'UIPanGestureRecognizer' has been explicitly marked unavailable here
@interface UIPanGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:82:49: error: 'UIView' is unavailable in watchOS
public convenience init(inputAccessoryView: UIView) {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:169:36: error: 'UIView' is unavailable in watchOS
open func bind(inputAccessoryView: UIView, withAdditionalBottomSpace additionalBottomSpace: (() -> CGFloat)? = .none) -> Self {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:252:35: error: 'UIScrollView' is unavailable in watchOS
open func bind(to scrollView: UIScrollView) -> Self {
^~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:87:12: note: 'UIScrollView' has been explicitly marked unavailable here
@interface UIScrollView : UIView <NSCoding, UIFocusItemScrollableContainer>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:337:54: error: 'UIPanGestureRecognizer' is unavailable in watchOS
open func handlePanGestureRecognizer(recognizer: UIPanGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h:31:12: note: 'UIPanGestureRecognizer' has been explicitly marked unavailable here
@interface UIPanGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:372:54: error: 'UIGestureRecognizer' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:35:12: note: 'UIGestureRecognizer' has been explicitly marked unavailable here
@interface UIGestureRecognizer : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:372:96: error: 'UITouch' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h:51:12: note: 'UITouch' has been explicitly marked unavailable here
@interface UITouch : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:377:54: error: 'UIGestureRecognizer' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:35:12: note: 'UIGestureRecognizer' has been explicitly marked unavailable here
@interface UIGestureRecognizer : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:377:133: error: 'UIGestureRecognizer' is unavailable in watchOS
open func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:35:12: note: 'UIGestureRecognizer' has been explicitly marked unavailable here
@interface UIGestureRecognizer : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift:31:39: error: 'UIGestureRecognizerDelegate' is unavailable in watchOS
open class KeyboardManager: NSObject, UIGestureRecognizerDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:91:11: note: 'UIGestureRecognizerDelegate' has been explicitly marked unavailable here
@protocol UIGestureRecognizerDelegate <NSObject>
^
/Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardNotification.swift:42:34: error: 'UIView' is unavailable in watchOS
public let animationOptions: UIView.AnimationOptions
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:34:14: error: 'NSLayoutConstraint' is unavailable in watchOS
var top: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:35:17: error: 'NSLayoutConstraint' is unavailable in watchOS
var bottom: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:36:15: error: 'NSLayoutConstraint' is unavailable in watchOS
var left: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:37:16: error: 'NSLayoutConstraint' is unavailable in watchOS
var right: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:38:18: error: 'NSLayoutConstraint' is unavailable in watchOS
var centerX: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:39:18: error: 'NSLayoutConstraint' is unavailable in watchOS
var centerY: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:40:16: error: 'NSLayoutConstraint' is unavailable in watchOS
var width: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:41:17: error: 'NSLayoutConstraint' is unavailable in watchOS
var height: NSLayoutConstraint?
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:43:22: error: 'NSLayoutConstraint' is unavailable in watchOS
public init(top: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:44:25: error: 'NSLayoutConstraint' is unavailable in watchOS
bottom: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:45:23: error: 'NSLayoutConstraint' is unavailable in watchOS
left: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:46:24: error: 'NSLayoutConstraint' is unavailable in watchOS
right: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:47:26: error: 'NSLayoutConstraint' is unavailable in watchOS
centerX: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:48:26: error: 'NSLayoutConstraint' is unavailable in watchOS
centerY: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:49:24: error: 'NSLayoutConstraint' is unavailable in watchOS
width: NSLayoutConstraint? = nil,
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:50:25: error: 'NSLayoutConstraint' is unavailable in watchOS
height: NSLayoutConstraint? = nil) {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift:62:40: error: 'NSLayoutConstraint' is unavailable in watchOS
private var availableConstraints: [NSLayoutConstraint] {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:153:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:166:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:170:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:170:113: error: 'UICollectionViewCell' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
^~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h:65:12: note: 'UICollectionViewCell' has been explicitly marked unavailable here
@interface UICollectionViewCell : UICollectionReusableView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:204:56: error: 'UICollectionView' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:204:103: error: 'UICollectionViewLayout' is unavailable in watchOS
final public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:89:12: note: 'UICollectionViewLayout' has been explicitly marked unavailable here
@interface UICollectionViewLayout : NSObject <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:224:61: error: 'UICollectionView' is unavailable in watchOS
@objc open func createAttachmentCell(in collectionView: UICollectionView, at indexPath: IndexPath) -> AttachmentCell {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:149:30: error: 'UICollectionViewDataSource' is unavailable in watchOS
extension AttachmentManager: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
^~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:73:11: note: 'UICollectionViewDataSource' has been explicitly marked unavailable here
@protocol UICollectionViewDataSource <NSObject>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift:149:58: error: 'UICollectionViewDelegateFlowLayout' is unavailable in watchOS
extension AttachmentManager: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h:33:11: note: 'UICollectionViewDelegateFlowLayout' has been explicitly marked unavailable here
@protocol UICollectionViewDelegateFlowLayout <UICollectionViewDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:38:31: error: 'UIView' is unavailable in watchOS
public let containerView: UIView = {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:39:20: error: 'UIView' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:39:20: error: 'init()' is unavailable in watchOS
let view = UIView()
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:42:37: error: 'systemGray6' is unavailable in watchOS
view.backgroundColor = .systemGray6
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:152:49: note: 'systemGray6' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemGray6Color API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:44:37: error: 'groupTableViewBackground' is unavailable in watchOS
view.backgroundColor = .groupTableViewBackground
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:258:48: note: 'groupTableViewBackground' has been explicitly marked unavailable here
@property(class, nonatomic, readonly) UIColor *groupTableViewBackgroundColor API_DEPRECATED_WITH_REPLACEMENT("systemGroupedBackgroundColor", ios(2.0, 13.0), tvos(13.0, 13.0)) API_UNAVAILABLE(visionos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:57:33: error: 'UIButton' is unavailable in watchOS
open lazy var deleteButton: UIButton = { [weak self] in
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:49:12: note: 'UIButton' has been explicitly marked unavailable here
@interface UIButton : UIControl <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:58:22: error: 'UIButton' is unavailable in watchOS
let button = UIButton()
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h:49:12: note: 'UIButton' has been explicitly marked unavailable here
@interface UIButton : UIControl <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:58:22: error: 'init()' is unavailable in watchOS
let button = UIButton()
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:61:26: error: 'systemBackground' is unavailable in watchOS
textColor = .systemBackground
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:210:49: note: 'systemBackground' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBackgroundColor API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:69:35: error: 'systemBlue' is unavailable in watchOS
button.backgroundColor = .systemBlue
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:125:49: note: 'systemBlue' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBlueColor API_AVAILABLE(ios(7.0), tvos(9.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift:30:28: error: 'UICollectionViewCell' is unavailable in watchOS
open class AttachmentCell: UICollectionViewCell {
^~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h:65:12: note: 'UICollectionViewCell' has been explicitly marked unavailable here
@interface UICollectionViewCell : UICollectionReusableView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift:61:70: error: 'UICollectionViewLayout' is unavailable in watchOS
public override init(frame: CGRect, collectionViewLayout layout: UICollectionViewLayout) {
^~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:89:12: note: 'UICollectionViewLayout' has been explicitly marked unavailable here
@interface UICollectionViewLayout : NSObject <NSCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift:33:38: error: 'UICollectionView' is unavailable in watchOS
open class AttachmentCollectionView: UICollectionView {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:362:12: note: 'UICollectionView' has been explicitly marked unavailable here
@interface UICollectionView : UIScrollView <UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift:38:27: error: 'UIImageView' is unavailable in watchOS
public let imageView: UIImageView = {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h:21:12: note: 'UIImageView' has been explicitly marked unavailable here
@interface UIImageView : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift:39:25: error: 'UIImageView' is unavailable in watchOS
let imageView = UIImageView()
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h:21:12: note: 'UIImageView' has been explicitly marked unavailable here
@interface UIImageView : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift:39:25: error: 'init()' is unavailable in watchOS
let imageView = UIImageView()
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:52:44: error: 'UITextView' is unavailable in watchOS
private(set) public weak var textView: UITextView?
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:62:25: error: 'init()' is unavailable in watchOS
let tableView = AutocompleteTableView()
^~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:66:42: error: 'systemBackground' is unavailable in watchOS
tableView.backgroundColor = .systemBackground
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:210:49: note: 'systemBackground' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemBackgroundColor API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:104:32: error: 'label' is unavailable in watchOS
foregroundColor = .label
^~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:173:49: note: 'label' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *labelColor API_AVAILABLE(ios(13.0), tvos(13.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:160:31: error: 'UITextView' is unavailable in watchOS
public init(for textView: UITextView) {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:410:47: error: 'UITextView' is unavailable in watchOS
public func textViewDidChange(_ textView: UITextView) {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:414:38: error: 'UITextView' is unavailable in watchOS
public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:498:46: error: 'UITableView' is unavailable in watchOS
open func numberOfSections(in tableView: UITableView) -> Int {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:502:38: error: 'UITableView' is unavailable in watchOS
open func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:506:38: error: 'UITableView' is unavailable in watchOS
open func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:506:89: error: 'UITableViewCell' is unavailable in watchOS
open func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:518:38: error: 'UITableView' is unavailable in watchOS
open func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:41:56: error: 'UITextViewDelegate' is unavailable in watchOS
open class AutocompleteManager: NSObject, InputPlugin, UITextViewDelegate, UITableViewDelegate, UITableViewDataSource {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:32:11: note: 'UITextViewDelegate' has been explicitly marked unavailable here
@protocol UITextViewDelegate <NSObject, UIScrollViewDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:41:76: error: 'UITableViewDelegate' is unavailable in watchOS
open class AutocompleteManager: NSObject, InputPlugin, UITextViewDelegate, UITableViewDelegate, UITableViewDataSource {
^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:100:11: note: 'UITableViewDelegate' has been explicitly marked unavailable here
@protocol UITableViewDelegate<NSObject, UIScrollViewDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift:41:97: error: 'UITableViewDataSource' is unavailable in watchOS
open class AutocompleteManager: NSObject, InputPlugin, UITextViewDelegate, UITableViewDelegate, UITableViewDataSource {
^~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:539:11: note: 'UITableViewDataSource' has been explicitly marked unavailable here
@protocol UITableViewDataSource<NSObject>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:50:73: error: 'UITableView' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:50:158: error: 'UITableViewCell' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:55:73: error: 'UITableView' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift:55:158: error: 'UITableViewCell' is unavailable in watchOS
func autocompleteManager(_ manager: AutocompleteManager, tableView: UITableView, cellForRowAt indexPath: IndexPath, for session: AutocompleteSession) -> UITableViewCell {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift:39:32: error: 'init()' is unavailable in watchOS
public let separatorLine = SeparatorLine()
^~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift:45:26: error: 'UITableViewCell' is unavailable in watchOS
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift:30:30: error: 'UITableViewCell' is unavailable in watchOS
open class AutocompleteCell: UITableViewCell {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:81:12: note: 'UITableViewCell' has been explicitly marked unavailable here
@interface UITableViewCell : UIView <NSCoding, UIGestureRecognizerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteTableView.swift:30:35: error: 'UITableView' is unavailable in watchOS
open class AutocompleteTableView: UITableView {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h:347:12: note: 'UITableView' has been explicitly marked unavailable here
@interface UITableView : UIScrollView <NSCoding, UIDataSourceTranslating>
^
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputBarAccessoryViewDelegate.swift:63:84: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
func inputBar(_ inputBar: InputBarAccessoryView, didSwipeTextViewWith gesture: UISwipeGestureRecognizer)
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputBarAccessoryViewDelegate.swift:74:84: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
func inputBar(_ inputBar: InputBarAccessoryView, didSwipeTextViewWith gesture: UISwipeGestureRecognizer) {}
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputItem.swift:44:51: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
func keyboardSwipeGestureAction(with gesture: UISwipeGestureRecognizer)
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift:49:43: error: 'UIView' is unavailable in watchOS
open override var inputAccessoryView: UIView? {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
/Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift:86:89: error: 'UISwipeGestureRecognizer' is unavailable in watchOS
open func inputBar(_ inputBar: InputBarAccessoryView, didSwipeTextViewWith gesture: UISwipeGestureRecognizer) { }
^~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h:31:12: note: 'UISwipeGestureRecognizer' has been explicitly marked unavailable here
@interface UISwipeGestureRecognizer : UIGestureRecognizer
^
/Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift:32:36: error: 'UIViewController' is unavailable in watchOS
open class InputBarViewController: UIViewController, InputBarAccessoryViewDelegate {
^~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:102:12: note: 'UIViewController' has been explicitly marked unavailable here
@interface UIViewController : UIResponder <NSCoding, UIAppearanceContainer, UITraitEnvironment, UIContentContainer, UIFocusEnvironment>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputStackView.swift:52:28: error: 'NSLayoutConstraint' is unavailable in watchOS
convenience init(axis: NSLayoutConstraint.Axis, spacing: CGFloat) {
^~~~~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:126:12: note: 'NSLayoutConstraint' has been explicitly marked unavailable here
@interface NSLayoutConstraint : NSObject
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputStackView.swift:38:28: error: 'UIStackView' is unavailable in watchOS
open class InputStackView: UIStackView {
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:124:12: note: 'UIStackView' has been explicitly marked unavailable here
@interface UIStackView : UIView
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:68:34: error: 'UILabel' is unavailable in watchOS
public let placeholderLabel: UILabel = {
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:33:12: note: 'UILabel' has been explicitly marked unavailable here
@interface UILabel : UIView <NSCoding, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:69:21: error: 'UILabel' is unavailable in watchOS
let label = UILabel()
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:33:12: note: 'UILabel' has been explicitly marked unavailable here
@interface UILabel : UIView <NSCoding, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:69:21: error: 'init()' is unavailable in watchOS
let label = UILabel()
^~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:1: note: 'init()' has been explicitly marked unavailable here
- (instancetype)init API_AVAILABLE(ios(2.0), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:72:32: error: 'systemGray2' is unavailable in watchOS
label.textColor = .systemGray2
^~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:148:49: note: 'systemGray2' has been explicitly marked unavailable here
@property (class, nonatomic, readonly) UIColor *systemGray2Color API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:148:56: error: 'NSTextContainer' is unavailable in watchOS
public override init(frame: CGRect, textContainer: NSTextContainer?) {
^~~~~~~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h:21:12: note: 'NSTextContainer' has been explicitly marked unavailable here
@interface NSTextContainer : NSObject <NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:244:24: error: cannot override 'paste' which has been marked unavailable
open override func paste(_ sender: Any?) {
^
UIKit.UIResponder.paste:3:13: note: 'paste' has been explicitly marked unavailable here
open func paste(_ sender: Any?)}
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:244:24: note: remove 'override' modifier to declare a new 'paste'
open override func paste(_ sender: Any?) {
~~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift:40:27: error: 'UITextView' is unavailable in watchOS
open class InputTextView: UITextView {
^~~~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h:217:12: note: 'UITextView' has been explicitly marked unavailable here
@interface UITextView : UIScrollView <UITextInput, UIContentSizeCategoryAdjusting, UILetterformAwareAdjusting>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift:43:36: error: 'UIScreen' is unavailable in watchOS
open var height: CGFloat = 1.0 / UIScreen.main.scale {
^~~~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:54:12: note: 'UIScreen' has been explicitly marked unavailable here
@interface UIScreen : NSObject <UITraitEnvironment>
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift:43:45: error: 'main' is unavailable in watchOS
open var height: CGFloat = 1.0 / UIScreen.main.scale {
^~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:57:49: note: 'main' has been explicitly marked unavailable here
@property(class, nonatomic, readonly) UIScreen *mainScreen API_DEPRECATED("Use a UIScreen instance found through context instead: i.e, view.window.windowScene.screen", ios(2.0, API_TO_BE_DEPRECATED), visionos(1.0, API_TO_BE_DEPRECATED)) API_UNAVAILABLE(watchos); // the device's internal screen
^
/Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift:38:27: error: 'UIView' is unavailable in watchOS
open class SeparatorLine: UIView {
^~~~~~
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:147:12: note: 'UIView' has been explicitly marked unavailable here
@interface UIView : UIResponder <NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate>
^
Failed frontend command:
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarButtonItem.swift /Users/admin/builder/spi-builder-workspace/Sources/Controls/InputBarSendButton.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/NSMutableAttributedString+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/NSNotification+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/String+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UITextView+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions/UIView+AutoLayout.swift /Users/admin/builder/spi-builder-workspace/Sources/InputBarAccessoryView.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardManager.swift /Users/admin/builder/spi-builder-workspace/Sources/KeyboardManager/KeyboardNotification.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/HorizontalEdgePadding.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/AutocompleteManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Models/AutocompleteCompletion.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Models/AutocompleteSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Protocols/AutocompleteManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteCell.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteTableView.swift /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputBarAccessoryViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputItem.swift /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputPlugin.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/InputBarAccessoryView+Availability.swift /Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/Views/InputStackView.swift /Users/admin/builder/spi-builder-workspace/Sources/Views/InputTextView.swift /Users/admin/builder/spi-builder-workspace/Sources/Views/SeparatorLine.swift -target arm64-apple-watchos7.0 -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins/libFoundationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server\#FoundationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins/libObservationMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server\#ObservationMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins/libSwiftMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server\#SwiftMacros -load-resolved-plugin /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins/libSwiftUIMacros.dylib\#/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server\#SwiftUIMacros -disable-implicit-swift-modules -Xcc -fno-implicit-modules -Xcc -fno-implicit-module-maps -explicit-swift-module-map-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView-dependencies-3.json -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS26.0.sdk/Developer/Library/Frameworks -no-color-diagnostics -Xcc -fno-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftExplicitPrecompiledModules -swift-version 6 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D SWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -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/.swiftpm/xcode -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos26.0-23R5280j-041894b46d26f03ea1587ab1cb6ac97e.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.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/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -no-auto-bridging-header-chaining -module-name InputBarAccessoryView -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 26.0 -target-sdk-name watchos26.0 -clang-target arm64-apple-watchos26.0 -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InputBarAccessoryView.build/Debug-watchos/InputBarAccessoryView.build/Objects-normal/arm64/InputBarAccessoryView.abi.json
SwiftCompile normal arm64 Compiling\ AttachmentCell.swift,\ AttachmentsView.swift,\ ImageAttachmentCell.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentCell.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/AttachmentsView.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Views/ImageAttachmentCell.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ InputPlugin.swift,\ InputBarAccessoryView+Availability.swift,\ InputBarViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputPlugin.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/InputBarAccessoryView+Availability.swift /Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputPlugin.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Supporting/InputBarAccessoryView+Availability.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ViewControllers/InputBarViewController.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ NSConstraintLayoutSet.swift,\ AttachmentManager.swift,\ AttachmentManagerDataSource.swift,\ AttachmentManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDelegate.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Models/NSConstraintLayoutSet.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/AttachmentManager.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDataSource.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AttachmentManager/Protocols/AttachmentManagerDelegate.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ AutocompleteTableView.swift,\ InputBarAccessoryViewDelegate.swift,\ InputItem.swift /Users/admin/builder/spi-builder-workspace/Sources/Plugins/AutocompleteManager/Views/AutocompleteTableView.swift /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputBarAccessoryViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/Protocols/InputItem.swift (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal arm64_32 (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ InputBarAccessoryView (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
SwiftEmitModule normal armv7k Emitting\ module\ for\ InputBarAccessoryView (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
EmitSwiftModule normal armv7k (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
EmitSwiftModule normal arm64 (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
SwiftEmitModule normal arm64 Emitting\ module\ for\ InputBarAccessoryView (in target 'InputBarAccessoryView' from project 'InputBarAccessoryView')
Building workspace spi-builder-workspace with scheme InputBarAccessoryView
(7 failures)
BUILD FAILURE 6.2 watchOS