Build Information
Successful build of CRToastSwift, reference 0.1.2 (570435
), with Swift 6.0 for iOS using Xcode 16.0 on 31 Oct 2024 12:41:29 UTC.
Swift 6 data race errors: 15
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CRToastSwift -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
for v in (manager.notificationWindow.rootViewController?.view.subviews ?? []) {
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:156:19: warning: call to main actor-isolated instance method 'removeFromSuperview()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
v.removeFromSuperview()
^
UIKit.UIView:5:26: note: calls to instance method 'removeFromSuperview()' from outside of its actor context are implicitly asynchronous
@MainActor open func removeFromSuperview()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:159:19: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
v.isHidden = false
^
UIKit.UIView:16:14: note: mutation of this property is only permitted within the actor
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:165:44: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
manager.notificationWindow.isHidden = true
^
UIKit.UIView:16:14: note: mutation of this property is only permitted within the actor
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:172:35: warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.state = .exiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:693:16: note: mutation of this property is only permitted within the actor
public var state : CRToastState = .waiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:173:35: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.animator?.removeAllBehaviors()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:174:39: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
manager.notificationView?.frame = manager.notification?.notificationViewAnimationFrame2 ?? CGRect.zero
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:174:69: warning: main actor-isolated property 'notificationViewAnimationFrame2' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notificationView?.frame = manager.notification?.notificationViewAnimationFrame2 ?? CGRect.zero
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:740:16: note: property declared here
public var notificationViewAnimationFrame2:CGRect {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:175:36: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
manager.statusBarView?.frame = manager.notificationWindow.rootViewController?.view.bounds ?? CGRect.zero
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:175:96: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.statusBarView?.frame = manager.notificationWindow.rootViewController?.view.bounds ?? CGRect.zero
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:175:91: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.statusBarView?.frame = manager.notificationWindow.rootViewController?.view.bounds ?? CGRect.zero
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:175:71: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.statusBarView?.frame = manager.notificationWindow.rootViewController?.view.bounds ?? CGRect.zero
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:182:17: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if view.frame == lastFrame {
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:22: note: add '@MainActor' to make instance method 'checkAnim(for:lastFrame:delay:_:)' part of global actor 'MainActor'
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:185:41: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let f = CGRect(origin: view.frame.origin, size: view.frame.size)
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:22: note: add '@MainActor' to make instance method 'checkAnim(for:lastFrame:delay:_:)' part of global actor 'MainActor'
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:185:66: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let f = CGRect(origin: view.frame.origin, size: view.frame.size)
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:179:22: note: add '@MainActor' to make instance method 'checkAnim(for:lastFrame:delay:_:)' part of global actor 'MainActor'
fileprivate func checkAnim(for view: UIView?, lastFrame: CGRect?, delay: Double, _ callback : @escaping ()->Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:187:17: warning: capture of 'self' with non-sendable type 'CRToastManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
^
/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:187:71: warning: capture of 'callback' with non-sendable type '() -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:187:71: note: a function type must be marked '@Sendable' to conform to 'Sendable'
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:193:34: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if manager.notification?.animator == nil {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:194:71: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let v = manager.notificationWindow.rootViewController?.view {
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:194:51: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let v = manager.notificationWindow.rootViewController?.view {
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:195:39: warning: call to main actor-isolated instance method 'initiateAnimator' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.initiateAnimator(v)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:954:17: note: calls to instance method 'initiateAnimator' from outside of its actor context are implicitly asynchronous
public func initiateAnimator(_ view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:198:31: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.animator?.removeAllBehaviors()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:202:23: warning: call to main actor-isolated initializer 'init(items:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let gravity = UIGravityBehavior(items: gv)
^
UIKit.UIGravityBehavior:3:23: note: calls to initializer 'init(items:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(items: [any UIDynamicItem])
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:203:17: warning: main actor-isolated property 'gravityDirection' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
gravity.gravityDirection = notification?.outGravityDirection ?? CGVector(dx: 0, dy: -1)
^
UIKit.UIGravityBehavior:7:14: note: mutation of this property is only permitted within the actor
open var gravityDirection: CGVector { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:203:50: warning: main actor-isolated property 'outGravityDirection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
gravity.gravityDirection = notification?.outGravityDirection ?? CGVector(dx: 0, dy: -1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:826:16: note: property declared here
public var outGravityDirection:CGVector {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:204:17: warning: main actor-isolated property 'magnitude' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
gravity.magnitude = notification?.gravityMagnitude ?? CROptions.default.gravityMagnitude
^
UIKit.UIGravityBehavior:9:14: note: mutation of this property is only permitted within the actor
open var magnitude: CGFloat { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:204:43: warning: main actor-isolated property 'gravityMagnitude' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
gravity.magnitude = notification?.gravityMagnitude ?? CROptions.default.gravityMagnitude
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:786:16: note: property declared here
public var gravityMagnitude:CGFloat { return options.gravityMagnitude }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:209:30: warning: main actor-isolated property 'presentationType' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if notification?.presentationType == .push {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:771:16: note: property declared here
public var presentationType:CRToastPresentationType { return options.presentationType }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:213:25: warning: call to main actor-isolated initializer 'init(items:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let collision = UICollisionBehavior(items: collisionItems)
^
UIKit.UICollisionBehavior:3:23: note: calls to initializer 'init(items:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(items: [any UIDynamicItem])
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:214:19: warning: main actor-isolated property 'collisionDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
collision.collisionDelegate = manager
^
UIKit.UICollisionBehavior:26:19: note: mutation of this property is only permitted within the actor
weak open var collisionDelegate: (any UICollisionBehaviorDelegate)? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:215:81: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let c = callout, let rootViewController = manager.notificationWindow.rootViewController {
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:217:23: warning: main actor-isolated property 'isHidden' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vo.isHidden { continue }
^
UIKit.UIView:16:14: note: property declared here
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:218:23: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vo.superview == rootViewController.view { continue } // views have to share the same parent
^
UIKit.UIView:2:14: note: property declared here
open var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:218:55: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vo.superview == rootViewController.view { continue } // views have to share the same parent
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:219:25: warning: call to main actor-isolated initializer 'init(image:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let v = UIImageView(image: image(with: vo))
^
UIKit.UIImageView:3:23: note: calls to initializer 'init(image:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(image: UIImage?)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:220:19: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
v.frame = vo.superview!.convert(vo.frame, to: rootViewController.view)
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:220:41: warning: call to main actor-isolated instance method 'convert(_:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
v.frame = vo.superview!.convert(vo.frame, to: rootViewController.view)
^
UIKit.UIView:30:15: note: calls to instance method 'convert(_:to:)' from outside of its actor context are implicitly asynchronous
open func convert(_ rect: CGRect, to view: UIView?) -> CGRect
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:220:30: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
v.frame = vo.superview!.convert(vo.frame, to: rootViewController.view)
^
UIKit.UIView:2:14: note: property declared here
open var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:220:52: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
v.frame = vo.superview!.convert(vo.frame, to: rootViewController.view)
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:220:82: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
v.frame = vo.superview!.convert(vo.frame, to: rootViewController.view)
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:221:41: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(v)
^
UIKit.UIView:12:15: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:221:36: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(v)
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:223:28: warning: call to main actor-isolated initializer 'init(item:snapTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let snap = UISnapBehavior(item: v, snapTo: v.center)
^
UIKit.UISnapBehavior:3:23: note: calls to initializer 'init(item:snapTo:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(item: any UIDynamicItem, snapTo point: CGPoint)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:223:62: warning: main actor-isolated property 'center' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let snap = UISnapBehavior(item: v, snapTo: v.center)
^
UIKit.UIView:4:14: note: property declared here
open var center: CGPoint { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:224:31: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
notification?.animator?.addBehavior(snap)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:225:27: warning: call to main actor-isolated instance method 'addItem' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
collision.addItem(v)
^
UIKit.UICollisionBehavior:4:26: note: calls to instance method 'addItem' from outside of its actor context are implicitly asynchronous
@MainActor open func addItem(_ item: any UIDynamicItem)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:226:20: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
vo.isHidden = true
^
UIKit.UIView:16:14: note: mutation of this property is only permitted within the actor
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:229:44: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let screenSize = UIScreen.main.bounds.size
^
UIKit.UIScreen:10:25: note: property declared here
@MainActor open var bounds: CGRect { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:229:39: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let screenSize = UIScreen.main.bounds.size
^
UIKit.UIScreen:6:20: note: class property declared here
open class var main: UIScreen { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:231:23: warning: call to main actor-isolated instance method 'addBoundary(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
collision.addBoundary(withIdentifier: CRToastManager.kCRToastManagerCollisionBoundaryIdentifier, for: outsideScreenBoundary)
^
UIKit.UICollisionBehavior:12:26: note: calls to instance method 'addBoundary(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func addBoundary(withIdentifier identifier: any NSCopying, for bezierPath: UIBezierPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:232:37: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.frame.size = screenSize
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:232:32: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.frame.size = screenSize
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:235:51: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let fc = manager.notificationView?.frame {
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:238:21: warning: capture of 'self' with non-sendable type 'CRToastManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self.checkAnim(for: manager.notificationView, lastFrame: f, delay: 0.2) {
^
/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:238:41: warning: capture of 'manager' with non-sendable type 'CRToastManager' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self.checkAnim(for: manager.notificationView, lastFrame: f, delay: 0.2) {
^
/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:239:29: warning: capture of 'manager' with non-sendable type 'CRToastManager' in an isolated closure; this is an error in the Swift 6 language mode
if !manager.notificationWindow.isHidden {
^
/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:246:23: warning: call to main actor-isolated instance method 'addBoundary(withIdentifier:from:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
collision.addBoundary(withIdentifier: CRToastManager.kCRToastManagerCollisionBoundaryIdentifier,
^
UIKit.UICollisionBehavior:15:26: note: calls to instance method 'addBoundary(withIdentifier:from:to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func addBoundary(withIdentifier identifier: any NSCopying, from p1: CGPoint, to p2: CGPoint)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:247:55: warning: main actor-isolated property 'outCollisionPoint1' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
from: notification?.outCollisionPoint1 ?? CGPoint.zero,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:877:16: note: property declared here
public var outCollisionPoint1:CGPoint {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:248:53: warning: main actor-isolated property 'outCollisionPoint2' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
to: notification?.outCollisionPoint2 ?? CGPoint.zero)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:897:16: note: property declared here
public var outCollisionPoint2:CGPoint {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:251:27: warning: call to main actor-isolated initializer 'init(items:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let rotLock = UIDynamicItemBehavior(items: collisionItems)
^
UIKit.UIDynamicItemBehavior:3:23: note: calls to initializer 'init(items:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(items: [any UIDynamicItem])
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:252:21: warning: main actor-isolated property 'allowsRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rotLock.allowsRotation = false
^
UIKit.UIDynamicItemBehavior:19:14: note: mutation of this property is only permitted within the actor
open var allowsRotation: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:253:35: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.animator?.addBehavior(rotLock)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:255:31: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.animator?.addBehavior(collision)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:256:31: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.animator?.addBehavior(gravity)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:191:22: note: add '@MainActor' to make instance method 'setupOutGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupOutGravity(_ manager: CRToastManager, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:262:35: warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
manager.notification?.state = .exiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:693:16: note: mutation of this property is only permitted within the actor
public var state : CRToastState = .waiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:263:36: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
manager.statusBarView?.frame = notification?.statusBarViewAnimationFrame2 ?? CGRect.zero
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:263:58: warning: main actor-isolated property 'statusBarViewAnimationFrame2' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.statusBarView?.frame = notification?.statusBarViewAnimationFrame2 ?? CGRect.zero
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:762:16: note: property declared here
public var statusBarViewAnimationFrame2:CGRect {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:264:40: warning: main actor-isolated property 'gestureRecognizers' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
manager.notificationWindow.gestureRecognizers?.forEach { recognizer in
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var gestureRecognizers: [UIGestureRecognizer]? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:265:28: warning: main actor-isolated property 'isEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
recognizer.isEnabled = false
^
UIKit.UIGestureRecognizer:10:25: note: mutation of this property is only permitted within the actor
@MainActor open var isEnabled: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:268:53: warning: main actor-isolated property 'animationTypeOut' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let animType = manager.notification?.animationTypeOut {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:777:16: note: property declared here
public var animationTypeOut:CRToastAnimationType { return options.animationTypeOut }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:272:28: warning: call to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
^
UIKit.UIView:3:32: note: calls to class method 'animate(withDuration:delay:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:272:64: warning: main actor-isolated property 'animateOutTimeInterval' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:781:16: note: property declared here
public var animateOutTimeInterval:TimeInterval { return options.animateOutTimeInterval }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:278:28: warning: call to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
^
UIKit.UIView:23:32: note: calls to class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:278:64: warning: main actor-isolated property 'animateOutTimeInterval' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:781:16: note: property declared here
public var animateOutTimeInterval:TimeInterval { return options.animateOutTimeInterval }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:280:74: warning: main actor-isolated property 'springDamping' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
usingSpringWithDamping: notification?.springDamping ?? 0.5,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:784:16: note: property declared here
public var springDamping:CGFloat { return options.springDamping }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:281:73: warning: main actor-isolated property 'springInitialVelocity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
initialSpringVelocity: notification?.springInitialVelocity ?? 0.5,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:785:16: note: property declared here
public var springInitialVelocity:CGFloat { return options.springInitialVelocity }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:296:26: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return toast.identifier
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:774:16: note: property declared here
public var identifier:String? { return options.identifier }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:302:43: warning: main actor-isolated property 'state' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
if animated && self.notification?.state == .entering || self.notification?.state == .displaying {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:693:16: note: property declared here
public var state : CRToastState = .waiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:302:84: warning: main actor-isolated property 'state' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
if animated && self.notification?.state == .entering || self.notification?.state == .displaying {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:693:16: note: property declared here
public var state : CRToastState = .waiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:320:31: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let id = toast.identifier, id == identifier {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:774:16: note: property declared here
public var identifier:String? { return options.identifier }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:341:27: warning: main actor-isolated property 'appearance' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let ap = toast.appearance {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:698:16: note: property declared here
public var appearance : (()->Void)? = { return }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:345:28: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
notificationWindow.isHidden = false
^
UIKit.UIView:16:14: note: mutation of this property is only permitted within the actor
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:346:61: warning: main actor-isolated property 'toastType' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var notificationSize = CRNotificationViewSize(toast.toastType, toast.preferredHeight)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:768:16: note: property declared here
public var toastType:CRToastType { return options.toastType }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:346:78: warning: main actor-isolated property 'preferredHeight' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
var notificationSize = CRNotificationViewSize(toast.toastType, toast.preferredHeight)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:769:16: note: property declared here
public var preferredHeight:CGFloat { return options.preferredHeight }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:347:18: warning: main actor-isolated property 'keepNavigationBarBorder' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if toast.keepNavigationBarBorder {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:773:16: note: property declared here
public var keepNavigationBarBorder:Bool { return options.keepNavigationBarBorder }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:353:56: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let rootViewController = notificationWindow.rootViewController as? CRToastViewController {
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:354:32: warning: main actor-isolated property 'statusBarStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.statusBarStyle = toast.statusBarStyle
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:13:16: note: mutation of this property is only permitted within the actor
public var statusBarStyle : UIStatusBarStyle = .default {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:354:55: warning: main actor-isolated property 'statusBarStyle' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.statusBarStyle = toast.statusBarStyle
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:803:16: note: property declared here
public var statusBarStyle:UIStatusBarStyle { return options.statusBarStyle }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:355:32: warning: main actor-isolated property 'autorotate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.autorotate = toast.autorotate
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:10:16: note: mutation of this property is only permitted within the actor
public var autorotate : Bool = true
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:355:51: warning: main actor-isolated property 'autorotate' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.autorotate = toast.autorotate
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:714:16: note: property declared here
public var autorotate : Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:356:32: warning: main actor-isolated property 'notification' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.notification = toast
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:11:16: note: mutation of this property is only permitted within the actor
public var notification : CRToast?
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:358:57: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
notificationWindow.rootViewController?.view.frame = containerFrame
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:358:52: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
notificationWindow.rootViewController?.view.frame = containerFrame
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:358:32: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
notificationWindow.rootViewController?.view.frame = containerFrame
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:359:32: warning: main actor-isolated property 'windowLevel' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
notificationWindow.windowLevel = toast.underStatusBar ? .normal + 1 : .statusBar
^
UIKit.UIWindow:10:25: note: mutation of this property is only permitted within the actor
@MainActor open var windowLevel: UIWindow.Level { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:359:52: warning: main actor-isolated property 'underStatusBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
notificationWindow.windowLevel = toast.underStatusBar ? .normal + 1 : .statusBar
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:772:16: note: property declared here
public var underStatusBar:Bool { return options.underStatusBar }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:361:39: warning: main actor-isolated property 'statusBarView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let statusBarView = toast.statusBarView
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:758:16: note: property declared here
public var statusBarView:UIView { return self.privateStatusBarView }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:362:27: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
statusBarView.frame = rootViewController.view.bounds
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:362:59: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
statusBarView.frame = rootViewController.view.bounds
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:362:54: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
statusBarView.frame = rootViewController.view.bounds
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:363:37: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(statusBarView)
^
UIKit.UIView:12:15: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:363:32: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(statusBarView)
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:365:27: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
statusBarView.isHidden = toast.presentationType == .cover
^
UIKit.UIView:16:14: note: mutation of this property is only permitted within the actor
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:365:44: warning: main actor-isolated property 'presentationType' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
statusBarView.isHidden = toast.presentationType == .cover
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:771:16: note: property declared here
public var presentationType:CRToastPresentationType { return options.presentationType }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:367:42: warning: main actor-isolated property 'notificationView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let notificationView = toast.notificationView
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:734:16: note: property declared here
public var notificationView:UIView {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:369:20: warning: main actor-isolated property 'toast' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
tv.toast = toast
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift:94:16: note: mutation of this property is only permitted within the actor
public var toast : CRToast? {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:371:30: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
notificationView.frame = toast.notificationViewAnimationFrame1
^
UIKit.UIView:2:14: note: mutation of this property is only permitted within the actor
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:371:44: warning: main actor-isolated property 'notificationViewAnimationFrame1' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
notificationView.frame = toast.notificationViewAnimationFrame1
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:737:16: note: property declared here
public var notificationViewAnimationFrame1:CGRect {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:372:37: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(notificationView)
^
UIKit.UIView:12:15: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:372:32: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(notificationView)
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:374:32: warning: main actor-isolated property 'toastView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.toastView = notificationView
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:12:16: note: mutation of this property is only permitted within the actor
public var toastView : UIView?
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:375:30: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
notificationView.isHidden = false
^
UIKit.UIView:16:14: note: mutation of this property is only permitted within the actor
open var isHidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:377:52: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
for subview in rootViewController.view.subviews {
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var subviews: [UIView] { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:377:47: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
for subview in rootViewController.view.subviews {
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:378:25: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
subview.isUserInteractionEnabled = false
^
UIKit.UIView:6:14: note: mutation of this property is only permitted within the actor
open var isUserInteractionEnabled: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:381:37: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.isUserInteractionEnabled = true
^
UIKit.UIView:6:14: note: mutation of this property is only permitted within the actor
open var isUserInteractionEnabled: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:381:32: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.isUserInteractionEnabled = true
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:382:37: warning: main actor-isolated property 'gestureRecognizers' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.gestureRecognizers = toast.gestureRecognizers
^
UIKit.UIView:3:25: note: mutation of this property is only permitted within the actor
@MainActor open var gestureRecognizers: [UIGestureRecognizer]? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:382:32: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.gestureRecognizers = toast.gestureRecognizers
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:382:64: warning: main actor-isolated property 'gestureRecognizers' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.gestureRecognizers = toast.gestureRecognizers
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:711:16: note: property declared here
public var gestureRecognizers : [UIGestureRecognizer] = []
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:385:139: warning: main actor-isolated property 'uuid' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let inwardAnimationCompletionBlock = CRToastInwardAnimationsCompletionBlock(self, toast: toast, notificationUUIDString: toast.uuid.uuidString)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:692:16: note: property declared here
public var uuid : UUID = UUID()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:387:19: warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
toast.state = .entering
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:693:16: note: mutation of this property is only permitted within the actor
public var state : CRToastState = .waiting
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:391:22: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if toast.text.count > 0 || (toast.subtitleText?.count ?? 0) > 0 {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:788:16: note: property declared here
public var text:String { return options.text }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:340:10: note: add '@MainActor' to make instance method 'displayNotification' part of global actor 'MainActor'
func displayNotification(_ toast: CRToast) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:391:47: warning: main actor-isolated property 'subtitleText' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
if toast.text.count > 0 || (toast.subtitleText?.count ?? 0) > 0 {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:796:16: note: property declared here
public var subtitleText:String? { return options.subtitleText }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:402:147: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let notificationView = self.notificationView, let statusBarView = self.statusBarView, let rootViewController = self.notificationWindow.rootViewController {
^
UIKit.UIWindow:30:14: note: property declared here
open var rootViewController: UIViewController? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:403:19: warning: call to main actor-isolated instance method 'initiateAnimator' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
toast.initiateAnimator(rootViewController.view)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:954:17: note: calls to instance method 'initiateAnimator' from outside of its actor context are implicitly asynchronous
public func initiateAnimator(_ view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:403:55: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toast.initiateAnimator(rootViewController.view)
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:404:19: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toast.animator?.removeAllBehaviors()
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:406:27: warning: call to main actor-isolated initializer 'init(items:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let gravity = UIGravityBehavior(items: [notificationView, statusBarView])
^
UIKit.UIGravityBehavior:3:23: note: calls to initializer 'init(items:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(items: [any UIDynamicItem])
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:407:21: warning: main actor-isolated property 'gravityDirection' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
gravity.gravityDirection = toast.inGravityDirection
^
UIKit.UIGravityBehavior:7:14: note: mutation of this property is only permitted within the actor
open var gravityDirection: CGVector { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:407:46: warning: main actor-isolated property 'inGravityDirection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
gravity.gravityDirection = toast.inGravityDirection
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:821:16: note: property declared here
public var inGravityDirection:CGVector {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:408:21: warning: main actor-isolated property 'magnitude' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
gravity.magnitude = toast.gravityMagnitude
^
UIKit.UIGravityBehavior:9:14: note: mutation of this property is only permitted within the actor
open var magnitude: CGFloat { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:408:39: warning: main actor-isolated property 'gravityMagnitude' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
gravity.magnitude = toast.gravityMagnitude
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:786:16: note: property declared here
public var gravityMagnitude:CGFloat { return options.gravityMagnitude }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:410:22: warning: main actor-isolated property 'presentationType' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if toast.presentationType == .push {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:771:16: note: property declared here
public var presentationType:CRToastPresentationType { return options.presentationType }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:415:27: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vo.superview == rootViewController.view { continue } // views have to share the same parent
^
UIKit.UIView:2:14: note: property declared here
open var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:415:59: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vo.superview == rootViewController.view { continue } // views have to share the same parent
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:416:29: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let v = UIView(frame: vo.frame)
^
UIKit.UIView:4:12: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
public init(frame: CGRect)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:416:46: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let v = UIView(frame: vo.frame)
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:417:23: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
v.backgroundColor = UIColor.clear
^
UIKit.UIView:10:25: note: mutation of this property is only permitted within the actor
@NSCopying open var backgroundColor: UIColor? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:418:45: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(v)
^
UIKit.UIView:12:15: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
open func addSubview(_ view: UIView)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:418:40: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
rootViewController.view.addSubview(v)
^
UIKit.UIViewController:5:14: note: property declared here
open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:420:32: warning: call to main actor-isolated initializer 'init(item:snapTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let snap = UISnapBehavior(item: v, snapTo: v.center)
^
UIKit.UISnapBehavior:3:23: note: calls to initializer 'init(item:snapTo:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(item: any UIDynamicItem, snapTo point: CGPoint)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:420:66: warning: main actor-isolated property 'center' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let snap = UISnapBehavior(item: v, snapTo: v.center)
^
UIKit.UIView:4:14: note: property declared here
open var center: CGPoint { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:421:27: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toast.animator?.addBehavior(snap)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:424:31: warning: call to main actor-isolated initializer 'init(items:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let rotLock = UIDynamicItemBehavior(items: collisionItems)
^
UIKit.UIDynamicItemBehavior:3:23: note: calls to initializer 'init(items:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(items: [any UIDynamicItem])
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:425:25: warning: main actor-isolated property 'allowsRotation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rotLock.allowsRotation = false
^
UIKit.UIDynamicItemBehavior:19:14: note: mutation of this property is only permitted within the actor
open var allowsRotation: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:426:23: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toast.animator?.addBehavior(rotLock)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:428:29: warning: call to main actor-isolated initializer 'init(items:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let collision = UICollisionBehavior(items: collisionItems)
^
UIKit.UICollisionBehavior:3:23: note: calls to initializer 'init(items:)' from outside of its actor context are implicitly asynchronous
@MainActor public init(items: [any UIDynamicItem])
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:429:23: warning: main actor-isolated property 'collisionDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
collision.collisionDelegate = self
^
UIKit.UICollisionBehavior:26:19: note: mutation of this property is only permitted within the actor
weak open var collisionDelegate: (any UICollisionBehaviorDelegate)? { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:430:23: warning: call to main actor-isolated instance method 'addBoundary(withIdentifier:from:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
collision.addBoundary(withIdentifier: CRToastManager.kCRToastManagerCollisionBoundaryIdentifier,
^
UIKit.UICollisionBehavior:15:26: note: calls to instance method 'addBoundary(withIdentifier:from:to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func addBoundary(withIdentifier identifier: any NSCopying, from p1: CGPoint, to p2: CGPoint)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:431:47: warning: main actor-isolated property 'inCollisionPoint1' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
from: toast.inCollisionPoint1,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:833:16: note: property declared here
public var inCollisionPoint1:CGPoint {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:432:45: warning: main actor-isolated property 'inCollisionPoint2' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
to: toast.inCollisionPoint2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:855:16: note: property declared here
public var inCollisionPoint2:CGPoint {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:433:19: warning: main actor-isolated property 'animator' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toast.animator?.addBehavior(collision)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:765:16: note: property declared here
public var animator:UIDynamicAnimator? = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:401:22: note: add '@MainActor' to make instance method 'setupInGravity(_:callout:)' part of global actor 'MainActor'
fileprivate func setupInGravity(_ toast: CRToast, callout: [UIView]? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:440:22: warning: main actor-isolated property 'animationTypeIn' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
switch toast.animationTypeIn {
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:776:16: note: property declared here
public var animationTypeIn:CRToastAnimationType { return options.animationTypeIn }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:442:20: warning: call to main actor-isolated class method 'animate(withDuration:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
^
UIKit.UIView:8:21: note: calls to class method 'animate(withDuration:animations:completion:)' from outside of its actor context are implicitly asynchronous
open class func animate(withDuration duration: TimeInterval, animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:442:48: warning: main actor-isolated property 'animateInTimeInterval' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:780:16: note: property declared here
public var animateInTimeInterval:TimeInterval { return options.animateInTimeInterval }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:446:20: warning: call to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
^
UIKit.UIView:23:32: note: calls to class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:446:48: warning: main actor-isolated property 'animateInTimeInterval' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:780:16: note: property declared here
public var animateInTimeInterval:TimeInterval { return options.animateInTimeInterval }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:448:58: warning: main actor-isolated property 'springDamping' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
usingSpringWithDamping: toast.springDamping,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:784:16: note: property declared here
public var springDamping:CGFloat { return options.springDamping }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:449:57: warning: main actor-isolated property 'springInitialVelocity' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
initialSpringVelocity: toast.springInitialVelocity,
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift:785:16: note: property declared here
public var springInitialVelocity:CGFloat { return options.springInitialVelocity }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:439:10: note: add '@MainActor' to make instance method 'showNotification(_:inward:completion:)' part of global actor 'MainActor'
func showNotification(_ toast: CRToast, inward animation: @escaping CRToastAnimationStepBlock, completion: @escaping CRToastAnimationCompletionBlock) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:469:17: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let v = UIView(frame: bnds)
^
UIKit.UIView:4:12: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
public init(frame: CGRect)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:464:17: note: add '@MainActor' to make instance method 'strokeImage(with:)' part of global actor 'MainActor'
public func strokeImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:470:50: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(v.frame.size, false, UIScreen.main.scale)
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:464:17: note: add '@MainActor' to make instance method 'strokeImage(with:)' part of global actor 'MainActor'
public func strokeImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:470:83: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(v.frame.size, false, UIScreen.main.scale)
^
UIKit.UIScreen:12:14: note: property declared here
open var scale: CGFloat { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:464:17: note: add '@MainActor' to make instance method 'strokeImage(with:)' part of global actor 'MainActor'
public func strokeImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:470:78: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(v.frame.size, false, UIScreen.main.scale)
^
UIKit.UIScreen:6:20: note: class property declared here
open class var main: UIScreen { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:464:17: note: add '@MainActor' to make instance method 'strokeImage(with:)' part of global actor 'MainActor'
public func strokeImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:472:15: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
v.layer.render(in: ctx)
^
UIKit.UIView:10:25: note: property declared here
@MainActor open var layer: CALayer { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:464:17: note: add '@MainActor' to make instance method 'strokeImage(with:)' part of global actor 'MainActor'
public func strokeImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:492:17: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let v = UIView(frame: bnds)
^
UIKit.UIView:4:12: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
public init(frame: CGRect)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:487:17: note: add '@MainActor' to make instance method 'fillImage(with:)' part of global actor 'MainActor'
public func fillImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:493:50: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(v.frame.size, false, UIScreen.main.scale)
^
UIKit.UIView:2:14: note: property declared here
open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:487:17: note: add '@MainActor' to make instance method 'fillImage(with:)' part of global actor 'MainActor'
public func fillImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:493:83: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(v.frame.size, false, UIScreen.main.scale)
^
UIKit.UIScreen:12:14: note: property declared here
open var scale: CGFloat { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:487:17: note: add '@MainActor' to make instance method 'fillImage(with:)' part of global actor 'MainActor'
public func fillImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:493:78: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(v.frame.size, false, UIScreen.main.scale)
^
UIKit.UIScreen:6:20: note: class property declared here
open class var main: UIScreen { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:487:17: note: add '@MainActor' to make instance method 'fillImage(with:)' part of global actor 'MainActor'
public func fillImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:495:15: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
v.layer.render(in: ctx)
^
UIKit.UIView:10:25: note: property declared here
@MainActor open var layer: CALayer { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:487:17: note: add '@MainActor' to make instance method 'fillImage(with:)' part of global actor 'MainActor'
public func fillImage(with color: UIColor) -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:21:17: warning: sending 'options' risks causing data races; this is an error in the Swift 6 language mode
CRToast.setDefaultOptions(options)
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:21:17: note: sending task-isolated 'options' to main actor-isolated static method 'setDefaultOptions' risks causing data races between main actor-isolated and task-isolated uses
CRToast.setDefaultOptions(options)
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:442:20: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationStepBlock' (aka '() -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:442:20: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationCompletionBlock' (aka '(Bool) -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:446:20: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationStepBlock' (aka '() -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:446:20: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationCompletionBlock' (aka '(Bool) -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: toast.animateInTimeInterval,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:40:56: warning: sending 'with' risks causing data races; this is an error in the Swift 6 language mode
CRToastManager.manager.addNotification(CRToast.notification(with: with, appearance: appearance, completion: completion))
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:40:56: note: sending task-isolated 'with' to main actor-isolated static method 'notification(with:appearance:completion:)' risks causing data races between main actor-isolated and task-isolated uses
CRToastManager.manager.addNotification(CRToast.notification(with: with, appearance: appearance, completion: completion))
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:40:56: warning: sending 'appearance' risks causing data races; this is an error in the Swift 6 language mode
CRToastManager.manager.addNotification(CRToast.notification(with: with, appearance: appearance, completion: completion))
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:40:56: note: sending task-isolated 'appearance' to main actor-isolated static method 'notification(with:appearance:completion:)' risks causing data races between main actor-isolated and task-isolated uses
CRToastManager.manager.addNotification(CRToast.notification(with: with, appearance: appearance, completion: completion))
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:40:56: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
CRToastManager.manager.addNotification(CRToast.notification(with: with, appearance: appearance, completion: completion))
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:40:56: note: sending task-isolated 'completion' to main actor-isolated static method 'notification(with:appearance:completion:)' risks causing data races between main actor-isolated and task-isolated uses
CRToastManager.manager.addNotification(CRToast.notification(with: with, appearance: appearance, completion: completion))
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:130:28: warning: sending 'manager' risks causing data races; this is an error in the Swift 6 language mode
if manager.notification?.state == .displaying && manager.notification?.uuid.uuidString == notificationUUIDString {
~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:130:28: note: task-isolated 'manager' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
if manager.notification?.state == .displaying && manager.notification?.uuid.uuidString == notificationUUIDString {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:187:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:187:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:187:71: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:187:71: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.checkAnim(for: view, lastFrame: f, delay: delay, callback)
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:238:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.checkAnim(for: manager.notificationView, lastFrame: f, delay: 0.2) {
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:238:21: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.checkAnim(for: manager.notificationView, lastFrame: f, delay: 0.2) {
^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:238:41: warning: sending 'manager' risks causing data races; this is an error in the Swift 6 language mode
self.checkAnim(for: manager.notificationView, lastFrame: f, delay: 0.2) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:238:41: note: task-isolated 'manager' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.checkAnim(for: manager.notificationView, lastFrame: f, delay: 0.2) {
^~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:272:28: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationStepBlock' (aka '() -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:272:28: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationCompletionBlock' (aka '(Bool) -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:278:28: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationStepBlock' (aka '() -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift:278:28: warning: sending task-isolated value of type 'CRToastManager.CRToastAnimationCompletionBlock' (aka '(Bool) -> ()') with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(withDuration: notification?.animateOutTimeInterval ?? 0.5,
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 Compiling\ CRToastViewController.swift /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
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-unit-output-path /CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-unit-output-path /CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/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)
^
Foundation.NSFoundationVersionNumber:1:12: note: var declared here
public var NSFoundationVersionNumber: Double
^
/Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastViewController.swift:33:15: warning: 'willAnimateRotation(to:duration:)' was deprecated in iOS 8.0: Implement viewWillTransitionToSize:withTransitionCoordinator: instead
super.willAnimateRotation(to: toInterfaceOrientation, duration: duration)
^
SwiftCompile normal arm64 Compiling\ CRToastView.swift /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
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift -primary-file /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 -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-unit-output-path /CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastManager.swift -primary-file /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 -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-unit-output-path /CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ CRToastWindow.swift /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
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-unit-output-path /CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CRToastSwift/CRToastWindow.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CRToastSwift -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-unit-output-path /CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastWindow.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for CRToastSwift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriver\ Compilation\ Requirements 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-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CRToastSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CRToastSwift-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftmodule (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftdoc (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.abi.json (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftsourceinfo (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling CRToastWindow.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriverJobDiscovery normal arm64 Compiling CRToastViewController.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriverJobDiscovery normal arm64 Compiling CRToastView.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriverJobDiscovery normal arm64 Compiling CRToastConfig.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriverJobDiscovery normal arm64 Compiling CRToastManager.swift (in target 'CRToastSwift' from project 'CRToastSwift')
SwiftDriver\ Compilation 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-Swift-Compilation -- /Applications/Xcode-16.1.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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/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-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.o normal (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CRToastSwift.build/Debug-iphoneos/CRToastSwift.build/Objects-normal/arm64/CRToastSwift_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.o (in target 'CRToastSwift' from project 'CRToastSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CRToastSwift.o
** BUILD SUCCEEDED **
Build complete.
{
"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"
}
Done.