Build Information
Successful build of ScrollingContentViewController, reference main (484a16
), with Swift 6.0 for visionOS using Xcode 16.2 on 29 Nov 2024 23:49:33 UTC.
Swift 6 data race errors: 8
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ScrollingContentViewController -destination generic/platform=xrOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
y: contentOffset.y + initialAdjustedContentInset.top - self.scrollView.adjustedContentInset.top)
^
UIKit.UIScrollView:9:25: note: property declared here
@MainActor open var adjustedContentInset: UIEdgeInsets { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:380:29: warning: main actor-isolated property 'contentOffset' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
self.scrollView.contentOffset = self.constrainScrollViewContentOffset(contentOffset)
^
UIKit.UIScrollView:3:14: note: mutation of this property is only permitted within the actor
open var contentOffset: CGPoint { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:395:36: warning: main actor-isolated property 'constraints' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let constraints = hostView.constraints
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var constraints: [NSLayoutConstraint] { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:397:44: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let firstItem = (constraint.firstItem === fromItem) ? toItem : constraint.firstItem,
^
UIKit.NSLayoutConstraint:15:41: note: property declared here
@MainActor unowned(unsafe) open var firstItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:397:90: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let firstItem = (constraint.firstItem === fromItem) ? toItem : constraint.firstItem,
^
UIKit.NSLayoutConstraint:15:41: note: property declared here
@MainActor unowned(unsafe) open var firstItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:398:46: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let secondItem = (constraint.secondItem === fromItem) ? toItem : constraint.secondItem,
^
UIKit.NSLayoutConstraint:16:30: note: property declared here
unowned(unsafe) open var secondItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:398:93: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let secondItem = (constraint.secondItem === fromItem) ? toItem : constraint.secondItem,
^
UIKit.NSLayoutConstraint:16:30: note: property declared here
unowned(unsafe) open var secondItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:399:42: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
firstItem !== constraint.firstItem || secondItem !== constraint.secondItem {
^
UIKit.NSLayoutConstraint:15:41: note: property declared here
@MainActor unowned(unsafe) open var firstItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:399:81: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
firstItem !== constraint.firstItem || secondItem !== constraint.secondItem {
^
UIKit.NSLayoutConstraint:16:30: note: property declared here
unowned(unsafe) open var secondItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:400:26: warning: call to main actor-isolated instance method 'removeConstraint' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
hostView.removeConstraint(constraint)
^
UIKit.UIView:9:26: note: calls to instance method 'removeConstraint' from outside of its actor context are implicitly asynchronous
@MainActor open func removeConstraint(_ constraint: NSLayoutConstraint)
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:26: warning: call to main actor-isolated instance method 'addConstraint' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.UIView:5:26: note: calls to instance method 'addConstraint' from outside of its actor context are implicitly asynchronous
@MainActor open func addConstraint(_ constraint: NSLayoutConstraint)
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:40: warning: call to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:9:35: note: calls to initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor public convenience init(item view1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation, toItem view2: Any?, attribute attr2: NSLayoutConstraint.Attribute, multiplier: CGFloat, constant c: CGFloat)
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:98: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:17:14: note: property declared here
open var firstAttribute: NSLayoutConstraint.Attribute { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:136: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:23:14: note: property declared here
open var relation: NSLayoutConstraint.Relation { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:188: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:18:14: note: property declared here
open var secondAttribute: NSLayoutConstraint.Attribute { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:228: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:24:14: note: property declared here
open var multiplier: CGFloat { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:261: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:25:14: note: property declared here
open var constant: CGFloat { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:394:18: note: add '@MainActor' to make instance method 'redirectConstraints(of:fromItem:toItem:)' part of global actor 'MainActor'
private func redirectConstraints(of hostView: UIView, fromItem: AnyObject, toItem: AnyObject) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:413:36: warning: main actor-isolated property 'constraints' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
for constraint in fromView.constraints {
^
UIKit.UIView:3:25: note: property declared here
@MainActor open var constraints: [NSLayoutConstraint] { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:414:27: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if constraint.firstAttribute == .width || constraint.firstAttribute == .height {
^
UIKit.NSLayoutConstraint:17:14: note: property declared here
open var firstAttribute: NSLayoutConstraint.Attribute { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:414:66: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
if constraint.firstAttribute == .width || constraint.firstAttribute == .height {
^
UIKit.NSLayoutConstraint:17:14: note: property declared here
open var firstAttribute: NSLayoutConstraint.Attribute { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:415:48: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let firstItem = (constraint.firstItem === fromView) ? toView : constraint.firstItem {
^
UIKit.NSLayoutConstraint:15:41: note: property declared here
@MainActor unowned(unsafe) open var firstItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:415:94: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let firstItem = (constraint.firstItem === fromView) ? toView : constraint.firstItem {
^
UIKit.NSLayoutConstraint:15:41: note: property declared here
@MainActor unowned(unsafe) open var firstItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:416:50: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let secondItem = (constraint.secondItem === fromView) ? toView : constraint.secondItem
^
UIKit.NSLayoutConstraint:16:30: note: property declared here
unowned(unsafe) open var secondItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:416:97: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let secondItem = (constraint.secondItem === fromView) ? toView : constraint.secondItem
^
UIKit.NSLayoutConstraint:16:30: note: property declared here
unowned(unsafe) open var secondItem: AnyObject? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:32: warning: call to main actor-isolated instance method 'addConstraint' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.UIView:5:26: note: calls to instance method 'addConstraint' from outside of its actor context are implicitly asynchronous
@MainActor open func addConstraint(_ constraint: NSLayoutConstraint)
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:46: warning: call to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:9:35: note: calls to initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor public convenience init(item view1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation, toItem view2: Any?, attribute attr2: NSLayoutConstraint.Attribute, multiplier: CGFloat, constant c: CGFloat)
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:104: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:17:14: note: property declared here
open var firstAttribute: NSLayoutConstraint.Attribute { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:142: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:23:14: note: property declared here
open var relation: NSLayoutConstraint.Relation { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:194: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:18:14: note: property declared here
open var secondAttribute: NSLayoutConstraint.Attribute { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:234: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:24:14: note: property declared here
open var multiplier: CGFloat { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:267: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^
UIKit.NSLayoutConstraint:25:14: note: property declared here
open var constant: CGFloat { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:424:18: warning: call to main actor-isolated instance method 'removeConstraints' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
fromView.removeConstraints(constraintsToRemove)
^
UIKit.UIView:11:15: note: calls to instance method 'removeConstraints' from outside of its actor context are implicitly asynchronous
open func removeConstraints(_ constraints: [NSLayoutConstraint])
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:411:18: note: add '@MainActor' to make instance method 'moveWidthAndHeightConstraints(of:to:)' part of global actor 'MainActor'
private func moveWidthAndHeightConstraints(of fromView: UIView, to toView: UIView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:432:27: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
assert(scrollView.superview == nil)
^
UIKit.UIView:2:14: note: property declared here
open var superview: UIView? { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:439:35: warning: main actor-isolated property 'view' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
assert(hostViewController.view != nil, "The host view controller's root view is undefined")
^
UIKit.UIViewController:5:25: note: property declared here
@MainActor open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:441:33: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
hostViewController.view.addSubview(scrollView)
^
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/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:441:28: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
hostViewController.view.addSubview(scrollView)
^
UIKit.UIViewController:5:25: note: property declared here
@MainActor open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:443:20: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.translatesAutoresizingMaskIntoConstraints = true
^
UIKit.UIView:3:25: note: mutation of this property is only permitted within the actor
@MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:444:20: warning: main actor-isolated property 'autoresizingMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
^
UIKit.UIView:37:14: note: mutation of this property is only permitted within the actor
open var autoresizingMask: UIView.AutoresizingMask { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:445:20: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.frame = hostViewController.view.bounds
^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
@MainActor open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:445:52: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.frame = hostViewController.view.bounds
^
UIKit.UIView:3:14: note: property declared here
open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:445: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
scrollView.frame = hostViewController.view.bounds
^
UIKit.UIViewController:5:25: note: property declared here
@MainActor open var view: UIView! { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:431:18: note: add '@MainActor' to make instance method 'addScrollViewToHostViewControllerRootView()' part of global actor 'MainActor'
private func addScrollViewToHostViewControllerRootView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:462:73: warning: call to main actor-isolated instance method 'constraint(greaterThanOrEqualTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumWidthConstraint = contentView.widthAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.widthAnchor, multiplier: 1)
^
UIKit.NSLayoutDimension:15:26: note: calls to instance method 'constraint(greaterThanOrEqualTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(greaterThanOrEqualTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:462:61: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumWidthConstraint = contentView.widthAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.widthAnchor, multiplier: 1)
^
UIKit.UIView:15:25: note: property declared here
@MainActor open var widthAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:462:137: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumWidthConstraint = contentView.widthAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.widthAnchor, multiplier: 1)
^
UIKit.UILayoutGuide:12:25: note: property declared here
@MainActor open var widthAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:462:117: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumWidthConstraint = contentView.widthAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.widthAnchor, multiplier: 1)
^
UIKit.UIView:57:14: note: property declared here
open var safeAreaLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:465:75: warning: call to main actor-isolated instance method 'constraint(greaterThanOrEqualTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumHeightConstraint = contentView.heightAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.heightAnchor, multiplier: 1)
^
UIKit.NSLayoutDimension:15:26: note: calls to instance method 'constraint(greaterThanOrEqualTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(greaterThanOrEqualTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:465:62: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumHeightConstraint = contentView.heightAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.heightAnchor, multiplier: 1)
^
UIKit.UIView:17:14: note: property declared here
open var heightAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:465:139: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumHeightConstraint = contentView.heightAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.heightAnchor, multiplier: 1)
^
UIKit.UILayoutGuide:13:14: note: property declared here
open var heightAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:465:119: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumHeightConstraint = contentView.heightAnchor.constraint(greaterThanOrEqualTo: scrollView.safeAreaLayoutGuide.heightAnchor, multiplier: 1)
^
UIKit.UIView:57:14: note: property declared here
open var safeAreaLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:468:95: warning: call to main actor-isolated instance method 'constraint(greaterThanOrEqualToConstant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumHeightForPresentedKeyboardConstraint = contentView.heightAnchor.constraint(greaterThanOrEqualToConstant: 0)
^
UIKit.NSLayoutDimension:6:26: note: calls to instance method 'constraint(greaterThanOrEqualToConstant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(greaterThanOrEqualToConstant c: CGFloat) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:468:82: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentViewMinimumHeightForPresentedKeyboardConstraint = contentView.heightAnchor.constraint(greaterThanOrEqualToConstant: 0)
^
UIKit.UIView:17:14: note: property declared here
open var heightAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:471:43: warning: main actor-isolated property 'priority' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumWidthConstraint.priority = minimumSizeConstraintPriority
^
UIKit.NSLayoutConstraint:13:14: note: mutation of this property is only permitted within the actor
open var priority: UILayoutPriority { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:472:44: warning: main actor-isolated property 'priority' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightConstraint.priority = minimumSizeConstraintPriority
^
UIKit.NSLayoutConstraint:13:14: note: mutation of this property is only permitted within the actor
open var priority: UILayoutPriority { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:473:64: warning: main actor-isolated property 'priority' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightForPresentedKeyboardConstraint.priority = minimumSizeConstraintPriority
^
UIKit.NSLayoutConstraint:13:14: note: mutation of this property is only permitted within the actor
open var priority: UILayoutPriority { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:475:21: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentView.translatesAutoresizingMaskIntoConstraints = false
^
UIKit.UIView:3:25: note: mutation of this property is only permitted within the actor
@MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:478:54: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.leftAnchor.constraint(equalTo: contentView.leftAnchor),
^
UIKit.NSLayoutAnchor:3:26: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:478:43: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.leftAnchor.constraint(equalTo: contentView.leftAnchor),
^
UIKit.UILayoutGuide:8:14: note: property declared here
open var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:478:24: warning: main actor-isolated property 'contentLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.leftAnchor.constraint(equalTo: contentView.leftAnchor),
^
UIKit.UIScrollView:17:14: note: property declared here
open var contentLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:478:86: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.leftAnchor.constraint(equalTo: contentView.leftAnchor),
^
UIKit.UIView:7:14: note: property declared here
open var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:479:55: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.rightAnchor.constraint(equalTo: contentView.rightAnchor),
^
UIKit.NSLayoutAnchor:3:26: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:479:43: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.rightAnchor.constraint(equalTo: contentView.rightAnchor),
^
UIKit.UILayoutGuide:9:14: note: property declared here
open var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:479:24: warning: main actor-isolated property 'contentLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.rightAnchor.constraint(equalTo: contentView.rightAnchor),
^
UIKit.UIScrollView:17:14: note: property declared here
open var contentLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:479:87: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.rightAnchor.constraint(equalTo: contentView.rightAnchor),
^
UIKit.UIView:9:14: note: property declared here
open var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:480:53: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.topAnchor.constraint(equalTo: contentView.topAnchor),
^
UIKit.NSLayoutAnchor:3:26: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:480:43: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.topAnchor.constraint(equalTo: contentView.topAnchor),
^
UIKit.UILayoutGuide:10:14: note: property declared here
open var topAnchor: NSLayoutYAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:480:24: warning: main actor-isolated property 'contentLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.topAnchor.constraint(equalTo: contentView.topAnchor),
^
UIKit.UIScrollView:17:14: note: property declared here
open var contentLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:480:85: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.topAnchor.constraint(equalTo: contentView.topAnchor),
^
UIKit.UIView:11:14: note: property declared here
open var topAnchor: NSLayoutYAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:481:56: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
^
UIKit.NSLayoutAnchor:3:26: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:481:43: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
^
UIKit.UILayoutGuide:11:14: note: property declared here
open var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:481:24: warning: main actor-isolated property 'contentLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
^
UIKit.UIScrollView:17:14: note: property declared here
open var contentLayoutGuide: UILayoutGuide { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:481:88: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
scrollView.contentLayoutGuide.bottomAnchor.constraint(equalTo: contentView.bottomAnchor),
^
UIKit.UIView:13:14: note: property declared here
open var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:487:28: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
NSLayoutConstraint.activate(constraints)
^
UIKit.NSLayoutConstraint:32:21: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
open class func activate(_ constraints: [NSLayoutConstraint])
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:491:64: warning: main actor-isolated property 'isActive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightForPresentedKeyboardConstraint.isActive = false
^
UIKit.NSLayoutConstraint:27:14: note: mutation of this property is only permitted within the actor
open var isActive: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:450:18: note: add '@MainActor' to make instance method 'addScrollViewAndContentViewConstraints()' part of global actor 'MainActor'
private func addScrollViewAndContentViewConstraints() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:502:38: warning: main actor-isolated property 'contentSize' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let contentSize = scrollView.contentSize
^
UIKit.UIScrollView:4:14: note: property declared here
open var contentSize: CGSize { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:499:18: note: add '@MainActor' to make instance method 'constrainScrollViewContentOffset' part of global actor 'MainActor'
private func constrainScrollViewContentOffset(_ contentOffset: CGPoint) -> CGPoint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:504:47: warning: main actor-isolated property 'adjustedContentInset' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let adjustedContentInset = scrollView.adjustedContentInset
^
UIKit.UIScrollView:9:25: note: property declared here
@MainActor open var adjustedContentInset: UIEdgeInsets { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:499:18: note: add '@MainActor' to make instance method 'constrainScrollViewContentOffset' part of global actor 'MainActor'
private func constrainScrollViewContentOffset(_ contentOffset: CGPoint) -> CGPoint {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:528:27: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return scrollView.bounds.inset(by: scrollView.adjustedContentInset).size
^
UIKit.UIView:3:14: note: property declared here
open var bounds: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:527:18: note: add '@MainActor' to make instance method 'visibleContentSize(of:)' part of global actor 'MainActor'
private func visibleContentSize(of scrollView: UIScrollView) -> CGSize {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:528:55: warning: main actor-isolated property 'adjustedContentInset' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return scrollView.bounds.inset(by: scrollView.adjustedContentInset).size
^
UIKit.UIScrollView:9:25: note: property declared here
@MainActor open var adjustedContentInset: UIEdgeInsets { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:527:18: note: add '@MainActor' to make instance method 'visibleContentSize(of:)' part of global actor 'MainActor'
private func visibleContentSize(of scrollView: UIScrollView) -> CGSize {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:582:64: warning: main actor-isolated property 'constant' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightForPresentedKeyboardConstraint.constant = contentView.frame.height
^
UIKit.NSLayoutConstraint:25:14: note: mutation of this property is only permitted within the actor
open var constant: CGFloat { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:571:10: note: add '@MainActor' to make instance method 'additionalSafeAreaInsetsControllerWillUpdateAdditionalSafeAreaInsetsForPresentedKeyboard' part of global actor 'MainActor'
func additionalSafeAreaInsetsControllerWillUpdateAdditionalSafeAreaInsetsForPresentedKeyboard(_ additionalSafeAreaInsetsController: AdditionalSafeAreaInsetsController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:582:87: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightForPresentedKeyboardConstraint.constant = contentView.frame.height
^
UIKit.UIView:2:25: note: property declared here
@MainActor open var frame: CGRect { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:571:10: note: add '@MainActor' to make instance method 'additionalSafeAreaInsetsControllerWillUpdateAdditionalSafeAreaInsetsForPresentedKeyboard' part of global actor 'MainActor'
func additionalSafeAreaInsetsControllerWillUpdateAdditionalSafeAreaInsetsForPresentedKeyboard(_ additionalSafeAreaInsetsController: AdditionalSafeAreaInsetsController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:583:64: warning: main actor-isolated property 'isActive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightForPresentedKeyboardConstraint.isActive = true
^
UIKit.NSLayoutConstraint:27:14: note: mutation of this property is only permitted within the actor
open var isActive: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:571:10: note: add '@MainActor' to make instance method 'additionalSafeAreaInsetsControllerWillUpdateAdditionalSafeAreaInsetsForPresentedKeyboard' part of global actor 'MainActor'
func additionalSafeAreaInsetsControllerWillUpdateAdditionalSafeAreaInsetsForPresentedKeyboard(_ additionalSafeAreaInsetsController: AdditionalSafeAreaInsetsController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:587:65: warning: main actor-isolated property 'isActive' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentViewMinimumHeightForPresentedKeyboardConstraint?.isActive = false
^
UIKit.NSLayoutConstraint:27:14: note: mutation of this property is only permitted within the actor
open var isActive: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:586:10: note: add '@MainActor' to make instance method 'additionalSafeAreaInsetsControllerDidUpdateAdditionalSafeAreaInsetsForDismissedKeyboard' part of global actor 'MainActor'
func additionalSafeAreaInsetsControllerDidUpdateAdditionalSafeAreaInsetsForDismissedKeyboard(_ additionalSafeAreaInsetsController: AdditionalSafeAreaInsetsController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:40: warning: sending task-isolated value of type 'AnyObject' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:401:40: warning: sending task-isolated value of type 'AnyObject' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
hostView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:46: warning: sending value of non-Sendable type 'AnyObject' with later accesses from nonisolated context to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:46: note: access can happen concurrently
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:46: warning: sending value of non-Sendable type 'Any?' with later accesses from nonisolated context to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:418:46: note: access can happen concurrently
toView.addConstraint(NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute, relatedBy: constraint.relation, toItem: secondItem, attribute: constraint.secondAttribute, multiplier: constraint.multiplier, constant: constraint.constant))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:362:21: warning: sending task-isolated value of type '(any UIViewControllerTransitionCoordinatorContext) -> Void' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
coordinator.animate(alongsideTransition: { (context: UIViewControllerTransitionCoordinatorContext) in
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:362:21: warning: sending task-isolated value of type '(any UIViewControllerTransitionCoordinatorContext) -> Void' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
coordinator.animate(alongsideTransition: { (context: UIViewControllerTransitionCoordinatorContext) in
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift:362:21: warning: sending task-isolated value of type 'any UIViewControllerTransitionCoordinator' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
coordinator.animate(alongsideTransition: { (context: UIViewControllerTransitionCoordinatorContext) in
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 Compiling\ ScrollingContentScrollView.swift,\ ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.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/ScrollingContentViewController/ScrollingContentScrollView.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift:163:19: warning: main actor-isolated instance method 'scrollViewFilter(_:adjustViewForScrollRectEvent:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
internal func scrollViewFilter(_ scrollViewFilter: ScrollViewFilter, adjustViewForScrollRectEvent scrollRectEvent: ScrollRectEvent) {
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift:163:19: note: add 'nonisolated' to 'scrollViewFilter(_:adjustViewForScrollRectEvent:)' to make this instance method not isolated to the actor
internal func scrollViewFilter(_ scrollViewFilter: ScrollViewFilter, adjustViewForScrollRectEvent scrollRectEvent: ScrollRectEvent) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift:161:39: note: add '@preconcurrency' to the 'ScrollViewFilterScrollDelegate' conformance to defer isolation checking to run time
extension ScrollingContentScrollView: ScrollViewFilterScrollDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift:19:10: note: mark the protocol requirement 'scrollViewFilter(_:adjustViewForScrollRectEvent:)' 'async' to allow actor-isolated conformances
func scrollViewFilter(_ scrollViewFilter: ScrollViewFilter, adjustViewForScrollRectEvent scrollRectEvent: ScrollRectEvent)
^
async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentScrollView.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ KeyboardNotificationManager.swift,\ KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.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/ScrollingContentViewController/KeyboardNotificationManager.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift:23:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'KeyboardNotificationManager' may have shared mutable state; this is an error in the Swift 6 language mode
static let shared = KeyboardNotificationManager()
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift:21:16: note: class 'KeyboardNotificationManager' does not conform to the 'Sendable' protocol
internal class KeyboardNotificationManager: NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift:23:16: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
static let shared = KeyboardNotificationManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let shared = KeyboardNotificationManager()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationManager.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/KeyboardNotificationObserving.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for ScrollingContentViewController (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftCompile normal arm64 Compiling\ ScrollViewFilterKeyboardDelegate.swift,\ ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.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/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.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/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController/AdditionalSafeAreaInsetsController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/AdditionalSafeAreaInsetsControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/IsUnitTest.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardFrameEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardNotificationObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserver.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/KeyboardObserving.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollRectEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewBounceControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterKeyboardDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollViewFilterScrollDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/ScrollingContentViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ScrollingContentViewController/UIView+FirstResponder.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.dia -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.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 -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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ScrollingContentViewController -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.1 -target-sdk-name xros2.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterKeyboardDelegate.o -index-unit-output-path /ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollViewFilterScrollDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling ScrollViewFilterKeyboardDelegate.swift, ScrollViewFilterScrollDelegate.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriver\ Compilation\ Requirements ScrollingContentViewController normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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 ScrollingContentViewController -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController-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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController-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-xros/ScrollingContentViewController-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController-Swift.h (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/ScrollingContentViewController-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftmodule (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftdoc (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.abi.json (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftsourceinfo (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling KeyboardNotificationManager.swift, KeyboardNotificationObserving.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling IsUnitTest.swift, KeyboardFrameEvent.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling ScrollingContentViewManager.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling ScrollingContentScrollView.swift, ScrollingContentViewController.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling AdditionalSafeAreaInsetsController.swift, AdditionalSafeAreaInsetsControlling.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling ScrollRectEvent.swift, ScrollViewBounceController.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling KeyboardObserver.swift, KeyboardObserving.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+FirstResponder.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriverJobDiscovery normal arm64 Compiling ScrollViewBounceControlling.swift, ScrollViewFilter.swift (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
SwiftDriver\ Compilation ScrollingContentViewController normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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 ScrollingContentViewController -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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/XROS.platform/Developer/SDKs/XROS2.1.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.1-22N573-02bafd7f43846583f0400bd788fa10b7.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController-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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.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/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController-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-xros/ScrollingContentViewController.o normal (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
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-xros1.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ScrollingContentViewController.build/Debug-xros/ScrollingContentViewController.build/Objects-normal/arm64/ScrollingContentViewController_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.o (in target 'ScrollingContentViewController' from project 'ScrollingContentViewController')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/ScrollingContentViewController.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ScrollingContentViewController",
"name" : "ScrollingContentViewController",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "ScrollingContentViewController",
"targets" : [
"ScrollingContentViewController"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ScrollingContentViewController",
"module_type" : "SwiftTarget",
"name" : "ScrollingContentViewController",
"path" : "Sources/ScrollingContentViewController",
"product_memberships" : [
"ScrollingContentViewController"
],
"sources" : [
"AdditionalSafeAreaInsetsController.swift",
"AdditionalSafeAreaInsetsControlling.swift",
"IsUnitTest.swift",
"KeyboardFrameEvent.swift",
"KeyboardNotificationManager.swift",
"KeyboardNotificationObserving.swift",
"KeyboardObserver.swift",
"KeyboardObserving.swift",
"ScrollRectEvent.swift",
"ScrollViewBounceController.swift",
"ScrollViewBounceControlling.swift",
"ScrollViewFilter.swift",
"ScrollViewFilterKeyboardDelegate.swift",
"ScrollViewFilterScrollDelegate.swift",
"ScrollingContentScrollView.swift",
"ScrollingContentViewController.swift",
"ScrollingContentViewManager.swift",
"UIView+FirstResponder.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.