Build Information
Successful build of FloatingPanel, reference 3.2.2 (7efcc7), with Swift 6.1 for iOS using Xcode 16.3 on 14 Feb 2026 12:53:07 UTC.
Swift 6 data race errors: 25
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme FloatingPanel -destination generic/platform=iOS 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 InferSendableFromCapturesBuild Log
func activateLayout(for state: FloatingPanelState, forceLayout: Bool = false) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:783: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(fixedConstraints)
^
UIKit.NSLayoutConstraint.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
@MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:767:10: note: add '@MainActor' to make instance method 'activateLayout(for:forceLayout:)' part of global actor 'MainActor'
func activateLayout(for state: FloatingPanelState, forceLayout: Bool = false) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:785:15: warning: main actor-isolated property 'contentMode' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if vc.contentMode == .fitToBounds {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:271:16: note: property declared here
public var contentMode: ContentMode = .static {
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:767:10: note: add '@MainActor' to make instance method 'activateLayout(for:forceLayout:)' part of global actor 'MainActor'
func activateLayout(for state: FloatingPanelState, forceLayout: Bool = false) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:786:32: warning: call to main actor-isolated static method 'activate(constraint:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
NSLayoutConstraint.activate(constraint: self.fitToBoundsConstraint)
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:133:17: note: calls to static method 'activate(constraint:)' from outside of its actor context are implicitly asynchronous
static func activate(constraint: NSLayoutConstraint?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:767:10: note: add '@MainActor' to make instance method 'activateLayout(for:forceLayout:)' part of global actor 'MainActor'
func activateLayout(for state: FloatingPanelState, forceLayout: Bool = false) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:797:32: 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(offConstraints)
^
UIKit.NSLayoutConstraint.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
@MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:767:10: note: add '@MainActor' to make instance method 'activateLayout(for:forceLayout:)' part of global actor 'MainActor'
func activateLayout(for state: FloatingPanelState, forceLayout: Bool = false) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:800:36: 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.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
@MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:767:10: note: add '@MainActor' to make instance method 'activateLayout(for:forceLayout:)' part of global actor 'MainActor'
func activateLayout(for state: FloatingPanelState, forceLayout: Bool = false) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:809:27: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard surfaceView.window != nil else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *window;
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:807:18: note: add '@MainActor' to make instance method 'layoutSurfaceIfNeeded()' part of global actor 'MainActor'
private func layoutSurfaceIfNeeded() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:811:32: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
surfaceView.superview?.layoutIfNeeded()
^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:807:18: note: add '@MainActor' to make instance method 'layoutSurfaceIfNeeded()' part of global actor 'MainActor'
private func layoutSurfaceIfNeeded() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:811:21: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
surfaceView.superview?.layoutIfNeeded()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:221:55: note: property declared here
@property(nullable, nonatomic,readonly) UIView *superview;
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:807:18: note: add '@MainActor' to make instance method 'layoutSurfaceIfNeeded()' part of global actor 'MainActor'
private func layoutSurfaceIfNeeded() {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:58:71: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.bottomAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:58:59: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.bottomAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:60:71: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.rightAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:60:59: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.rightAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:62:71: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.topAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:62:59: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.topAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:64:71: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.leftAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:64:59: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return layoutConstraints(layoutGuide, for: vc.surfaceView.leftAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:54:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:72:36: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [edgeAnchor.constraint(equalTo: layoutGuide.topAnchor, constant: inset)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:68:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutYAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:74:54: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let offsetAnchor = layoutGuide.topAnchor.anchorWithOffset(to: edgeAnchor)
^
UIKit.NSLayoutYAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutYAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:68:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutYAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:75:34: warning: call to main actor-isolated instance method 'constraint(equalTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [offsetAnchor.constraint(equalTo:layoutGuide.heightAnchor, multiplier: inset)]
^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:68:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutYAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:78:50: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [layoutGuide.bottomAnchor.constraint(equalTo: edgeAnchor, constant: inset)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:68:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutYAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:80:43: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let offsetAnchor = edgeAnchor.anchorWithOffset(to: layoutGuide.bottomAnchor)
^
UIKit.NSLayoutYAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutYAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:68:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutYAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:81:34: warning: call to main actor-isolated instance method 'constraint(equalTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [offsetAnchor.constraint(equalTo: layoutGuide.heightAnchor, multiplier: inset)]
^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:68:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutYAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:91:36: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [edgeAnchor.constraint(equalTo: layoutGuide.leftAnchor, constant: inset)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:87:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutXAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:93:55: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let offsetAnchor = layoutGuide.leftAnchor.anchorWithOffset(to: edgeAnchor)
^
UIKit.NSLayoutXAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutXAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:87:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutXAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:94:34: warning: call to main actor-isolated instance method 'constraint(equalTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [offsetAnchor.constraint(equalTo: layoutGuide.widthAnchor, multiplier: inset)]
^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:87:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutXAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:97:49: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [layoutGuide.rightAnchor.constraint(equalTo: edgeAnchor, constant: inset)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:87:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutXAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:99:43: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let offsetAnchor = edgeAnchor.anchorWithOffset(to: layoutGuide.rightAnchor)
^
UIKit.NSLayoutXAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutXAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:87:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutXAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:100:34: warning: call to main actor-isolated instance method 'constraint(equalTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [offsetAnchor.constraint(equalTo: layoutGuide.widthAnchor, multiplier: inset)]
^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:87:18: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
private func layoutConstraints(_ layoutGuide: LayoutGuideProvider, for edgeAnchor: NSLayoutXAxisAnchor) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:146:76: warning: main actor-isolated property 'intrinsicContentSize' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let surfaceIntrinsicLength = position.mainDimension(vc.surfaceView.intrinsicContentSize)
^
/Users/admin/builder/spi-builder-workspace/Sources/SurfaceView.swift:343:25: note: property declared here
public override var intrinsicContentSize: CGSize {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:146:64: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let surfaceIntrinsicLength = position.mainDimension(vc.surfaceView.intrinsicContentSize)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:151:49: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.bottomAnchor.constraint(equalTo: layoutGuide.topAnchor, constant: constant)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:151:36: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.bottomAnchor.constraint(equalTo: layoutGuide.topAnchor, constant: constant)]
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:151:24: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.bottomAnchor.constraint(equalTo: layoutGuide.topAnchor, constant: constant)]
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:153:48: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.rightAnchor.constraint(equalTo: layoutGuide.leftAnchor, constant: constant)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:153:36: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.rightAnchor.constraint(equalTo: layoutGuide.leftAnchor, constant: constant)]
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:153:24: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.rightAnchor.constraint(equalTo: layoutGuide.leftAnchor, constant: constant)]
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:155:46: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.topAnchor.constraint(equalTo: layoutGuide.bottomAnchor, constant: -constant)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:155:36: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.topAnchor.constraint(equalTo: layoutGuide.bottomAnchor, constant: -constant)]
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:155:24: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.topAnchor.constraint(equalTo: layoutGuide.bottomAnchor, constant: -constant)]
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:157:47: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.leftAnchor.constraint(equalTo: layoutGuide.rightAnchor, constant: -constant)]
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:157:36: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.leftAnchor.constraint(equalTo: layoutGuide.rightAnchor, constant: -constant)]
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:157:24: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return [vc.surfaceView.leftAnchor.constraint(equalTo: layoutGuide.rightAnchor, constant: -constant)]
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:145:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:234:50: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = layoutGuide.topAnchor.anchorWithOffset(to: vc.surfaceView.bottomAnchor)
^
UIKit.NSLayoutYAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutYAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:234:86: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = layoutGuide.topAnchor.anchorWithOffset(to: vc.surfaceView.bottomAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:234:74: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = layoutGuide.topAnchor.anchorWithOffset(to: vc.surfaceView.bottomAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:236:51: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = layoutGuide.leftAnchor.anchorWithOffset(to: vc.surfaceView.rightAnchor)
^
UIKit.NSLayoutXAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutXAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:236: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
offsetAnchor = layoutGuide.leftAnchor.anchorWithOffset(to: vc.surfaceView.rightAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:236:75: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = layoutGuide.leftAnchor.anchorWithOffset(to: vc.surfaceView.rightAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:238:53: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = vc.surfaceView.topAnchor.anchorWithOffset(to: layoutGuide.bottomAnchor)
^
UIKit.NSLayoutYAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutYAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:238: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
offsetAnchor = vc.surfaceView.topAnchor.anchorWithOffset(to: layoutGuide.bottomAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:238:31: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = vc.surfaceView.topAnchor.anchorWithOffset(to: layoutGuide.bottomAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:240:54: warning: call to main actor-isolated instance method 'anchorWithOffset(to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = vc.surfaceView.leftAnchor.anchorWithOffset(to: layoutGuide.rightAnchor)
^
UIKit.NSLayoutXAxisAnchor.anchorWithOffset:3:24: note: calls to instance method 'anchorWithOffset(to:)' from outside of its actor context are implicitly asynchronous
@MainActor open func anchorWithOffset(to otherAnchor: NSLayoutXAxisAnchor) -> NSLayoutDimension}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:240: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
offsetAnchor = vc.surfaceView.leftAnchor.anchorWithOffset(to: layoutGuide.rightAnchor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:240:31: warning: main actor-isolated property 'surfaceView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
offsetAnchor = vc.surfaceView.leftAnchor.anchorWithOffset(to: layoutGuide.rightAnchor)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:173:16: note: property declared here
public var surfaceView: SurfaceView {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:243:45: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
offsetConstraint = offsetAnchor.constraint(equalTo: position.mainDimensionAnchor(contentLayoutGuide), constant: -offset)
^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:245:45: warning: call to main actor-isolated instance method 'constraint(equalTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
offsetConstraint = offsetAnchor.constraint(equalTo: position.mainDimensionAnchor(contentLayoutGuide), multiplier: (1 - offset))
^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint}
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutAnchoring.swift:226:10: note: add '@MainActor' to make instance method 'layoutConstraints(_:for:)' part of global actor 'MainActor'
func layoutConstraints(_ vc: FloatingPanelController, for position: FloatingPanelPosition) -> [NSLayoutConstraint] {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:40:28: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return vc.view.safeAreaLayoutGuide
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:288:53: note: property declared here
@property(nonatomic,readonly,strong) UILayoutGuide *safeAreaLayoutGuide API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:37:10: note: add '@MainActor' to make instance method 'layoutGuide(vc:)' part of global actor 'MainActor'
func layoutGuide(vc: UIViewController) -> LayoutGuideProvider {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:40:23: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return vc.view.safeAreaLayoutGuide
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:37:10: note: add '@MainActor' to make instance method 'layoutGuide(vc:)' part of global actor 'MainActor'
func layoutGuide(vc: UIViewController) -> LayoutGuideProvider {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:42:23: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return vc.view
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:37:10: note: add '@MainActor' to make instance method 'layoutGuide(vc:)' part of global actor 'MainActor'
func layoutGuide(vc: UIViewController) -> LayoutGuideProvider {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:58:24: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return fpc.view
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:55:10: note: add '@MainActor' to make instance method 'layoutGuide' part of global actor 'MainActor'
func layoutGuide(_ fpc: FloatingPanelController) -> LayoutGuideProvider? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:60:29: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return fpc.view.safeAreaLayoutGuide
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:288:53: note: property declared here
@property(nonatomic,readonly,strong) UILayoutGuide *safeAreaLayoutGuide API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:55:10: note: add '@MainActor' to make instance method 'layoutGuide' part of global actor 'MainActor'
func layoutGuide(_ fpc: FloatingPanelController) -> LayoutGuideProvider? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:60:24: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return fpc.view.safeAreaLayoutGuide
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:55:10: note: add '@MainActor' to make instance method 'layoutGuide' part of global actor 'MainActor'
func layoutGuide(_ fpc: FloatingPanelController) -> LayoutGuideProvider? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:68:29: 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 fpc.view.bounds
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:65:10: note: add '@MainActor' to make instance method 'maxBounds' part of global actor 'MainActor'
func maxBounds(_ fpc: FloatingPanelController) -> CGRect? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:68:24: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return fpc.view.bounds
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:65:10: note: add '@MainActor' to make instance method 'maxBounds' part of global actor 'MainActor'
func maxBounds(_ fpc: FloatingPanelController) -> CGRect? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:70:29: 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 fpc.view.bounds.inset(by: fpc.fp_safeAreaInsets)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:65:10: note: add '@MainActor' to make instance method 'maxBounds' part of global actor 'MainActor'
func maxBounds(_ fpc: FloatingPanelController) -> CGRect? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:70:24: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return fpc.view.bounds.inset(by: fpc.fp_safeAreaInsets)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:65:10: note: add '@MainActor' to make instance method 'maxBounds' part of global actor 'MainActor'
func maxBounds(_ fpc: FloatingPanelController) -> CGRect? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:70:50: warning: main actor-isolated property 'fp_safeAreaInsets' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return fpc.view.bounds.inset(by: fpc.fp_safeAreaInsets)
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:54:15: note: property declared here
@objc var fp_safeAreaInsets: UIEdgeInsets {
^
/Users/admin/builder/spi-builder-workspace/Sources/LayoutProperties.swift:65:10: note: add '@MainActor' to make instance method 'maxBounds' part of global actor 'MainActor'
func maxBounds(_ fpc: FloatingPanelController) -> CGRect? {
^
@MainActor
SwiftCompile normal arm64 Compiling\ BackdropView.swift,\ Behavior.swift,\ Controller.swift /Users/admin/builder/spi-builder-workspace/Sources/BackdropView.swift /Users/admin/builder/spi-builder-workspace/Sources/Behavior.swift /Users/admin/builder/spi-builder-workspace/Sources/Controller.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BackdropView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Behavior.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Controller.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: warning: var 'originalDismissImp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var originalDismissImp: IMP?
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: note: convert 'originalDismissImp' to a 'let' constant to make 'Sendable' shared state immutable
private var originalDismissImp: IMP?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: note: add '@MainActor' to make var 'originalDismissImp' part of global actor 'MainActor'
private var originalDismissImp: IMP?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var originalDismissImp: IMP?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:500:65: warning: main actor-isolated property 'safeAreaInsets' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
guard let self = self, change.oldValue != self.view.safeAreaInsets else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:275:45: note: property declared here
@property (nonatomic,readonly) UIEdgeInsets safeAreaInsets API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:500:60: warning: main actor-isolated property 'view' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
guard let self = self, change.oldValue != self.view.safeAreaInsets else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:505:29: warning: main actor-isolated property 'bounds' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
guard self.view.bounds.height > 0 && self.view.bounds.width > 0 else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:505:24: warning: main actor-isolated property 'view' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
guard self.view.bounds.height > 0 && self.view.bounds.width > 0 else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:505:60: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
guard self.view.bounds.height > 0 && self.view.bounds.width > 0 else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:505:55: warning: main actor-isolated property 'view' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
guard self.view.bounds.height > 0 && self.view.bounds.width > 0 else { return }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:507:18: warning: call to main actor-isolated instance method 'update(safeAreaInsets:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.update(safeAreaInsets: self.view.safeAreaInsets)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:423:18: note: calls to instance method 'update(safeAreaInsets:)' from outside of its actor context are implicitly asynchronous
private func update(safeAreaInsets: UIEdgeInsets) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:423:18: note: main actor isolation inferred from inheritance from class 'UIViewController'
private func update(safeAreaInsets: UIEdgeInsets) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:507:51: warning: main actor-isolated property 'safeAreaInsets' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
self.update(safeAreaInsets: self.view.safeAreaInsets)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:275:45: note: property declared here
@property (nonatomic,readonly) UIEdgeInsets safeAreaInsets API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:507:46: warning: main actor-isolated property 'view' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
self.update(safeAreaInsets: self.view.safeAreaInsets)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
SwiftCompile normal arm64 Compiling\ Core.swift,\ Extensions.swift,\ GrabberView.swift /Users/admin/builder/spi-builder-workspace/Sources/Core.swift /Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/GrabberView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1347:41: warning: main actor-isolated property 'delegateProxy' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return panGestureRecognizer.delegateProxy?.responds(to: aSelector) == true
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1332:21: note: property declared here
public weak var delegateProxy: UIGestureRecognizerDelegate? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1348:37: warning: main actor-isolated property 'delegateOrigin' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
|| panGestureRecognizer.delegateOrigin.responds(to: aSelector)
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1324:16: note: property declared here
public var delegateOrigin: UIGestureRecognizerDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1352:37: warning: main actor-isolated property 'delegateProxy' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if panGestureRecognizer.delegateProxy?.responds(to: aSelector) == true {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1332:21: note: property declared here
public weak var delegateProxy: UIGestureRecognizerDelegate? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1353:45: warning: main actor-isolated property 'delegateProxy' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return panGestureRecognizer.delegateProxy
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1332:21: note: property declared here
public weak var delegateProxy: UIGestureRecognizerDelegate? {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1355:37: warning: main actor-isolated property 'delegateOrigin' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if panGestureRecognizer.delegateOrigin.responds(to: aSelector) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1324:16: note: property declared here
public var delegateOrigin: UIGestureRecognizerDelegate {
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1356:45: warning: main actor-isolated property 'delegateOrigin' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return panGestureRecognizer.delegateOrigin
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1324:16: note: property declared here
public var delegateOrigin: UIGestureRecognizerDelegate {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:50:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:47:26: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UILayoutGuide: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:48:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:51:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:49:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:52:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:53:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:48:19: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UIView: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:132:26: warning: cannot access property 'moveAnimator' with a non-sendable type 'NumericSpringAnimator?' from nonisolated deinit; this is an error in the Swift 6 language mode
self.moveAnimator?.stopAnimation(false)
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:1365:15: note: class 'NumericSpringAnimator' does not conform to the 'Sendable' protocol
private class NumericSpringAnimator: NSObject {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:50:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:47:26: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UILayoutGuide: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:48:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:51:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:49:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:52:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:53:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:48:19: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UIView: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/GrabberView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:50:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:47:26: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UILayoutGuide: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:48:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:51:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:49:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:52:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:53:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:48:19: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UIView: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
SwiftCompile normal arm64 Compiling\ View+floatingPanelSurface.swift,\ Transitioning.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift /Users/admin/builder/spi-builder-workspace/Sources/Transitioning.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue = SurfaceAppearance()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue = SurfaceAppearance()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue = SurfaceAppearance()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue = SurfaceAppearance()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: CGFloat = 6.0
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: CGFloat = 6.0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: CGFloat = 6.0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: CGFloat = 6.0
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Transitioning.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ State.swift,\ SurfaceView.swift,\ FloatingPanelCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/State.swift /Users/admin/builder/spi-builder-workspace/Sources/SurfaceView.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/State.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:41:35: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Full) public static let full: FloatingPanelState = FloatingPanelState(rawValue: "full", order: 1000)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:41:35: note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
@objc(Full) public static let full: FloatingPanelState = FloatingPanelState(rawValue: "full", order: 1000)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:41:35: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Full) public static let full: FloatingPanelState = FloatingPanelState(rawValue: "full", order: 1000)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:43:35: warning: static property 'half' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Half) public static let half: FloatingPanelState = FloatingPanelState(rawValue: "half", order: 500)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:43:35: note: add '@MainActor' to make static property 'half' part of global actor 'MainActor'
@objc(Half) public static let half: FloatingPanelState = FloatingPanelState(rawValue: "half", order: 500)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:43:35: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Half) public static let half: FloatingPanelState = FloatingPanelState(rawValue: "half", order: 500)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:45:34: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Tip) public static let tip: FloatingPanelState = FloatingPanelState(rawValue: "tip", order: 100)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:45:34: note: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
@objc(Tip) public static let tip: FloatingPanelState = FloatingPanelState(rawValue: "tip", order: 100)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:45:34: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Tip) public static let tip: FloatingPanelState = FloatingPanelState(rawValue: "tip", order: 100)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:47:37: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Hidden) public static let hidden: FloatingPanelState = FloatingPanelState(rawValue: "hidden", order: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:47:37: note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
@objc(Hidden) public static let hidden: FloatingPanelState = FloatingPanelState(rawValue: "hidden", order: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:47:37: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Hidden) public static let hidden: FloatingPanelState = FloatingPanelState(rawValue: "hidden", order: 0)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SurfaceView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:100:40: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.proxy = .init(controller: FloatingPanelController())
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:114:39: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
contentHostingController.view.backgroundColor = .clear
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:109:17: note: add '@MainActor' to make instance method 'setupFloatingPanel(mainHostingController:contentHostingController:)' part of global actor 'MainActor'
public func setupFloatingPanel<Main: View, Content: View>(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:114:34: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
contentHostingController.view.backgroundColor = .clear
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:109:17: note: add '@MainActor' to make instance method 'setupFloatingPanel(mainHostingController:contentHostingController:)' part of global actor 'MainActor'
public func setupFloatingPanel<Main: View, Content: View>(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:115:20: warning: call to main actor-isolated instance method 'set(contentViewController:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller.set(contentViewController: contentHostingController)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:618:17: note: calls to instance method 'set(contentViewController:)' from outside of its actor context are implicitly asynchronous
public func set(contentViewController: UIViewController?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:618:17: note: main actor isolation inferred from inheritance from class 'UIViewController'
public func set(contentViewController: UIViewController?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:109:17: note: add '@MainActor' to make instance method 'setupFloatingPanel(mainHostingController:contentHostingController:)' part of global actor 'MainActor'
public func setupFloatingPanel<Main: View, Content: View>(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:118:20: warning: call to main actor-isolated instance method 'addPanel(toParent:at:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller.addPanel(toParent: mainHostingController, animated: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:530:17: note: calls to instance method 'addPanel(toParent:at:animated:completion:)' from outside of its actor context are implicitly asynchronous
public func addPanel(toParent parent: UIViewController, at viewIndex: Int = -1, animated: Bool = false, completion: (() -> Void)? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:530:17: note: main actor isolation inferred from inheritance from class 'UIViewController'
public func addPanel(toParent parent: UIViewController, at viewIndex: Int = -1, animated: Bool = false, completion: (() -> Void)? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelCoordinator.swift:109:17: note: add '@MainActor' to make instance method 'setupFloatingPanel(mainHostingController:contentHostingController:)' part of global actor 'MainActor'
public func setupFloatingPanel<Main: View, Content: View>(
^
@MainActor
SwiftCompile normal arm64 Compiling\ FloatingPanelProxy.swift,\ FloatingPanelView.swift,\ SurfaceAppearance+.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/SurfaceAppearance+.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:81:20: warning: call to main actor-isolated instance method 'moveForSwiftUI(to:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller.moveForSwiftUI(to: floatingPanelState, animated: animated, completion: completion)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:608:10: note: calls to instance method 'moveForSwiftUI(to:animated:completion:)' from outside of its actor context are implicitly asynchronous
func moveForSwiftUI(to: FloatingPanelState, animated: Bool, completion: (() -> Void)? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:608:10: note: main actor isolation inferred from inheritance from class 'UIViewController'
func moveForSwiftUI(to: FloatingPanelState, animated: Bool, completion: (() -> Void)? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:74:17: note: add '@MainActor' to make instance method 'move(to:animated:completion:)' part of global actor 'MainActor'
public func move(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:95:20: warning: call to main actor-isolated instance method 'track(scrollView:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller.track(scrollView: scrollView)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:644:17: note: calls to instance method 'track(scrollView:)' from outside of its actor context are implicitly asynchronous
public func track(scrollView: UIScrollView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:644:17: note: main actor isolation inferred from inheritance from class 'UIViewController'
public func track(scrollView: UIScrollView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:94:17: note: add '@MainActor' to make instance method 'track(scrollView:)' part of global actor 'MainActor'
public func track(scrollView: UIScrollView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:81:20: warning: sending 'floatingPanelState' risks causing data races; this is an error in the Swift 6 language mode
controller.moveForSwiftUI(to: floatingPanelState, animated: animated, completion: completion)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:81:20: note: sending task-isolated 'floatingPanelState' to main actor-isolated instance method 'moveForSwiftUI(to:animated:completion:)' risks causing data races between main actor-isolated and task-isolated uses
controller.moveForSwiftUI(to: floatingPanelState, animated: animated, completion: completion)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:81:20: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
controller.moveForSwiftUI(to: floatingPanelState, animated: animated, completion: completion)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelProxy.swift:81:20: note: sending task-isolated 'completion' to main actor-isolated instance method 'moveForSwiftUI(to:animated:completion:)' risks causing data races between main actor-isolated and task-isolated uses
controller.moveForSwiftUI(to: floatingPanelState, animated: animated, completion: completion)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:210:27: warning: main actor-isolated property 'rootView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
hostingController.rootView = newContent
^
SwiftUI.UIHostingController.rootView:2:39: note: mutation of this property is only permitted within the actor
@MainActor @preconcurrency public var rootView: Content { get set }}
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:204:10: note: add '@MainActor' to make instance method 'updateContent' part of global actor 'MainActor'
func updateContent<Content: View>(_ newContent: Content) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:229:49: warning: main actor-isolated property 'layout' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let shouldInvalidateLayout = controller.layout !== layout
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:213:16: note: property declared here
public var layout: FloatingPanelLayout {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:225:10: note: add '@MainActor' to make instance method 'update(layout:behavior:)' part of global actor 'MainActor'
func update(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:232:24: warning: main actor-isolated property 'layout' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
controller.layout = layout
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:213:16: note: mutation of this property is only permitted within the actor
public var layout: FloatingPanelLayout {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:225:10: note: add '@MainActor' to make instance method 'update(layout:behavior:)' part of global actor 'MainActor'
func update(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:234:24: warning: main actor-isolated property 'layout' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
controller.layout = FloatingPanelBottomLayout()
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:213:16: note: mutation of this property is only permitted within the actor
public var layout: FloatingPanelLayout {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:225:10: note: add '@MainActor' to make instance method 'update(layout:behavior:)' part of global actor 'MainActor'
func update(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:238:24: warning: call to main actor-isolated instance method 'invalidateLayout()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller.invalidateLayout()
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:697:17: note: calls to instance method 'invalidateLayout()' from outside of its actor context are implicitly asynchronous
public func invalidateLayout() {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:697:17: note: main actor isolation inferred from inheritance from class 'UIViewController'
public func invalidateLayout() {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:225:10: note: add '@MainActor' to make instance method 'update(layout:behavior:)' part of global actor 'MainActor'
func update(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:242:24: warning: main actor-isolated property 'behavior' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
controller.behavior = behavior
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:226:16: note: mutation of this property is only permitted within the actor
public var behavior: FloatingPanelBehavior {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:225:10: note: add '@MainActor' to make instance method 'update(layout:behavior:)' part of global actor 'MainActor'
func update(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:244:24: warning: main actor-isolated property 'behavior' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
controller.behavior = FloatingPanelDefaultBehavior()
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:226:16: note: mutation of this property is only permitted within the actor
public var behavior: FloatingPanelBehavior {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:225:10: note: add '@MainActor' to make instance method 'update(layout:behavior:)' part of global actor 'MainActor'
func update(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:259:24: warning: main actor-isolated property 'state' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
controller.state != state
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:198:16: note: property declared here
public var state: FloatingPanelState {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:254:10: note: add '@MainActor' to make instance method 'update(state:)' part of global actor 'MainActor'
func update(state: FloatingPanelState?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:261:20: warning: call to main actor-isolated instance method 'move(to:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller.move(to: state, animated: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:599:17: note: calls to instance method 'move(to:animated:completion:)' from outside of its actor context are implicitly asynchronous
public func move(to: FloatingPanelState, animated: Bool, completion: (() -> Void)? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:599:17: note: main actor isolation inferred from inheritance from class 'UIViewController'
public func move(to: FloatingPanelState, animated: Bool, completion: (() -> Void)? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:254:10: note: add '@MainActor' to make instance method 'update(state:)' part of global actor 'MainActor'
func update(state: FloatingPanelState?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:266:34: warning: main actor-isolated property 'statePublisher' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
controller.floatingPanel.statePublisher?
^
/Users/admin/builder/spi-builder-workspace/Sources/Core.swift:57:22: note: property declared here
private(set) var statePublisher: CurrentValueSubject<FloatingPanelState, Never>? {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:265:10: note: add '@MainActor' to make instance method 'observeStateChanges()' part of global actor 'MainActor'
func observeStateChanges() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:266:20: warning: main actor-isolated property 'floatingPanel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
controller.floatingPanel.statePublisher?
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:280:22: note: property declared here
private(set) var floatingPanel: Core!
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:265:10: note: add '@MainActor' to make instance method 'observeStateChanges()' part of global actor 'MainActor'
func observeStateChanges() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:286:39: warning: call to main actor-isolated instance method 'makeDefaultAnimator(initialVelocity:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let animator = controller.makeDefaultAnimator()
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:757:17: note: calls to instance method 'makeDefaultAnimator(initialVelocity:)' from outside of its actor context are implicitly asynchronous
public func makeDefaultAnimator(initialVelocity: CGVector = .zero) -> UIViewPropertyAnimator {
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:757:17: note: main actor isolation inferred from inheritance from class 'UIViewController'
public func makeDefaultAnimator(initialVelocity: CGVector = .zero) -> UIViewPropertyAnimator {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:285:14: note: add '@MainActor' to make local function 'animateUsingDefaultAnimator(changes:)' part of global actor 'MainActor'
func animateUsingDefaultAnimator(changes: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:287:22: warning: call to main actor-isolated instance method 'addAnimations' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
animator.addAnimations(changes)
^
UIKit.UIViewPropertyAnimator.addAnimations:2:22: note: calls to instance method 'addAnimations' from outside of its actor context are implicitly asynchronous
@MainActor open func addAnimations(_ animation: @escaping () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:285:14: note: add '@MainActor' to make local function 'animateUsingDefaultAnimator(changes:)' part of global actor 'MainActor'
func animateUsingDefaultAnimator(changes: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:288:22: warning: call to main actor-isolated instance method 'startAnimation()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
animator.startAnimation()
^
UIKit.UIViewPropertyAnimator.startAnimation:3:24: note: calls to instance method 'startAnimation()' from outside of its actor context are implicitly asynchronous
@MainActor open func startAnimation()}
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:285:14: note: add '@MainActor' to make local function 'animateUsingDefaultAnimator(changes:)' part of global actor 'MainActor'
func animateUsingDefaultAnimator(changes: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:294:24: warning: call to main actor-isolated static method 'animate(_:changes:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.animate(animation) {
^
SwiftUI.UIView.animate:2:47: note: calls to static method 'animate(_:changes:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public static func animate(_ animation: Animation, changes: () -> Void, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:283:10: note: add '@MainActor' to make instance method 'apply(animatableChanges:transaction:)' part of global actor 'MainActor'
func apply(animatableChanges: @escaping () -> Void, transaction: Transaction) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:287:22: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
animator.addAnimations(changes)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:287:22: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated instance method 'addAnimations' risks causing races in between task-isolated and main actor-isolated uses
animator.addAnimations(changes)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:294:24: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
UIView.animate(animation) {
~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:294:24: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
UIView.animate(animation) {
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:261:20: warning: sending 'state' risks causing data races; this is an error in the Swift 6 language mode
controller.move(to: state, animated: false)
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:261:20: note: sending task-isolated 'state' to main actor-isolated instance method 'move(to:animated:completion:)' risks causing data races between main actor-isolated and task-isolated uses
controller.move(to: state, animated: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:272:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.stateBinding.wrappedValue = state
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:272:21: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.stateBinding.wrappedValue = state
^~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:272:54: warning: sending 'state' risks causing data races; this is an error in the Swift 6 language mode
self.stateBinding.wrappedValue = state
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/FloatingPanelView.swift:272:54: note: task-isolated 'state' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.stateBinding.wrappedValue = state
^~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/SurfaceAppearance+.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ View+floatingPanelConfiguration.swift,\ View+floatingPanelLayout.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelController.ContentMode = .static
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelController.ContentMode = .static
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelController.ContentMode = .static
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelController.ContentMode = .static
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Logging.swift,\ PassthroughView.swift,\ Position.swift /Users/admin/builder/spi-builder-workspace/Sources/Logging.swift /Users/admin/builder/spi-builder-workspace/Sources/PassthroughView.swift /Users/admin/builder/spi-builder-workspace/Sources/Position.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Logging.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PassthroughView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Position.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ FloatingPanel (in target 'FloatingPanel' from project 'FloatingPanel')
EmitSwiftModule normal arm64 (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: warning: var 'originalDismissImp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var originalDismissImp: IMP?
^
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: note: convert 'originalDismissImp' to a 'let' constant to make 'Sendable' shared state immutable
private var originalDismissImp: IMP?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: note: add '@MainActor' to make var 'originalDismissImp' part of global actor 'MainActor'
private var originalDismissImp: IMP?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Controller.swift:773:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var originalDismissImp: IMP?
^
nonisolated(unsafe)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:50:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:47:26: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UILayoutGuide: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:48:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:51:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:49:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:52:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:53:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor;
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: warning: main actor-isolated property 'topAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:48:19: note: add '@preconcurrency' to the 'LayoutGuideProvider' conformance to defer isolation checking to run time
extension UIView: LayoutGuideProvider {}
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:40:9: note: requirement 'topAnchor' declared here
var topAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:574:59: warning: main actor-isolated property 'leftAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leftAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:41:9: note: requirement 'leftAnchor' declared here
var leftAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: warning: main actor-isolated property 'bottomAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:42:9: note: requirement 'bottomAnchor' declared here
var bottomAnchor: NSLayoutYAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:575:59: warning: main actor-isolated property 'rightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *rightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:43:9: note: requirement 'rightAnchor' declared here
var rightAnchor: NSLayoutXAxisAnchor { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: warning: main actor-isolated property 'widthAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:44:9: note: requirement 'widthAnchor' declared here
var widthAnchor: NSLayoutDimension { get }
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: warning: main actor-isolated property 'heightAnchor' cannot be used to satisfy nonisolated requirement from protocol 'LayoutGuideProvider'; this is an error in the Swift 6 language mode
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
^
/Users/admin/builder/spi-builder-workspace/Sources/Extensions.swift:45:9: note: requirement 'heightAnchor' declared here
var heightAnchor: NSLayoutDimension { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/Layout.swift:69:25: warning: main actor-isolated property 'position' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
surfaceView.position = position
^
/Users/admin/builder/spi-builder-workspace/Sources/SurfaceView.swift:153:9: note: mutation of this property is only permitted within the actor
var position: FloatingPanelPosition = .bottom {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:41:35: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Full) public static let full: FloatingPanelState = FloatingPanelState(rawValue: "full", order: 1000)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:41:35: note: add '@MainActor' to make static property 'full' part of global actor 'MainActor'
@objc(Full) public static let full: FloatingPanelState = FloatingPanelState(rawValue: "full", order: 1000)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:41:35: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Full) public static let full: FloatingPanelState = FloatingPanelState(rawValue: "full", order: 1000)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:43:35: warning: static property 'half' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Half) public static let half: FloatingPanelState = FloatingPanelState(rawValue: "half", order: 500)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:43:35: note: add '@MainActor' to make static property 'half' part of global actor 'MainActor'
@objc(Half) public static let half: FloatingPanelState = FloatingPanelState(rawValue: "half", order: 500)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:43:35: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Half) public static let half: FloatingPanelState = FloatingPanelState(rawValue: "half", order: 500)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:45:34: warning: static property 'tip' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Tip) public static let tip: FloatingPanelState = FloatingPanelState(rawValue: "tip", order: 100)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:45:34: note: add '@MainActor' to make static property 'tip' part of global actor 'MainActor'
@objc(Tip) public static let tip: FloatingPanelState = FloatingPanelState(rawValue: "tip", order: 100)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:45:34: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Tip) public static let tip: FloatingPanelState = FloatingPanelState(rawValue: "tip", order: 100)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:47:37: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'FloatingPanelState' may have shared mutable state; this is an error in the Swift 6 language mode
@objc(Hidden) public static let hidden: FloatingPanelState = FloatingPanelState(rawValue: "hidden", order: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:7:12: note: class 'FloatingPanelState' does not conform to the 'Sendable' protocol
open class FloatingPanelState: NSObject, NSCopying, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:47:37: note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
@objc(Hidden) public static let hidden: FloatingPanelState = FloatingPanelState(rawValue: "hidden", order: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/State.swift:47:37: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc(Hidden) public static let hidden: FloatingPanelState = FloatingPanelState(rawValue: "hidden", order: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelController.ContentInsetAdjustmentBehavior = .always
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelController.ContentMode = .static
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelController.ContentMode = .static
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelController.ContentMode = .static
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelConfiguration.swift:18:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelController.ContentMode = .static
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelLayout.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelLayout = FloatingPanelBottomLayout()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue = SurfaceAppearance()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue = SurfaceAppearance()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue = SurfaceAppearance()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue = SurfaceAppearance()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: CGFloat = 6.0
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: CGFloat = 6.0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: CGFloat = 6.0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelSurface.swift:18:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: CGFloat = 6.0
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ View+floatingPanel.swift,\ View+floatingPanelBehavior.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanel.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelBehavior.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: FloatingPanelBehavior = FloatingPanelDefaultBehavior()
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ View+floatingPanelScrollTracking.swift,\ View+floatingPanelState.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelScrollTracking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelScrollTracking.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUI/View+floatingPanelState.swift:9:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: Binding<FloatingPanelState?> = .constant(nil)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for FloatingPanel (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriver\ Compilation\ Requirements FloatingPanel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FloatingPanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel-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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Logging.swift, PassthroughView.swift, Position.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/FloatingPanel-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel-Swift.h (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/FloatingPanel-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftmodule (in target 'FloatingPanel' from project 'FloatingPanel')
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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftdoc (in target 'FloatingPanel' from project 'FloatingPanel')
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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.abi.json (in target 'FloatingPanel' from project 'FloatingPanel')
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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/arm64-apple-ios.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Core.swift, Extensions.swift, GrabberView.swift (in target 'FloatingPanel' from project 'FloatingPanel')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftsourceinfo (in target 'FloatingPanel' from project 'FloatingPanel')
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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling BackdropView.swift, Behavior.swift, Controller.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling Layout.swift, LayoutAnchoring.swift, LayoutProperties.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling View+floatingPanelScrollTracking.swift, View+floatingPanelState.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling View+floatingPanel.swift, View+floatingPanelBehavior.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling View+floatingPanelConfiguration.swift, View+floatingPanelLayout.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling View+floatingPanelSurface.swift, Transitioning.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling FloatingPanelProxy.swift, FloatingPanelView.swift, SurfaceAppearance+.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriverJobDiscovery normal arm64 Compiling State.swift, SurfaceView.swift, FloatingPanelCoordinator.swift (in target 'FloatingPanel' from project 'FloatingPanel')
SwiftDriver\ Compilation FloatingPanel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FloatingPanel -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel-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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.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/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.o normal (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.o
ExtractAppIntentsMetadata (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name FloatingPanel --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.FloatingPanel --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/FloatingPanel.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/FloatingPanel.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FloatingPanel.build/Debug-iphoneos/FloatingPanel.build/Objects-normal/arm64/FloatingPanel.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-02-14 04:53:06.227 appintentsmetadataprocessor[762:4517] Starting appintentsmetadataprocessor export
2026-02-14 04:53:06.266 appintentsmetadataprocessor[762:4517] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.o (in target 'FloatingPanel' from project 'FloatingPanel')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/FloatingPanel.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "FloatingPanel",
"name" : "FloatingPanel",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
}
],
"products" : [
{
"name" : "FloatingPanel",
"targets" : [
"FloatingPanel"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "FloatingPanel",
"module_type" : "SwiftTarget",
"name" : "FloatingPanel",
"path" : "Sources",
"product_memberships" : [
"FloatingPanel"
],
"sources" : [
"BackdropView.swift",
"Behavior.swift",
"Controller.swift",
"Core.swift",
"Extensions.swift",
"GrabberView.swift",
"Layout.swift",
"LayoutAnchoring.swift",
"LayoutProperties.swift",
"Logging.swift",
"PassthroughView.swift",
"Position.swift",
"State.swift",
"SurfaceView.swift",
"SwiftUI/FloatingPanelCoordinator.swift",
"SwiftUI/FloatingPanelProxy.swift",
"SwiftUI/FloatingPanelView.swift",
"SwiftUI/SurfaceAppearance+.swift",
"SwiftUI/View+floatingPanel.swift",
"SwiftUI/View+floatingPanelBehavior.swift",
"SwiftUI/View+floatingPanelConfiguration.swift",
"SwiftUI/View+floatingPanelLayout.swift",
"SwiftUI/View+floatingPanelScrollTracking.swift",
"SwiftUI/View+floatingPanelState.swift",
"SwiftUI/View+floatingPanelSurface.swift",
"Transitioning.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.