Build Information
Failed to build CRToastSwift, reference master (570435
), with Swift 6.1 for watchOS using Xcode 16.3 on 25 Apr 2025 01:57:25 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CRToastSwift -destination generic/platform=watchOS
Build Log
extension UIWindow {
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: cannot find type 'UIInterfaceOrientation' in scope
func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1115:57: error: cannot find type 'UIView' in scope
func CRStatusBarSnapShotView(_ underStatusBar: Bool) -> UIView? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1122:46: error: cannot find type 'UISwipeGestureRecognizer' in scope
public class CRToastSwipeGestureRecognizer : UISwipeGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1128:44: error: cannot find type 'UITapGestureRecognizer' in scope
public class CRToastTapGestureRecognizer : UITapGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:3:23: error: cannot find type 'UIView' in scope
func image(with view: UIView) -> UIImage? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
static let manager = CRToastManager()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:14:14: note: class 'CRToastManager' does not conform to the 'Sendable' protocol
public class CRToastManager : NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
static let manager = CRToastManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let manager = CRToastManager()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: add '@MainActor' to make static property 'kCRToastManagerCollisionBoundaryIdentifier' part of global actor 'MainActor'
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:95:30: error: cannot find type 'UIWindow' in scope
var notificationWindow : UIWindow
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:96:25: error: cannot find type 'UIView' in scope
var statusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:97:28: error: cannot find type 'UIView' in scope
var notificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:141:87: error: cannot find type 'UIView' in scope
func CRToastOutwardAnimationsCompletionBlock(_ manager: CRToastManager, callout: [UIView]? = nil) -> CRToastAnimationCompletionBlock {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:42: error: cannot find type 'UIView' in scope
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:75: error: cannot find type 'UIView' in scope
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:65: error: cannot find type 'UIView' in scope
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:524:28: error: cannot find type 'UICollisionBehaviorDelegate' in scope
extension CRToastManager : UICollisionBehaviorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:90: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:91: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:118: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:88:28: error: cannot find type 'UIImageView' in scope
public var imageView : UIImageView
^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:89:36: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicator : UIActivityIndicatorView
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:90:24: error: cannot find type 'UILabel' in scope
public var label : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:91:32: error: cannot find type 'UILabel' in scope
public var subtitleLabel : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:92:33: error: cannot find type 'UIView' in scope
public var backgroundView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:121:22: error: value of type 'CRToastView' has no member 'backgroundColor'
self.backgroundColor = toast.backgroundColor
~~~~ ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:126:30: error: value of type 'CRToastView' has no member 'insertSubview'
self.insertSubview(bg, at: 0)
~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:133:14: error: initializer does not override a designated initializer from its superclass
override init(frame: CGRect) {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:196:26: error: method does not override any method from its superclass
override public func layoutSubviews() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:87:28: error: cannot find type 'UIView' in scope
public class CRToastView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:3:18: warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:494:26: note: var declared here
FOUNDATION_EXPORT double NSFoundationVersionNumber;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:5:30: error: cannot find type 'UIView' in scope
class CRToastContainerView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:12:28: error: cannot find type 'UIView' in scope
public var toastView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle : UIStatusBarStyle = .default {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: value of type 'CRToastViewController' has no member 'setNeedsStatusBarAppearanceUpdate'
self.setNeedsStatusBarAppearanceUpdate()
~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: property does not override any property from its superclass
public override var shouldAutorotate: Bool { return autorotate }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: property does not override any property from its superclass
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: cannot find type 'UIStatusBarStyle' in scope
public override var preferredStatusBarStyle: UIStatusBarStyle {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:28:26: error: method does not override any method from its superclass
public override func loadView() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: cannot find type 'UIInterfaceOrientation' in scope
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:41:80: error: cannot find type 'UIViewControllerTransitionCoordinator' in scope
public override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:9:38: error: cannot find type 'UIViewController' in scope
public class CRToastViewController : UIViewController {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:6:67: error: cannot find type 'UIEvent' in scope
public override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:5:30: error: cannot find type 'UIWindow' in scope
public class CRToastWindow : UIWindow {
^~~~~~~~
SwiftCompile normal arm64 Compiling\ CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CRToastWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.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/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.abi.json
EmitSwiftModule normal arm64_32 (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: warning: static property 'swipeUp' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: add '@MainActor' to make static property 'swipeUp' part of global actor 'MainActor'
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: warning: static property 'swipeLeft' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: add '@MainActor' to make static property 'swipeLeft' part of global actor 'MainActor'
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: warning: static property 'swipeDown' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: add '@MainActor' to make static property 'swipeDown' part of global actor 'MainActor'
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: warning: static property 'swipeRight' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: add '@MainActor' to make static property 'swipeRight' part of global actor 'MainActor'
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: warning: static property 'tapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: add '@MainActor' to make static property 'tapOnce' part of global actor 'MainActor'
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: warning: static property 'tapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: add '@MainActor' to make static property 'tapTwice' part of global actor 'MainActor'
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: warning: static property 'twoFingerTapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: add '@MainActor' to make static property 'twoFingerTapOnce' part of global actor 'MainActor'
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: warning: static property 'twoFingerTapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: add '@MainActor' to make static property 'twoFingerTapTwice' part of global actor 'MainActor'
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: warning: static property 'swipe' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipe:CRToastInteractionType = [.swipeUp,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: add '@MainActor' to make static property 'swipe' part of global actor 'MainActor'
public static let swipe:CRToastInteractionType = [.swipeUp,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipe:CRToastInteractionType = [.swipeUp,
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: warning: static property 'tap' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tap:CRToastInteractionType = [.tapOnce,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: add '@MainActor' to make static property 'tap' part of global actor 'MainActor'
public static let tap:CRToastInteractionType = [.tapOnce,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tap:CRToastInteractionType = [.tapOnce,
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all:CRToastInteractionType = [.swipe,.tap]
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all:CRToastInteractionType = [.swipe,.tap]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all:CRToastInteractionType = [.swipe,.tap]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:121:19: error: cannot find type 'UIView' in scope
case dynamic([UIView])
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:117:13: error: type 'CRToastAnimationType' does not conform to protocol 'Equatable'
public enum CRToastAnimationType : Equatable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:121:18: note: associated value type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'CRToastAnimationType' to 'Equatable'
case dynamic([UIView])
^
Swift.==:1:24: note: candidate would match if 'CRToastAnimationType' conformed to 'RawRepresentable'
@inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
^
Swift.FloatingPoint.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'FloatingPoint'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
Swift.BinaryInteger.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'BinaryInteger'
public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
^
Swift._Pointer.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_Pointer'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
Swift._Pointer.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to '_Pointer'
@inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
^
Swift.Strideable.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to 'Strideable'
@inlinable public static func == (x: Self, y: Self) -> Bool}
^
Swift.StringProtocol.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to 'StringProtocol'
@inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
^
Swift.SIMD.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'SIMD'
public static func == (a: Self, b: Self) -> Bool}
^
CoreFoundation._CFObject.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_CFObject'
public static func == (left: Self, right: Self) -> Bool}
^
Foundation.AttributedStringProtocol.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'AttributedStringProtocol'
public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
^
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_BridgedStoredNSError'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:117:13: note: add stubs for conformance
public enum CRToastAnimationType : Equatable {
^
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(CRToastAnimationType, CRToastAnimationType) -> Bool'
static func == (lhs: Self, rhs: Self) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle :UIStatusBarStyle = .default
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:437:32: error: cannot find type 'UIView' in scope
public var backgroundView :UIView? = nil
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:439:34: error: cannot find type 'UIView' in scope
public var imageContentMode :UIView.ContentMode = .center
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:443:44: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicatorViewStyle :UIActivityIndicatorView.Style = .white
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: cannot find 'UIStatusBarStyle' in scope
.statusBarStyle:UIStatusBarStyle.self,
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:492:26: error: cannot find 'UIView' in scope
.backgroundView :UIView.self,
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:494:27: error: cannot find 'UIView' in scope
.imageContentMode:UIView.ContentMode.self,
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:498:37: error: cannot find 'UIActivityIndicatorView' in scope
.activityIndicatorViewStyle:UIActivityIndicatorView.Style.self,
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: warning: static property '_default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _default : CROptions? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: convert '_default' to a 'let' constant to make 'Sendable' shared state immutable
private static var _default : CROptions? = nil
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: add '@MainActor' to make static property '_default' part of global actor 'MainActor'
private static var _default : CROptions? = nil
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _default : CROptions? = nil
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:711:38: error: cannot find type 'UIGestureRecognizer' in scope
public var gestureRecognizers : [UIGestureRecognizer] = []
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:725:48: error: cannot find type 'UIView' in scope
fileprivate var _privateNotificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:726:47: error: cannot find type 'UIView' in scope
fileprivate var privateNotificationView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:734:33: error: cannot find type 'UIView' in scope
public var notificationView:UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:744:45: error: cannot find type 'UIView' in scope
fileprivate var _privateStatusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:745:44: error: cannot find type 'UIView' in scope
fileprivate var privateStatusBarView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:758:30: error: cannot find type 'UIView' in scope
public var statusBarView:UIView { return self.privateStatusBarView }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:25: error: cannot find type 'UIDynamicAnimator' in scope
public var animator:UIDynamicAnimator? = nil
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:806:31: error: cannot find type 'UIView' in scope
public var backgroundView:UIView? { return options.backgroundView }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:808:33: error: cannot find type 'UIView' in scope
public var imageContentMode:UIView.ContentMode { return options.imageContentMode }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:812:43: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicatorViewStyle:UIActivityIndicatorView.Style { return options.activityIndicatorViewStyle }
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:942:67: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:946:56: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:946:135: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:950:56: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:950:98: error: cannot find type 'UITouch' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:954:42: error: cannot find type 'UIView' in scope
public func initiateAnimator(_ view: UIView) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:959:23: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
@objc public func swipeGestureRecognizerSwiped(_ gestureRecognizer: CRToastSwipeGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:959:73: note: classes not annotated with @objc cannot be represented in Objective-C
@objc public func swipeGestureRecognizerSwiped(_ gestureRecognizer: CRToastSwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:962:23: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
@objc public func tapGestureRecognizerTapped(_ gestureRecognizer: CRToastTapGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:962:71: note: classes not annotated with @objc cannot be represented in Objective-C
@objc public func tapGestureRecognizerTapped(_ gestureRecognizer: CRToastTapGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:691:34: error: cannot find type 'UIGestureRecognizerDelegate' in scope
public class CRToast : NSObject, UIGestureRecognizerDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:967:21: error: cannot find type 'UIDynamicAnimatorDelegate' in scope
extension CRToast : UIDynamicAnimatorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:968:53: error: cannot find type 'UIDynamicAnimator' in scope
public func dynamicAnimatorDidPause(_ animator: UIDynamicAnimator) {
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetDeviceOrientation() -> UIInterfaceOrientation {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1011:11: error: cannot find type 'UIWindow' in scope
extension UIWindow {
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: cannot find type 'UIInterfaceOrientation' in scope
func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1115:57: error: cannot find type 'UIView' in scope
func CRStatusBarSnapShotView(_ underStatusBar: Bool) -> UIView? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1122:46: error: cannot find type 'UISwipeGestureRecognizer' in scope
public class CRToastSwipeGestureRecognizer : UISwipeGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1128:44: error: cannot find type 'UITapGestureRecognizer' in scope
public class CRToastTapGestureRecognizer : UITapGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:3:23: error: cannot find type 'UIView' in scope
func image(with view: UIView) -> UIImage? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
static let manager = CRToastManager()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:14:14: note: class 'CRToastManager' does not conform to the 'Sendable' protocol
public class CRToastManager : NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
static let manager = CRToastManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let manager = CRToastManager()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: add '@MainActor' to make static property 'kCRToastManagerCollisionBoundaryIdentifier' part of global actor 'MainActor'
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:95:30: error: cannot find type 'UIWindow' in scope
var notificationWindow : UIWindow
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:96:25: error: cannot find type 'UIView' in scope
var statusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:97:28: error: cannot find type 'UIView' in scope
var notificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:141:87: error: cannot find type 'UIView' in scope
func CRToastOutwardAnimationsCompletionBlock(_ manager: CRToastManager, callout: [UIView]? = nil) -> CRToastAnimationCompletionBlock {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:42: error: cannot find type 'UIView' in scope
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:75: error: cannot find type 'UIView' in scope
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:65: error: cannot find type 'UIView' in scope
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:524:28: error: cannot find type 'UICollisionBehaviorDelegate' in scope
extension CRToastManager : UICollisionBehaviorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:90: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:91: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:118: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:88:28: error: cannot find type 'UIImageView' in scope
public var imageView : UIImageView
^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:89:36: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicator : UIActivityIndicatorView
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:90:24: error: cannot find type 'UILabel' in scope
public var label : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:91:32: error: cannot find type 'UILabel' in scope
public var subtitleLabel : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:92:33: error: cannot find type 'UIView' in scope
public var backgroundView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:121:22: error: value of type 'CRToastView' has no member 'backgroundColor'
self.backgroundColor = toast.backgroundColor
~~~~ ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:126:30: error: value of type 'CRToastView' has no member 'insertSubview'
self.insertSubview(bg, at: 0)
~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:133:14: error: initializer does not override a designated initializer from its superclass
override init(frame: CGRect) {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:196:26: error: method does not override any method from its superclass
override public func layoutSubviews() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:87:28: error: cannot find type 'UIView' in scope
public class CRToastView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:3:18: warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:494:26: note: var declared here
FOUNDATION_EXPORT double NSFoundationVersionNumber;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:5:30: error: cannot find type 'UIView' in scope
class CRToastContainerView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:12:28: error: cannot find type 'UIView' in scope
public var toastView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle : UIStatusBarStyle = .default {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: value of type 'CRToastViewController' has no member 'setNeedsStatusBarAppearanceUpdate'
self.setNeedsStatusBarAppearanceUpdate()
~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: property does not override any property from its superclass
public override var shouldAutorotate: Bool { return autorotate }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: property does not override any property from its superclass
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: cannot find type 'UIStatusBarStyle' in scope
public override var preferredStatusBarStyle: UIStatusBarStyle {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:28:26: error: method does not override any method from its superclass
public override func loadView() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: cannot find type 'UIInterfaceOrientation' in scope
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:41:80: error: cannot find type 'UIViewControllerTransitionCoordinator' in scope
public override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:9:38: error: cannot find type 'UIViewController' in scope
public class CRToastViewController : UIViewController {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:6:67: error: cannot find type 'UIEvent' in scope
public override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:5:30: error: cannot find type 'UIWindow' in scope
public class CRToastWindow : UIWindow {
^~~~~~~~
SwiftCompile normal arm64 Compiling\ CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal armv7k Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
EmitSwiftModule normal armv7k (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: warning: static property 'swipeUp' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: add '@MainActor' to make static property 'swipeUp' part of global actor 'MainActor'
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeUp = CRToastInteractionType(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: warning: static property 'swipeLeft' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: add '@MainActor' to make static property 'swipeLeft' part of global actor 'MainActor'
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeLeft = CRToastInteractionType(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: warning: static property 'swipeDown' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: add '@MainActor' to make static property 'swipeDown' part of global actor 'MainActor'
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeDown = CRToastInteractionType(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: warning: static property 'swipeRight' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: add '@MainActor' to make static property 'swipeRight' part of global actor 'MainActor'
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipeRight = CRToastInteractionType(rawValue: 1 << 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: warning: static property 'tapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: add '@MainActor' to make static property 'tapOnce' part of global actor 'MainActor'
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapOnce = CRToastInteractionType(rawValue: 1 << 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: warning: static property 'tapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: add '@MainActor' to make static property 'tapTwice' part of global actor 'MainActor'
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tapTwice = CRToastInteractionType(rawValue: 1 << 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: warning: static property 'twoFingerTapOnce' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: add '@MainActor' to make static property 'twoFingerTapOnce' part of global actor 'MainActor'
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapOnce = CRToastInteractionType(rawValue: 1 << 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: warning: static property 'twoFingerTapTwice' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: add '@MainActor' to make static property 'twoFingerTapTwice' part of global actor 'MainActor'
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let twoFingerTapTwice = CRToastInteractionType(rawValue: 1 << 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: warning: static property 'swipe' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let swipe:CRToastInteractionType = [.swipeUp,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: add '@MainActor' to make static property 'swipe' part of global actor 'MainActor'
public static let swipe:CRToastInteractionType = [.swipeUp,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let swipe:CRToastInteractionType = [.swipeUp,
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: warning: static property 'tap' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let tap:CRToastInteractionType = [.tapOnce,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: add '@MainActor' to make static property 'tap' part of global actor 'MainActor'
public static let tap:CRToastInteractionType = [.tapOnce,
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let tap:CRToastInteractionType = [.tapOnce,
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CRToastInteractionType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all:CRToastInteractionType = [.swipe,.tap]
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:10:15: note: consider making struct 'CRToastInteractionType' conform to the 'Sendable' protocol
public struct CRToastInteractionType : OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all:CRToastInteractionType = [.swipe,.tap]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all:CRToastInteractionType = [.swipe,.tap]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:121:19: error: cannot find type 'UIView' in scope
case dynamic([UIView])
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:117:13: error: type 'CRToastAnimationType' does not conform to protocol 'Equatable'
public enum CRToastAnimationType : Equatable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:121:18: note: associated value type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'CRToastAnimationType' to 'Equatable'
case dynamic([UIView])
^
Swift.==:1:24: note: candidate would match if 'CRToastAnimationType' conformed to 'RawRepresentable'
@inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
^
Swift.FloatingPoint.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'FloatingPoint'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
Swift.BinaryInteger.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'BinaryInteger'
public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
^
Swift._Pointer.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_Pointer'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
Swift._Pointer.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to '_Pointer'
@inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
^
Swift.Strideable.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to 'Strideable'
@inlinable public static func == (x: Self, y: Self) -> Bool}
^
Swift.StringProtocol.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to 'StringProtocol'
@inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
^
Swift.SIMD.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'SIMD'
public static func == (a: Self, b: Self) -> Bool}
^
CoreFoundation._CFObject.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_CFObject'
public static func == (left: Self, right: Self) -> Bool}
^
Foundation.AttributedStringProtocol.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'AttributedStringProtocol'
public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
^
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_BridgedStoredNSError'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:117:13: note: add stubs for conformance
public enum CRToastAnimationType : Equatable {
^
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(CRToastAnimationType, CRToastAnimationType) -> Bool'
static func == (lhs: Self, rhs: Self) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle :UIStatusBarStyle = .default
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:437:32: error: cannot find type 'UIView' in scope
public var backgroundView :UIView? = nil
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:439:34: error: cannot find type 'UIView' in scope
public var imageContentMode :UIView.ContentMode = .center
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:443:44: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicatorViewStyle :UIActivityIndicatorView.Style = .white
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: cannot find 'UIStatusBarStyle' in scope
.statusBarStyle:UIStatusBarStyle.self,
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:492:26: error: cannot find 'UIView' in scope
.backgroundView :UIView.self,
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:494:27: error: cannot find 'UIView' in scope
.imageContentMode:UIView.ContentMode.self,
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:498:37: error: cannot find 'UIActivityIndicatorView' in scope
.activityIndicatorViewStyle:UIActivityIndicatorView.Style.self,
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: warning: static property '_default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var _default : CROptions? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: convert '_default' to a 'let' constant to make 'Sendable' shared state immutable
private static var _default : CROptions? = nil
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: add '@MainActor' to make static property '_default' part of global actor 'MainActor'
private static var _default : CROptions? = nil
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:517:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var _default : CROptions? = nil
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:711:38: error: cannot find type 'UIGestureRecognizer' in scope
public var gestureRecognizers : [UIGestureRecognizer] = []
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:725:48: error: cannot find type 'UIView' in scope
fileprivate var _privateNotificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:726:47: error: cannot find type 'UIView' in scope
fileprivate var privateNotificationView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:734:33: error: cannot find type 'UIView' in scope
public var notificationView:UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:744:45: error: cannot find type 'UIView' in scope
fileprivate var _privateStatusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:745:44: error: cannot find type 'UIView' in scope
fileprivate var privateStatusBarView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:758:30: error: cannot find type 'UIView' in scope
public var statusBarView:UIView { return self.privateStatusBarView }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:25: error: cannot find type 'UIDynamicAnimator' in scope
public var animator:UIDynamicAnimator? = nil
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:806:31: error: cannot find type 'UIView' in scope
public var backgroundView:UIView? { return options.backgroundView }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:808:33: error: cannot find type 'UIView' in scope
public var imageContentMode:UIView.ContentMode { return options.imageContentMode }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:812:43: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicatorViewStyle:UIActivityIndicatorView.Style { return options.activityIndicatorViewStyle }
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:942:67: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:946:56: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:946:135: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:950:56: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:950:98: error: cannot find type 'UITouch' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:954:42: error: cannot find type 'UIView' in scope
public func initiateAnimator(_ view: UIView) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:959:23: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
@objc public func swipeGestureRecognizerSwiped(_ gestureRecognizer: CRToastSwipeGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:959:73: note: classes not annotated with @objc cannot be represented in Objective-C
@objc public func swipeGestureRecognizerSwiped(_ gestureRecognizer: CRToastSwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:962:23: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
@objc public func tapGestureRecognizerTapped(_ gestureRecognizer: CRToastTapGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:962:71: note: classes not annotated with @objc cannot be represented in Objective-C
@objc public func tapGestureRecognizerTapped(_ gestureRecognizer: CRToastTapGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:691:34: error: cannot find type 'UIGestureRecognizerDelegate' in scope
public class CRToast : NSObject, UIGestureRecognizerDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:967:21: error: cannot find type 'UIDynamicAnimatorDelegate' in scope
extension CRToast : UIDynamicAnimatorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:968:53: error: cannot find type 'UIDynamicAnimator' in scope
public func dynamicAnimatorDidPause(_ animator: UIDynamicAnimator) {
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetDeviceOrientation() -> UIInterfaceOrientation {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1011:11: error: cannot find type 'UIWindow' in scope
extension UIWindow {
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: cannot find type 'UIInterfaceOrientation' in scope
func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1115:57: error: cannot find type 'UIView' in scope
func CRStatusBarSnapShotView(_ underStatusBar: Bool) -> UIView? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1122:46: error: cannot find type 'UISwipeGestureRecognizer' in scope
public class CRToastSwipeGestureRecognizer : UISwipeGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1128:44: error: cannot find type 'UITapGestureRecognizer' in scope
public class CRToastTapGestureRecognizer : UITapGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:3:23: error: cannot find type 'UIView' in scope
func image(with view: UIView) -> UIImage? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: warning: static property 'manager' is not concurrency-safe because non-'Sendable' type 'CRToastManager' may have shared mutable state; this is an error in the Swift 6 language mode
static let manager = CRToastManager()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:14:14: note: class 'CRToastManager' does not conform to the 'Sendable' protocol
public class CRToastManager : NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: add '@MainActor' to make static property 'manager' part of global actor 'MainActor'
static let manager = CRToastManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:88:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let manager = CRToastManager()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: warning: static property 'kCRToastManagerCollisionBoundaryIdentifier' is not concurrency-safe because non-'Sendable' type 'NSString' may have shared mutable state; this is an error in the Swift 6 language mode
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h:103:12: note: class 'NSString' does not conform to the 'Sendable' protocol
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: add '@MainActor' to make static property 'kCRToastManagerCollisionBoundaryIdentifier' part of global actor 'MainActor'
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:89:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let kCRToastManagerCollisionBoundaryIdentifier:NSString = "kCRToastManagerCollisionBoundryIdentifier"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:95:30: error: cannot find type 'UIWindow' in scope
var notificationWindow : UIWindow
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:96:25: error: cannot find type 'UIView' in scope
var statusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:97:28: error: cannot find type 'UIView' in scope
var notificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:141:87: error: cannot find type 'UIView' in scope
func CRToastOutwardAnimationsCompletionBlock(_ manager: CRToastManager, callout: [UIView]? = nil) -> CRToastAnimationCompletionBlock {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:42: error: cannot find type 'UIView' in scope
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:75: error: cannot find type 'UIView' in scope
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:65: error: cannot find type 'UIView' in scope
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:524:28: error: cannot find type 'UICollisionBehaviorDelegate' in scope
extension CRToastManager : UICollisionBehaviorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:90: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:91: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:118: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:88:28: error: cannot find type 'UIImageView' in scope
public var imageView : UIImageView
^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:89:36: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicator : UIActivityIndicatorView
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:90:24: error: cannot find type 'UILabel' in scope
public var label : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:91:32: error: cannot find type 'UILabel' in scope
public var subtitleLabel : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:92:33: error: cannot find type 'UIView' in scope
public var backgroundView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:121:22: error: value of type 'CRToastView' has no member 'backgroundColor'
self.backgroundColor = toast.backgroundColor
~~~~ ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:126:30: error: value of type 'CRToastView' has no member 'insertSubview'
self.insertSubview(bg, at: 0)
~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:133:14: error: initializer does not override a designated initializer from its superclass
override init(frame: CGRect) {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:196:26: error: method does not override any method from its superclass
override public func layoutSubviews() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:87:28: error: cannot find type 'UIView' in scope
public class CRToastView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:3:18: warning: reference to var 'NSFoundationVersionNumber' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
let iOS9 = floor(NSFoundationVersionNumber) >= floor(NSFoundationVersionNumber_iOS_9_0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:494:26: note: var declared here
FOUNDATION_EXPORT double NSFoundationVersionNumber;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:5:30: error: cannot find type 'UIView' in scope
class CRToastContainerView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:12:28: error: cannot find type 'UIView' in scope
public var toastView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle : UIStatusBarStyle = .default {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: value of type 'CRToastViewController' has no member 'setNeedsStatusBarAppearanceUpdate'
self.setNeedsStatusBarAppearanceUpdate()
~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: property does not override any property from its superclass
public override var shouldAutorotate: Bool { return autorotate }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: property does not override any property from its superclass
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: cannot find type 'UIStatusBarStyle' in scope
public override var preferredStatusBarStyle: UIStatusBarStyle {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:28:26: error: method does not override any method from its superclass
public override func loadView() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: cannot find type 'UIInterfaceOrientation' in scope
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:41:80: error: cannot find type 'UIViewControllerTransitionCoordinator' in scope
public override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:9:38: error: cannot find type 'UIViewController' in scope
public class CRToastViewController : UIViewController {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:6:67: error: cannot find type 'UIEvent' in scope
public override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:5:30: error: cannot find type 'UIWindow' in scope
public class CRToastWindow : UIWindow {
^~~~~~~~
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.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/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift.abi.json
SwiftCompile normal arm64_32 Compiling\ CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
EmitSwiftModule normal arm64 (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
EmitSwiftModule normal arm64_32 (in target 'CRToastSwift' from project 'CRToastSwift')
EmitSwiftModule normal armv7k (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftEmitModule normal armv7k Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
Building workspace spi-builder-workspace with scheme CRToastSwift
(8 failures)
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
CRToastSwift: /Users/admin/builder/spi-builder-workspace
resolved source packages: CRToastSwift
{
"dependencies" : [
],
"manifest_display_name" : "CRToastSwift",
"name" : "CRToastSwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
}
],
"products" : [
{
"name" : "CRToastSwift",
"targets" : [
"CRToastSwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CRToastSwiftTests",
"module_type" : "SwiftTarget",
"name" : "CRToastSwiftTests",
"path" : "Tests/CRToastSwiftTests",
"sources" : [
"CRToastSwiftTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"CRToastSwift"
],
"type" : "test"
},
{
"c99name" : "CRToastSwift",
"module_type" : "SwiftTarget",
"name" : "CRToastSwift",
"path" : "Sources/CRToastSwift",
"product_memberships" : [
"CRToastSwift"
],
"sources" : [
"CRToastConfig.swift",
"CRToastManager.swift",
"CRToastView.swift",
"CRToastViewController.swift",
"CRToastWindow.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"CRToastSwift"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CRToastSwift -destination generic/platform=watchOS
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme CRToastSwift -destination generic/platform=watchOS
Resolve Package Graph
Resolved source packages:
CRToastSwift: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
Target 'CRToastSwift' in project 'CRToastSwift'
➜ Explicit dependency on target 'CRToastSwift' in project 'CRToastSwift'
Target 'CRToastSwift' in project 'CRToastSwift' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 842e83cdaad817320dffd7518a722f4b
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/842e83cdaad817320dffd7518a722f4b.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
SwiftDriver CRToastSwift normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CRToastSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver CRToastSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CRToastSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver CRToastSwift normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CRToastSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/armv7k/CRToastSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
EmitSwiftModule normal arm64_32 (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:121:19: error: cannot find type 'UIView' in scope
case dynamic([UIView])
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:117:13: error: type 'CRToastAnimationType' does not conform to protocol 'Equatable'
public enum CRToastAnimationType : Equatable {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:121:18: note: associated value type '<<error type>>' does not conform to protocol 'Equatable', preventing synthesized conformance of 'CRToastAnimationType' to 'Equatable'
case dynamic([UIView])
^
Swift.==:1:24: note: candidate would match if 'CRToastAnimationType' conformed to 'RawRepresentable'
@inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
^
Swift.FloatingPoint.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'FloatingPoint'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
Swift.BinaryInteger.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'BinaryInteger'
public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
^
Swift._Pointer.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_Pointer'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
Swift._Pointer.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to '_Pointer'
@inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
^
Swift.Strideable.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to 'Strideable'
@inlinable public static func == (x: Self, y: Self) -> Bool}
^
Swift.StringProtocol.==:2:31: note: candidate would match if 'CRToastAnimationType' conformed to 'StringProtocol'
@inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
^
Swift.SIMD.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'SIMD'
public static func == (a: Self, b: Self) -> Bool}
^
CoreFoundation._CFObject.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_CFObject'
public static func == (left: Self, right: Self) -> Bool}
^
Foundation.AttributedStringProtocol.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to 'AttributedStringProtocol'
public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
^
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'CRToastAnimationType' conformed to '_BridgedStoredNSError'
public static func == (lhs: Self, rhs: Self) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:117:13: note: add stubs for conformance
public enum CRToastAnimationType : Equatable {
^
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(CRToastAnimationType, CRToastAnimationType) -> Bool'
static func == (lhs: Self, rhs: Self) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:434:32: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle :UIStatusBarStyle = .default
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:437:32: error: cannot find type 'UIView' in scope
public var backgroundView :UIView? = nil
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:439:34: error: cannot find type 'UIView' in scope
public var imageContentMode :UIView.ContentMode = .center
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:443:44: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicatorViewStyle :UIActivityIndicatorView.Style = .white
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:489:25: error: cannot find 'UIStatusBarStyle' in scope
.statusBarStyle:UIStatusBarStyle.self,
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:492:26: error: cannot find 'UIView' in scope
.backgroundView :UIView.self,
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:494:27: error: cannot find 'UIView' in scope
.imageContentMode:UIView.ContentMode.self,
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:498:37: error: cannot find 'UIActivityIndicatorView' in scope
.activityIndicatorViewStyle:UIActivityIndicatorView.Style.self,
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:711:38: error: cannot find type 'UIGestureRecognizer' in scope
public var gestureRecognizers : [UIGestureRecognizer] = []
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:725:48: error: cannot find type 'UIView' in scope
fileprivate var _privateNotificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:726:47: error: cannot find type 'UIView' in scope
fileprivate var privateNotificationView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:734:33: error: cannot find type 'UIView' in scope
public var notificationView:UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:744:45: error: cannot find type 'UIView' in scope
fileprivate var _privateStatusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:745:44: error: cannot find type 'UIView' in scope
fileprivate var privateStatusBarView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:758:30: error: cannot find type 'UIView' in scope
public var statusBarView:UIView { return self.privateStatusBarView }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:25: error: cannot find type 'UIDynamicAnimator' in scope
public var animator:UIDynamicAnimator? = nil
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:31: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:806:31: error: cannot find type 'UIView' in scope
public var backgroundView:UIView? { return options.backgroundView }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:808:33: error: cannot find type 'UIView' in scope
public var imageContentMode:UIView.ContentMode { return options.imageContentMode }
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:812:43: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicatorViewStyle:UIActivityIndicatorView.Style { return options.activityIndicatorViewStyle }
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:942:67: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:946:56: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:946:135: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:950:56: error: cannot find type 'UIGestureRecognizer' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:950:98: error: cannot find type 'UITouch' in scope
public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:954:42: error: cannot find type 'UIView' in scope
public func initiateAnimator(_ view: UIView) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:959:23: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
@objc public func swipeGestureRecognizerSwiped(_ gestureRecognizer: CRToastSwipeGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:959:73: note: classes not annotated with @objc cannot be represented in Objective-C
@objc public func swipeGestureRecognizerSwiped(_ gestureRecognizer: CRToastSwipeGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:962:23: error: method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
@objc public func tapGestureRecognizerTapped(_ gestureRecognizer: CRToastTapGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:962:71: note: classes not annotated with @objc cannot be represented in Objective-C
@objc public func tapGestureRecognizerTapped(_ gestureRecognizer: CRToastTapGestureRecognizer) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:691:34: error: cannot find type 'UIGestureRecognizerDelegate' in scope
public class CRToast : NSObject, UIGestureRecognizerDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:967:21: error: cannot find type 'UIDynamicAnimatorDelegate' in scope
extension CRToast : UIDynamicAnimatorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:968:53: error: cannot find type 'UIDynamicAnimator' in scope
public func dynamicAnimatorDidPause(_ animator: UIDynamicAnimator) {
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:989:34: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetDeviceOrientation() -> UIInterfaceOrientation {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:994:56: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetStatusBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:998:55: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetStatusBarWidthForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1011:11: error: cannot find type 'UIWindow' in scope
extension UIWindow {
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1039:60: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNavigationBarHeightForOrientation(_ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1054:112: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationViewHeightForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGFloat {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1069:107: error: cannot find type 'UIInterfaceOrientation' in scope
func CRNotificationViewSizeForOrientation(_ type: CRToastType, _ preferredHeight: CGFloat, _ orientation: UIInterfaceOrientation) -> CGSize {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1096:63: error: cannot find type 'UIInterfaceOrientation' in scope
func CRGetNotificationContainerFrame(_ statusBarOrientation : UIInterfaceOrientation, _ notificationSize : CGSize) -> CGRect {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1115:57: error: cannot find type 'UIView' in scope
func CRStatusBarSnapShotView(_ underStatusBar: Bool) -> UIView? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1122:46: error: cannot find type 'UISwipeGestureRecognizer' in scope
public class CRToastSwipeGestureRecognizer : UISwipeGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:1128:44: error: cannot find type 'UITapGestureRecognizer' in scope
public class CRToastTapGestureRecognizer : UITapGestureRecognizer {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:3:23: error: cannot find type 'UIView' in scope
func image(with view: UIView) -> UIImage? {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:95:30: error: cannot find type 'UIWindow' in scope
var notificationWindow : UIWindow
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:96:25: error: cannot find type 'UIView' in scope
var statusBarView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:97:28: error: cannot find type 'UIView' in scope
var notificationView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:141:87: error: cannot find type 'UIView' in scope
func CRToastOutwardAnimationsCompletionBlock(_ manager: CRToastManager, callout: [UIView]? = nil) -> CRToastAnimationCompletionBlock {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:42: error: cannot find type 'UIView' in scope
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:75: error: cannot find type 'UIView' in scope
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:65: error: cannot find type 'UIView' in scope
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:524:28: error: cannot find type 'UICollisionBehaviorDelegate' in scope
extension CRToastManager : UICollisionBehaviorDelegate {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:597:90: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item: UIDynamicItem, withBoundaryIdentifier identifier: NSCopying?) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:47: error: cannot find type 'UICollisionBehavior' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:91: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:603:118: error: cannot find type 'UIDynamicItem' in scope
public func collisionBehavior(_ behavior: UICollisionBehavior, endedContactFor item1: UIDynamicItem, with item2: UIDynamicItem) {
^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:88:28: error: cannot find type 'UIImageView' in scope
public var imageView : UIImageView
^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:89:36: error: cannot find type 'UIActivityIndicatorView' in scope
public var activityIndicator : UIActivityIndicatorView
^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:90:24: error: cannot find type 'UILabel' in scope
public var label : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:91:32: error: cannot find type 'UILabel' in scope
public var subtitleLabel : UILabel
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:92:33: error: cannot find type 'UIView' in scope
public var backgroundView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:121:22: error: value of type 'CRToastView' has no member 'backgroundColor'
self.backgroundColor = toast.backgroundColor
~~~~ ^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:126:30: error: value of type 'CRToastView' has no member 'insertSubview'
self.insertSubview(bg, at: 0)
~~~~ ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:133:14: error: initializer does not override a designated initializer from its superclass
override init(frame: CGRect) {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:196:26: error: method does not override any method from its superclass
override public func layoutSubviews() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:87:28: error: cannot find type 'UIView' in scope
public class CRToastView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:5:30: error: cannot find type 'UIView' in scope
class CRToastContainerView : UIView {
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:12:28: error: cannot find type 'UIView' in scope
public var toastView : UIView?
^~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
@class UIView;
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:33: error: cannot find type 'UIStatusBarStyle' in scope
public var statusBarStyle : UIStatusBarStyle = .default {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:15:18: error: value of type 'CRToastViewController' has no member 'setNeedsStatusBarAppearanceUpdate'
self.setNeedsStatusBarAppearanceUpdate()
~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:20:25: error: property does not override any property from its superclass
public override var shouldAutorotate: Bool { return autorotate }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:22:25: error: property does not override any property from its superclass
public override var prefersStatusBarHidden: Bool { return UIApplication.shared.isStatusBarHidden }
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:24:50: error: cannot find type 'UIStatusBarStyle' in scope
public override var preferredStatusBarStyle: UIStatusBarStyle {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:28:26: error: method does not override any method from its superclass
public override func loadView() {
~~~~~~~~ ^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:32:73: error: cannot find type 'UIInterfaceOrientation' in scope
public override func willAnimateRotation(to toInterfaceOrientation: UIInterfaceOrientation, duration: TimeInterval) {
^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:41:80: error: cannot find type 'UIViewControllerTransitionCoordinator' in scope
public override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:9:38: error: cannot find type 'UIViewController' in scope
public class CRToastViewController : UIViewController {
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:6:67: error: cannot find type 'UIEvent' in scope
public override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift:5:30: error: cannot find type 'UIWindow' in scope
public class CRToastWindow : UIWindow {
^~~~~~~~
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.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/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-watchos/CRToastSwift.build/Objects-normal/arm64_32/CRToastSwift.abi.json
SwiftCompile normal arm64_32 Compiling\ CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ CRToastWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CRToastView.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ CRToastManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
EmitSwiftModule normal arm64 (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal armv7k Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
Command SwiftEmitModule failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal arm64_32 (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftEmitModule normal armv7k Emitting\ module\ for\ CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
Building workspace spi-builder-workspace with scheme CRToastSwift
(4 failures)
BUILD FAILURE 6.1 watchOS