This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build FLCharts with Swift 6.0 for watchOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme FLCharts -destination generic/platform=watchos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |                |- note: annotate 'seaBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |     static let darkBlue = FLColor(hex: "1B205E")
135 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:134:16: warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
132 |     static let blue = FLColor(hex: "4EBCFF")
133 |     static let seaBlue = FLColor(hex: "4266E8")
134 |     static let darkBlue = FLColor(hex: "1B205E")
    |                |- warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'darkBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |
136 |     static func uiColor(_ uicolor: UIColor) -> FLColor {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:146:27: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
144 |     enum Gradient {
145 |
146 |         public static let green = FLColor(startColor: UIColor(hex: "0BCDF7"), endColor: UIColor(hex: "A2FEAE"))
    |                           |- warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:148:27: warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
146 |         public static let green = FLColor(startColor: UIColor(hex: "0BCDF7"), endColor: UIColor(hex: "A2FEAE"))
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
    |                           |- warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'darkBlue' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:149:27: warning: static property 'blueClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
    |                           |- warning: static property 'blueClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'blueClear' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:150:27: warning: static property 'purpleLightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
    |                           |- warning: static property 'purpleLightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'purpleLightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:151:27: warning: static property 'darkPurple' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
    |                           |- warning: static property 'darkPurple' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'darkPurple' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:152:27: warning: static property 'darkPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
    |                           |- warning: static property 'darkPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'darkPink' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:153:27: warning: static property 'neonPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
    |                           |- warning: static property 'neonPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'neonPink' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:154:27: warning: static property 'purpleClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
    |                           |- warning: static property 'purpleClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'purpleClear' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
156 |         public static let sunset = FLColor(startColor: UIColor(hex: "FF8E2D"), endColor: UIColor(hex: "FF4E7A"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:155:27: warning: static property 'purpleCyan' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
    |                           |- warning: static property 'purpleCyan' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'purpleCyan' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         public static let sunset = FLColor(startColor: UIColor(hex: "FF8E2D"), endColor: UIColor(hex: "FF4E7A"))
157 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:156:27: warning: static property 'sunset' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
156 |         public static let sunset = FLColor(startColor: UIColor(hex: "FF8E2D"), endColor: UIColor(hex: "FF4E7A"))
    |                           |- warning: static property 'sunset' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'sunset' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     }
158 | }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift:12:26: error: method does not override any method from its superclass
10 | public class FLIntrinsicCollectionView: UICollectionView {
11 |
12 |     public override func layoutSubviews() {
   |                          `- error: method does not override any method from its superclass
13 |         super.layoutSubviews()
14 |         if bounds.size != intrinsicContentSize {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift:19:25: error: property does not override any property from its superclass
17 |     }
18 |
19 |     public override var intrinsicContentSize: CGSize {
   |                         `- error: property does not override any property from its superclass
20 |         self.contentSize
21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift:10:41: error: cannot find type 'UICollectionView' in scope
 8 | import UIKit
 9 |
10 | public class FLIntrinsicCollectionView: UICollectionView {
   |                                         `- error: cannot find type 'UICollectionView' in scope
11 |
12 |     public override func layoutSubviews() {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift:52:32: error: cannot find type 'UIView' in scope
50 |     /// Add an ``FLShadow`` to a specifc `UIView`.
51 |     /// - Parameter view: The view to which apply the shadow.
52 |     public func apply(to view: UIView) {
   |                                `- error: cannot find type 'UIView' in scope
53 |         view.layer.shadowColor = color.cgColor
54 |         view.layer.shadowRadius = radius
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift:24:11: error: cannot find type 'UILayoutPriority' in scope
22 | }
23 |
24 | extension UILayoutPriority {
   |           `- error: cannot find type 'UILayoutPriority' in scope
25 |     static var almostRequired: UILayoutPriority {
26 |         return .required - 1
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift:30:11: error: cannot find type 'NSLayoutConstraint' in scope
28 | }
29 |
30 | extension NSLayoutConstraint {
   |           `- error: cannot find type 'NSLayoutConstraint' in scope
31 |     func withPriority(_ new: UILayoutPriority) -> NSLayoutConstraint {
32 |         priority = new
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift:37:11: error: cannot find type 'UIView' in scope
35 | }
36 |
37 | extension UIView {
   |           `- error: cannot find type 'UIView' in scope
38 |
39 |     @discardableResult
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:16:34: error: cannot find 'UILabel' in scope
14 |     public var dataValue: String?
15 |
16 |     private let dataValueLabel = UILabel()
   |                                  `- error: cannot find 'UILabel' in scope
17 |     private let unitOfMeasureLabel = UILabel()
18 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:17:38: error: cannot find 'UILabel' in scope
15 |
16 |     private let dataValueLabel = UILabel()
17 |     private let unitOfMeasureLabel = UILabel()
   |                                      `- error: cannot find 'UILabel' in scope
18 |
19 |     // MARK: - Init
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:21:14: error: initializer does not override a designated initializer from its superclass
19 |     // MARK: - Init
20 |
21 |     override init(frame: CGRect) {
   |              `- error: initializer does not override a designated initializer from its superclass
22 |         super.init(frame: frame)
23 |         backgroundColor = FLColor.lightGray
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:55:25: error: property does not override any property from its superclass
53 |     }
54 |
55 |     public override var intrinsicContentSize: CGSize {
   |                         `- error: property does not override any property from its superclass
56 |         CGSize(width: 10 + dataValueLabel.intrinsicWidth + 5 + unitOfMeasureLabel.intrinsicWidth + 10,
57 |                height: 10 + dataValueLabel.intrinsicHeight + 10)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:12:40: error: cannot find type 'UIView' in scope
10 |
11 | /// A simple highlighted view that displays the value of the currently highlighted chart bar.
12 | public final class BarHighlightedView: UIView, HighlightedView {
   |                                        `- error: cannot find type 'UIView' in scope
13 |
14 |     public var dataValue: String?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:17:28: error: cannot find 'UIView' in scope
 15 |
 16 |     /// A mock view of the collection view used to calculate the position of the highlighted view.
 17 |     private let mockView = UIView()
    |                            `- error: cannot find 'UIView' in scope
 18 |
 19 |     internal var getChartData: (() -> FLChartData)?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:25:36: error: cannot find type 'UIView' in scope
 23 |
 24 |     /// The line that connects the highlighted view to the chart bar.
 25 |     private var lineIndicatorView: UIView?
    |                                    `- error: cannot find type 'UIView' in scope
 26 |
 27 |     /// The configuration of the chart
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:35:33: error: cannot find 'UIView' in scope
 33 |             guard highlightedView != nil else { return }
 34 |
 35 |             lineIndicatorView = UIView()
    |                                 `- error: cannot find 'UIView' in scope
 36 |             configureHighlightView()
 37 |             configureLogTapGesture()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:83:49: error: cannot find type 'UIPanGestureRecognizer' in scope
 81 |     // MARK: - Gestures
 82 |
 83 |     @objc private func didLongTap(_ panGesture: UIPanGestureRecognizer) {
    |                                                 `- error: cannot find type 'UIPanGestureRecognizer' in scope
 84 |         let location: CGPoint = panGesture.location(in: collectionView)
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:42:21: error: cannot find type 'UICollectionViewDataSource' in scope
40 | }
41 |
42 | extension FLLegend: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
   |                     `- error: cannot find type 'UICollectionViewDataSource' in scope
43 |
44 |     public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:42:49: error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
40 | }
41 |
42 | extension FLLegend: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
   |                                                 `- error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
43 |
44 |     public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:44:50: error: cannot find type 'UICollectionView' in scope
42 | extension FLLegend: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
43 |
44 |     public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
45 |         return keys.count
46 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:48:107: error: cannot find type 'UICollectionViewCell' in scope
46 |     }
47 |
48 |     public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
   |                                                                                                           `- error: cannot find type 'UICollectionViewCell' in scope
49 |         guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLLegendKeyCell.identifier, for: indexPath) as? FLLegendKeyCell else { return UICollectionViewCell() }
50 |         let key = keys[indexPath.item]
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:48:50: error: cannot find type 'UICollectionView' in scope
46 |     }
47 |
48 |     public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
49 |         guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLLegendKeyCell.identifier, for: indexPath) as? FLLegendKeyCell else { return UICollectionViewCell() }
50 |         let key = keys[indexPath.item]
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:55:50: error: cannot find type 'UICollectionView' in scope
53 |     }
54 |
55 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
56 |         return CGSize(width: maxCellWidth + 15 + 5 + 5, height: 15)
57 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:55:97: error: cannot find type 'UICollectionViewLayout' in scope
53 |     }
54 |
55 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
   |                                                                                                 `- error: cannot find type 'UICollectionViewLayout' in scope
56 |         return CGSize(width: maxCellWidth + 15 + 5 + 5, height: 15)
57 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:59:50: error: cannot find type 'UICollectionView' in scope
57 |     }
58 |
59 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
60 |         return 10
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:59:97: error: cannot find type 'UICollectionViewLayout' in scope
57 |     }
58 |
59 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
   |                                                                                                 `- error: cannot find type 'UICollectionViewLayout' in scope
60 |         return 10
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:63:50: error: cannot find type 'UICollectionView' in scope
61 |     }
62 |
63 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
64 |         return 10
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:63:97: error: cannot find type 'UICollectionViewLayout' in scope
61 |     }
62 |
63 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
   |                                                                                                 `- error: cannot find type 'UICollectionViewLayout' in scope
64 |         return 10
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:10:24: error: cannot find type 'UICollectionViewCell' in scope
 8 | import UIKit
 9 |
10 | class FLLegendKeyCell: UICollectionViewCell {
   |                        `- error: cannot find type 'UICollectionViewCell' in scope
11 |
12 |     public static let identifier = "FLLegendKeyCell"
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:14:30: error: cannot find 'UIView' in scope
12 |     public static let identifier = "FLLegendKeyCell"
13 |
14 |     private let squareView = UIView()
   |                              `- error: cannot find 'UIView' in scope
15 |     private let keyLabel = UILabel()
16 |
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:15:28: error: cannot find 'UILabel' in scope
13 |
14 |     private let squareView = UIView()
15 |     private let keyLabel = UILabel()
   |                            `- error: cannot find 'UILabel' in scope
16 |
17 |     override init(frame: CGRect) {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:17:14: error: initializer does not override a designated initializer from its superclass
15 |     private let keyLabel = UILabel()
16 |
17 |     override init(frame: CGRect) {
   |              `- error: initializer does not override a designated initializer from its superclass
18 |         super.init(frame: frame)
19 |         addSubview(squareView)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift:25:29: error: cannot find type 'UIView' in scope
23 |         case corners(corners: CACornerMask, CGFloat)
24 |
25 |         func apply(to view: UIView, shorterEdge: CGFloat) {
   |                             `- error: cannot find type 'UIView' in scope
26 |             switch self {
27 |             case .none:
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift:66:26: error: method does not override any method from its superclass
 64 |     }
 65 |
 66 |     public override func draw(_ rect: CGRect) {
    |                          `- error: method does not override any method from its superclass
 67 |         super.draw(rect)
 68 |         for subview in subviews where subview is SliceShape {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift:10:32: error: cannot find type 'UIView' in scope
  8 | import UIKit
  9 |
 10 | public final class FLPieChart: UIView, MutableCardableChart {
    |                                `- error: cannot find type 'UIView' in scope
 11 |
 12 |     internal var border: FLPieBorder = .full
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift:10:19: error: cannot find type 'UIView' in scope
 8 | import UIKit
 9 |
10 | class SliceShape: UIView {
   |                   `- error: cannot find type 'UIView' in scope
11 |
12 |     var data: FLPiePlotable
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift:13:30: error: cannot find 'CAShapeLayer' in scope
11 |
12 |     var data: FLPiePlotable
13 |     private let shapeLayer = CAShapeLayer()
   |                              `- error: cannot find 'CAShapeLayer' in scope
14 |     private var animationDuration: TimeInterval = 0.75
15 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift:63:54: error: cannot find type 'CABasicAnimation' in scope
61 |     }
62 |
63 |     private func animate(_ name: String, configure: (CABasicAnimation) -> Void) {
   |                                                      `- error: cannot find type 'CABasicAnimation' in scope
64 |         let animation = CABasicAnimation(keyPath: name)
65 |         animation.duration = animationDuration
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:12:37: error: cannot find type 'UIView' in scope
 10 | /// A bar chart that displays one or more bars.
 11 | /// It takes a ``ChartBar`` in the initializer that allows to provide a custom bar cell.
 12 | internal final class FLBarPlotView: UIView, FLPlotView {
    |                                     `- error: cannot find type 'UIView' in scope
 13 |
 14 |     private let collectionView = HighlightingCollectionView()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:14:61: error: missing argument for parameter 'frame' in call
 12 | internal final class FLBarPlotView: UIView, FLPlotView {
 13 |
 14 |     private let collectionView = HighlightingCollectionView()
    |                                                             `- error: missing argument for parameter 'frame' in call
 15 |
 16 |     /// The configuration of the chart.
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:45:14: note: 'init(frame:)' declared here
 43 |     // MARK: - Init
 44 |
 45 |     override init(frame: CGRect) {
    |              `- note: 'init(frame:)' declared here
 46 |         super.init(frame: frame)
 47 |         insertSubview(mockView, belowSubview: collectionView)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:105:52: error: cannot find type 'UICollectionView' in scope
103 | extension FLBarPlotView: UICollectionViewDataSource {
104 |
105 |     internal func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
106 |         return chartData.dataEntries.count
107 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:109:109: error: cannot find type 'UICollectionViewCell' in scope
107 |     }
108 |
109 |     internal func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    |                                                                                                             `- error: cannot find type 'UICollectionViewCell' in scope
110 |         let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLChartBarCell.identifier, for: indexPath) as! FLChartBarCell
111 |         cell.config = config
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:109:52: error: cannot find type 'UICollectionView' in scope
107 |     }
108 |
109 |     internal func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
110 |         let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLChartBarCell.identifier, for: indexPath) as! FLChartBarCell
111 |         cell.config = config
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:146:52: error: cannot find type 'UICollectionView' in scope
144 | extension FLBarPlotView: UICollectionViewDelegateFlowLayout {
145 |
146 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
147 |         if shouldScroll {
148 |             return CGSize(width: cellWidth, height: collectionView.frame.height)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:146:99: error: cannot find type 'UICollectionViewLayout' in scope
144 | extension FLBarPlotView: UICollectionViewDelegateFlowLayout {
145 |
146 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    |                                                                                                   `- error: cannot find type 'UICollectionViewLayout' in scope
147 |         if shouldScroll {
148 |             return CGSize(width: cellWidth, height: collectionView.frame.height)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:161:52: error: cannot find type 'UICollectionView' in scope
159 |     }
160 |
161 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
162 |         return 0
163 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:161:99: error: cannot find type 'UICollectionViewLayout' in scope
159 |     }
160 |
161 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
    |                                                                                                   `- error: cannot find type 'UICollectionViewLayout' in scope
162 |         return 0
163 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:165:52: error: cannot find type 'UICollectionView' in scope
163 |     }
164 |
165 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
166 |         return 0
167 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:165:99: error: cannot find type 'UICollectionViewLayout' in scope
163 |     }
164 |
165 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
    |                                                                                                   `- error: cannot find type 'UICollectionViewLayout' in scope
166 |         return 0
167 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:103:26: error: cannot find type 'UICollectionViewDataSource' in scope
101 | // MARK: - UICollectionView Data Source
102 |
103 | extension FLBarPlotView: UICollectionViewDataSource {
    |                          `- error: cannot find type 'UICollectionViewDataSource' in scope
104 |
105 |     internal func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:144:26: error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
142 | // MARK: - UICollectionView Flow Layout
143 |
144 | extension FLBarPlotView: UICollectionViewDelegateFlowLayout {
    |                          `- error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
145 |
146 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift:10:38: error: cannot find type 'UIView' in scope
  8 | import UIKit
  9 |
 10 | internal final class FLLinePlotView: UIView, FLPlotView {
    |                                      `- error: cannot find type 'UIView' in scope
 11 |
 12 |     private var chartData: FLChartData
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift:53:28: error: method does not override any method from its superclass
 51 |     }
 52 |
 53 |     internal override func layoutSubviews() {
    |                            `- error: method does not override any method from its superclass
 54 |         super.layoutSubviews()
 55 |         self.setNeedsDisplay()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift:58:28: error: method does not override any method from its superclass
 56 |     }
 57 |
 58 |     internal override func draw(_ rect: CGRect) {
    |                            `- error: method does not override any method from its superclass
 59 |         super.draw(rect)
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift:26:41: error: cannot find type 'UIView' in scope
 24 | }
 25 |
 26 | internal final class FLScatterPlotView: UIView, FLPlotView {
    |                                         `- error: cannot find type 'UIView' in scope
 27 |
 28 |     private var chartData: FLChartData
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift:55:28: error: method does not override any method from its superclass
 53 |     }
 54 |
 55 |     internal override func layoutSubviews() {
    |                            `- error: method does not override any method from its superclass
 56 |         super.layoutSubviews()
 57 |         self.setNeedsDisplay()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift:60:28: error: method does not override any method from its superclass
 58 |     }
 59 |
 60 |     internal override func draw(_ rect: CGRect) {
    |                            `- error: method does not override any method from its superclass
 61 |         super.draw(rect)
 62 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift:113:26: error: method does not override any method from its superclass
111 |     }
112 |
113 |     public override func draw(_ rect: CGRect) {
    |                          `- error: method does not override any method from its superclass
114 |         super.draw(rect)
115 |         guard let context = UIGraphicsGetCurrentContext() else { return }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift:12:34: error: cannot find type 'UIView' in scope
 10 |
 11 | /// A radar chart, or Kiviat chart.
 12 | public final class FLRadarChart: UIView, MutableCardableChart {
    |                                  `- error: cannot find type 'UIView' in scope
 13 |
 14 |     /// Whether to show the Y axis labels.
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:14:26: error: cannot find 'UICollectionView' in scope
12 | open class UnclippedTopCollectionView: UIView {
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
   |                          `- error: cannot find 'UICollectionView' in scope
15 |
16 |     private let clipMask = CALayer()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:14:79: error: cannot find 'UICollectionViewFlowLayout' in scope
12 | open class UnclippedTopCollectionView: UIView {
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
   |                                                                               `- error: cannot find 'UICollectionViewFlowLayout' in scope
15 |
16 |     private let clipMask = CALayer()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:14:51: error: cannot infer contextual base in reference to member 'zero'
12 | open class UnclippedTopCollectionView: UIView {
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
   |                                                   `- error: cannot infer contextual base in reference to member 'zero'
15 |
16 |     private let clipMask = CALayer()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:16:28: error: cannot find 'CALayer' in scope
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
15 |
16 |     private let clipMask = CALayer()
   |                            `- error: cannot find 'CALayer' in scope
17 |
18 |     var delegate: UICollectionViewDelegate? {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:18:19: error: cannot find type 'UICollectionViewDelegate' in scope
16 |     private let clipMask = CALayer()
17 |
18 |     var delegate: UICollectionViewDelegate? {
   |                   `- error: cannot find type 'UICollectionViewDelegate' in scope
19 |         didSet { collectionView.delegate = delegate }
20 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:22:21: error: cannot find type 'UICollectionViewDataSource' in scope
20 |     }
21 |
22 |     var dataSource: UICollectionViewDataSource? {
   |                     `- error: cannot find type 'UICollectionViewDataSource' in scope
23 |         didSet { collectionView.dataSource = dataSource }
24 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:36:14: error: initializer does not override a designated initializer from its superclass
34 |     // MARK: - Init
35 |
36 |     override init(frame: CGRect) {
   |              `- error: initializer does not override a designated initializer from its superclass
37 |         super.init(frame: frame)
38 |         clipMask.backgroundColor = UIColor.black.cgColor
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:54:24: error: method does not override any method from its superclass
52 |     }
53 |
54 |     open override func layoutSubviews() {
   |                        `- error: method does not override any method from its superclass
55 |         super.layoutSubviews()
56 |         clipMask.frame = bounds.insetBy(dx: 0, dy: -50)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:12:40: error: cannot find type 'UIView' in scope
10 |
11 | /// A horizontal collection view with the top edge unclipped.
12 | open class UnclippedTopCollectionView: UIView {
   |                                        `- error: cannot find type 'UIView' in scope
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
SwiftEmitModule normal arm64 Emitting\ module\ for\ FLCharts (in target 'FLCharts' from project 'FLCharts')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Assets/Translation.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/ChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLHorizontalMultipleValuesChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLMultipleValuesChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLPlainChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/CardableChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCardStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Aggregator.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/PlayfulCurveLine.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/ProfessionalCurveLine.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Chart+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Formatters.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Label.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Labels.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/ChartHighlightingDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/HighlightedView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAverageViewConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAxesLabelConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAxesLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLChartConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLDashedLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLRadarGridConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLStylable.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLTickConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/FLChartData.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/FLDataSet.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/PlotableData.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieBorder.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPiePlotable.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/LineXAxis.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/ScatterXAxis.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/XAxisProvider.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/GeneratedAssetSymbols.swift -target arm64-apple-watchos5.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FLCharts -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/arm64/FLCharts.abi.json
SwiftEmitModule normal armv7k Emitting\ module\ for\ FLCharts (in target 'FLCharts' from project 'FLCharts')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Assets/Translation.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/ChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLHorizontalMultipleValuesChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLMultipleValuesChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLPlainChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/CardableChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCardStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Aggregator.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/PlayfulCurveLine.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/ProfessionalCurveLine.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Chart+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Formatters.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Label.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Labels.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/ChartHighlightingDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/HighlightedView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAverageViewConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAxesLabelConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAxesLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLChartConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLDashedLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLRadarGridConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLStylable.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLTickConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/FLChartData.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/FLDataSet.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/PlotableData.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieBorder.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPiePlotable.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/LineXAxis.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/ScatterXAxis.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/XAxisProvider.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/GeneratedAssetSymbols.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FLCharts -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/ChartBar.swift:10:27: error: cannot find type 'UIView' in scope
 8 | import UIKit
 9 |
10 | public protocol ChartBar: UIView {
   |                           `- error: cannot find type 'UIView' in scope
11 |
12 |     var config: FLChartConfig? { get set }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift:24:29: error: cannot find 'UIView' in scope
 22 |     internal var barView: ChartBar!
 23 |     internal var showXAxis: Bool = true
 24 |     private let xAxisLine = UIView()
    |                             `- error: cannot find 'UIView' in scope
 25 |     private let spaceXLineFromBottom: CGFloat = 25
 26 |     let xAxisLabel = UILabel()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift:26:22: error: cannot find 'UILabel' in scope
 24 |     private let xAxisLine = UIView()
 25 |     private let spaceXLineFromBottom: CGFloat = 25
 26 |     let xAxisLabel = UILabel()
    |                      `- error: cannot find 'UILabel' in scope
 27 |
 28 |     internal var heightConstraint: NSLayoutConstraint!
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift:28:36: error: cannot find type 'NSLayoutConstraint' in scope
 26 |     let xAxisLabel = UILabel()
 27 |
 28 |     internal var heightConstraint: NSLayoutConstraint!
    |                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 29 |
 30 |     // MARK: - Configurations
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift:15:16: warning: static property 'identifier' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 13 | final public class FLChartBarCell: UICollectionViewCell {
 14 |
 15 |     static var identifier = "FLChartBarCell"
    |                |- warning: static property 'identifier' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'identifier' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 |     public var barData: PlotableData?
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift:32:26: error: method does not override any method from its superclass
 30 |     // MARK: - Configurations
 31 |
 32 |     public override func prepareForReuse() {
    |                          `- error: method does not override any method from its superclass
 33 |         super.prepareForReuse()
 34 |         heightConstraint.isActive = false
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift:13:36: error: cannot find type 'UICollectionViewCell' in scope
 11 | /// The base chart bar cell.
 12 | /// If you need a different bar style, create a custom class that inherits from ``FLChartBarCell`` and override ``configureViews()``.
 13 | final public class FLChartBarCell: UICollectionViewCell {
    |                                    `- error: cannot find type 'UICollectionViewCell' in scope
 14 |
 15 |     static var identifier = "FLChartBarCell"
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLHorizontalMultipleValuesChartBar.swift:18:33: error: cannot find 'UIStackView' in scope
16 |     public var horizontalRepresentedValues: Bool = true
17 |
18 |     private let barsStackView = UIStackView()
   |                                 `- error: cannot find 'UIStackView' in scope
19 |
20 |     public func prepareForReuse() {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLHorizontalMultipleValuesChartBar.swift:11:56: error: cannot find type 'UIView' in scope
 9 |
10 | /// A bar cell which allows to display multiple values in multiple horizontal bars.
11 | public final class FLHorizontalMultipleValuesChartBar: UIView, ChartBar {
   |                                                        `- error: cannot find type 'UIView' in scope
12 |
13 |     public var config: FLChartConfig?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLMultipleValuesChartBar.swift:19:32: error: cannot find 'UIStackView' in scope
17 |     public var horizontalRepresentedValues: Bool = false
18 |
19 |     private let barStackView = UIStackView()
   |                                `- error: cannot find 'UIStackView' in scope
20 |
21 |     public func prepareForReuse() {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLMultipleValuesChartBar.swift:12:46: error: cannot find type 'UIView' in scope
10 |
11 | /// A bar cell which allows to display multiple values in one bar.
12 | public final class FLMultipleValuesChartBar: UIView, ChartBar {
   |                                              `- error: cannot find type 'UIView' in scope
13 |
14 |     public var config: FLChartConfig?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLPlainChartBar.swift:11:37: error: cannot find type 'UIView' in scope
 9 |
10 | /// A plain chart bar.
11 | public final class FLPlainChartBar: UIView, ChartBar {
   |                                     `- error: cannot find type 'UIView' in scope
12 |
13 |     public var config: FLChartConfig?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/CardableChart.swift:10:32: error: cannot find type 'UIView' in scope
 8 | import UIKit
 9 |
10 | public protocol CardableChart: UIView {
   |                                `- error: cannot find type 'UIView' in scope
11 |     var title: String { get }
12 |     var legendKeys: [Key] { get }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift:14:30: error: cannot find 'UILabel' in scope
 12 | final public class FLCard: UIView {
 13 |
 14 |     private let titleLabel = UILabel()
    |                              `- error: cannot find 'UILabel' in scope
 15 |     private var averageLabel: UILabel?
 16 |     private var legend: FLLegend?
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift:15:31: error: cannot find type 'UILabel' in scope
 13 |
 14 |     private let titleLabel = UILabel()
 15 |     private var averageLabel: UILabel?
    |                               `- error: cannot find type 'UILabel' in scope
 16 |     private var legend: FLLegend?
 17 |     private let headerStackView = UIStackView()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift:17:35: error: cannot find 'UIStackView' in scope
 15 |     private var averageLabel: UILabel?
 16 |     private var legend: FLLegend?
 17 |     private let headerStackView = UIStackView()
    |                                   `- error: cannot find 'UIStackView' in scope
 18 |     private let stackView = UIStackView()
 19 |     private let contentGuide = UILayoutGuide()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift:18:29: error: cannot find 'UIStackView' in scope
 16 |     private var legend: FLLegend?
 17 |     private let headerStackView = UIStackView()
 18 |     private let stackView = UIStackView()
    |                             `- error: cannot find 'UIStackView' in scope
 19 |     private let contentGuide = UILayoutGuide()
 20 |     private var chartView: CardableChart!
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift:19:32: error: cannot find 'UILayoutGuide' in scope
 17 |     private let headerStackView = UIStackView()
 18 |     private let stackView = UIStackView()
 19 |     private let contentGuide = UILayoutGuide()
    |                                `- error: cannot find 'UILayoutGuide' in scope
 20 |     private var chartView: CardableChart!
 21 |     private var style: FLCardStyle
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:118:31: error: extra arguments at positions #2, #3 in call
116 |
117 |     static let clear = FLColor(.clear)
118 |     static let white = UIColor(named: "white", in: bundle, compatibleWith: nil) ?? .white
    |                               `- error: extra arguments at positions #2, #3 in call
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
UIKit.UIColor:3:30: note: 'init(named:)' declared here
1 | extension UIColor {
2 |     @available(watchOS 4.0, *)
3 |     public /*not inherited*/ init?(named name: String)
  |                              `- note: 'init(named:)' declared here
4 |     @available(watchOS 4.0, *)
5 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:118:76: error: 'nil' requires a contextual type
116 |
117 |     static let clear = FLColor(.clear)
118 |     static let white = UIColor(named: "white", in: bundle, compatibleWith: nil) ?? .white
    |                                                                            `- error: 'nil' requires a contextual type
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:122:31: error: extra arguments at positions #2, #3 in call
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
    |                               `- error: extra arguments at positions #2, #3 in call
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
124 |     static let green = FLColor(hex: "72BF82")
UIKit.UIColor:3:30: note: 'init(named:)' declared here
1 | extension UIColor {
2 |     @available(watchOS 4.0, *)
3 |     public /*not inherited*/ init?(named name: String)
  |                              `- note: 'init(named:)' declared here
4 |     @available(watchOS 4.0, *)
5 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:122:76: error: 'nil' requires a contextual type
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
    |                                                                            `- error: 'nil' requires a contextual type
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
124 |     static let green = FLColor(hex: "72BF82")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCardStyle.swift:34:63: error: cannot convert value of type '(CGFloat, CGFloat) -> FLColor' to expected argument type 'UIColor?'
32 |                                    shadow: .basic)
33 |
34 |     static let rounded = FLCardStyle(backgroundColor: FLColor.white,
   |                                                               `- error: cannot convert value of type '(CGFloat, CGFloat) -> FLColor' to expected argument type 'UIColor?'
35 |                                      textColor: FLColor.black,
36 |                                      cornerRadius: 12,
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift:12:28: error: cannot find type 'UIView' in scope
 10 | /// A card with an embedded chart, a title label and an average label if needed.
 11 | /// If the chart supports highlighting, the title and average labels will disappear while highlighting.
 12 | final public class FLCard: UIView {
    |                            `- error: cannot find type 'UIView' in scope
 13 |
 14 |     private let titleLabel = UILabel()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCardStyle.swift:17:53: error: default argument value of type '(CGFloat, CGFloat) -> FLColor' cannot be converted to type 'UIColor?'
15 |     public var shadow: FLShadow?
16 |
17 |     public init(backgroundColor: UIColor? = FLColor.white,
   |                                                     `- error: default argument value of type '(CGFloat, CGFloat) -> FLColor' cannot be converted to type 'UIColor?'
18 |                 textColor: UIColor? = FLColor.black,
19 |                 cornerRadius: CGFloat = 15,
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift:62:16: warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'FLShadow' may have shared mutable state; this is an error in the Swift 6 language mode
26 | /// shadow.apply(to: targetView)
27 | /// ```
28 | public struct FLShadow {
   |               `- note: consider making struct 'FLShadow' conform to the 'Sendable' protocol
29 |
30 |     /// The color of the layer’s shadow.
   :
60 | public extension FLShadow {
61 |
62 |     static let basic = FLShadow(color: .black, radius: 10, opacity: 0.1)
   |                |- warning: static property 'basic' is not concurrency-safe because non-'Sendable' type 'FLShadow' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'basic' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | }
64 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCardStyle.swift:30:61: error: cannot convert value of type '(CGFloat, CGFloat) -> FLColor' to expected argument type 'UIColor?'
28 | public extension FLCardStyle {
29 |
30 |     static let plain = FLCardStyle(backgroundColor: FLColor.white,
   |                                                             `- error: cannot convert value of type '(CGFloat, CGFloat) -> FLColor' to expected argument type 'UIColor?'
31 |                                    textColor: FLColor.black,
32 |                                    shadow: .basic)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:121:34: error: extra arguments at positions #2, #3 in call
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
    |                                  `- error: extra arguments at positions #2, #3 in call
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
UIKit.UIColor:3:30: note: 'init(named:)' declared here
1 | extension UIColor {
2 |     @available(watchOS 4.0, *)
3 |     public /*not inherited*/ init?(named name: String)
  |                              `- note: 'init(named:)' declared here
4 |     @available(watchOS 4.0, *)
5 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:121:83: error: 'nil' requires a contextual type
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
    |                                                                                   `- error: 'nil' requires a contextual type
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:42:34: error: cannot find 'UILayoutGuide' in scope
 40 |   private var marginForAverageView: CGFloat = 0
 41 |
 42 |   private let chartLayoutGuide = UILayoutGuide()
    |                                  `- error: cannot find 'UILayoutGuide' in scope
 43 |
 44 |   internal var didUpdateChartLayoutGuide: (UILayoutGuide) -> Void = { _ in }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:44:44: error: cannot find type 'UILayoutGuide' in scope
 42 |   private let chartLayoutGuide = UILayoutGuide()
 43 |
 44 |   internal var didUpdateChartLayoutGuide: (UILayoutGuide) -> Void = { _ in }
    |                                            `- error: cannot find type 'UILayoutGuide' in scope
 45 |
 46 |   internal let chartType: FLChart.PlotType
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:101:53: error: cannot find 'setNeedsDisplay' in scope
 99 |   private let yUnitLabelSpacing: CGFloat = 5
100 |   private let tickLabelSpacing: CGFloat = 4
101 |   internal var dataMinValue: CGFloat = 0 { didSet { setNeedsDisplay() } }
    |                                                     `- error: cannot find 'setNeedsDisplay' in scope
102 |   internal var dataMaxValue: CGFloat? { didSet { setNeedsDisplay() } }
103 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:102:50: error: cannot find 'setNeedsDisplay' in scope
100 |   private let tickLabelSpacing: CGFloat = 4
101 |   internal var dataMinValue: CGFloat = 0 { didSet { setNeedsDisplay() } }
102 |   internal var dataMaxValue: CGFloat? { didSet { setNeedsDisplay() } }
    |                                                  `- error: cannot find 'setNeedsDisplay' in scope
103 |
104 |   private var chartDataMaxValue: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLPlotView.swift:11:31: error: cannot find type 'UIView' in scope
 9 |
10 | /// A `UIView` that can display a plotable chart.
11 | internal protocol FLPlotView: UIView, FLStylable {
   |                               `- error: cannot find type 'UIView' in scope
12 |
13 |     var highlightingDelegate: ChartHighlightingDelegate? { get set }
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:152:24: error: method does not override any method from its superclass
150 |   }
151 |
152 |   public override func draw(_ rect: CGRect) {
    |                        `- error: method does not override any method from its superclass
153 |     super.draw(rect)
154 |     guard let context = UIGraphicsGetCurrentContext() else { return }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:498:50: error: cannot find type 'UILabel' in scope
496 |   }
497 |
498 |   private func xPositionForAverageLabel(_ label: UILabel) -> CGFloat {
    |                                                  `- error: cannot find type 'UILabel' in scope
499 |     switch yAxisPosition {
500 |     case .left, .none:
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift:20:32: error: cannot find type 'UIView' in scope
 18 |
 19 | /// The cartesian plane on which the chart is plotted.
 20 | public class FLCartesianPlane: UIView, FLStylable {
    |                                `- error: cannot find type 'UIView' in scope
 21 |
 22 |   deinit {
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift:23:31: error: cannot find type 'CACornerMask' in scope
21 |
22 |         /// Applies the specified radius to the given corners of the bar.
23 |         case corners(corners: CACornerMask, CGFloat)
   |                               `- error: cannot find type 'CACornerMask' in scope
24 |
25 |         func apply(to view: UIView, shorterEdge: CGFloat) {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift:62:54: error: reference to member 'layerMinXMinYCorner' cannot be resolved without a contextual type
60 |     ///   - spacing: The space between each chart bar.
61 |     ///   - limitWidth: Limits the with of the bar if ``FLBarPlotView/shouldScroll`` is set to `false`.
62 |     public init(radius: Radius = .corners(corners: [.layerMinXMinYCorner, .layerMaxXMinYCorner], 3),
   |                                                      `- error: reference to member 'layerMinXMinYCorner' cannot be resolved without a contextual type
63 |                 width: CGFloat = 12,
64 |                 spacing: CGFloat = 7,
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift:62:76: error: reference to member 'layerMaxXMinYCorner' cannot be resolved without a contextual type
60 |     ///   - spacing: The space between each chart bar.
61 |     ///   - limitWidth: Limits the with of the bar if ``FLBarPlotView/shouldScroll`` is set to `false`.
62 |     public init(radius: Radius = .corners(corners: [.layerMinXMinYCorner, .layerMaxXMinYCorner], 3),
   |                                                                            `- error: reference to member 'layerMaxXMinYCorner' cannot be resolved without a contextual type
63 |                 width: CGFloat = 12,
64 |                 spacing: CGFloat = 7,
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/HighlightedView.swift:12:34: error: cannot find type 'UIView' in scope
10 |
11 | /// Implements ``HighlightedView`` to create a custom HighlightedView.
12 | public protocol HighlightedView: UIView {
   |                                  `- error: cannot find type 'UIView' in scope
13 |
14 |     /// The value of the bar currently highlighted.
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:147:27: warning: static property 'lightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
145 |
146 |         public static let green = FLColor(startColor: UIColor(hex: "0BCDF7"), endColor: UIColor(hex: "A2FEAE"))
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
    |                           |- warning: static property 'lightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'lightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLChart.swift:10:29: error: cannot find type 'UIView' in scope
  8 | import UIKit
  9 |
 10 | public final class FLChart: UIView, FLStylable, MutableCardableChart {
    |                             `- error: cannot find type 'UIView' in scope
 11 |
 12 |     public enum PlotType {
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/ProfessionalCurveLine.swift:30:24: warning: static property 'smoothness' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 28 | class ProfessionalCurveLine {
 29 |
 30 |     private static var smoothness: CGFloat = 0.1
    |                        |- warning: static property 'smoothness' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'smoothness' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'smoothness' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |     public static func quadCurvedPath(data: [CGFloat], smoothness: CGFloat = 0.1, in rect: CGRect, showPoints: Bool = false) -> UIBezierPath {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift:10:46: error: cannot find type 'CAAnimation' in scope
 8 | import UIKit
 9 |
10 | public typealias CAAnimationBlockCallback = (CAAnimation, Bool) -> ()
   |                                              `- error: cannot find type 'CAAnimation' in scope
11 |
12 | public class CAAnimationBlockCallbackDelegate: NSObject, CAAnimationDelegate {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift:17:42: error: cannot find type 'CAAnimation' in scope
15 |    var onCompleteCallback: CAAnimationBlockCallback?
16 |
17 |    public func animationDidStart(_ anim: CAAnimation) {
   |                                          `- error: cannot find type 'CAAnimation' in scope
18 |       if let startHandler = onStartCallback {
19 |          startHandler(anim, true)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift:23:41: error: cannot find type 'CAAnimation' in scope
21 |    }
22 |
23 |    public func animationDidStop(_ anim: CAAnimation, finished flag: Bool) {
   |                                         `- error: cannot find type 'CAAnimation' in scope
24 |       if let completionHandler = onCompleteCallback {
25 |          completionHandler(anim, flag);
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift:12:58: error: cannot find type 'CAAnimationDelegate' in scope
10 | public typealias CAAnimationBlockCallback = (CAAnimation, Bool) -> ()
11 |
12 | public class CAAnimationBlockCallbackDelegate: NSObject, CAAnimationDelegate {
   |                                                          `- error: cannot find type 'CAAnimationDelegate' in scope
13 |
14 |    var onStartCallback: CAAnimationBlockCallback?
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift:30:18: error: cannot find type 'CAAnimation' in scope
28 | }
29 |
30 | public extension CAAnimation {
   |                  `- error: cannot find type 'CAAnimation' in scope
31 |
32 |    // See if there is already a CAAnimationDelegate handling this animation
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Chart+XT.swift:84:18: error: cannot find type 'UIViewController' in scope
 82 | }
 83 |
 84 | public extension UIViewController {
    |                  `- error: cannot find type 'UIViewController' in scope
 85 |
 86 |     func runOnMain(after interval: TimeInterval, execute work: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Chart+XT.swift:97:11: error: cannot find type 'UIView' in scope
 95 | }
 96 |
 97 | extension UIView {
    |           `- error: cannot find type 'UIView' in scope
 98 |
 99 |     var intrinsicWidth: CGFloat {
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Chart+XT.swift:129:11: error: cannot find type 'UISpringTimingParameters' in scope
127 | }
128 |
129 | extension UISpringTimingParameters {
    |           `- error: cannot find type 'UISpringTimingParameters' in scope
130 |
131 |     /// A design-friendly way to create a spring timing curve.
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:100:51: error: cannot find type 'CAGradientLayer' in scope
 98 |     // MARK: - Methods
 99 |
100 |     public func gradientLayer(in rect: CGRect) -> CAGradientLayer {
    |                                                   `- error: cannot find type 'CAGradientLayer' in scope
101 |         let gradientLayer = CAGradientLayer()
102 |         gradientLayer.colors = cgColors
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:117:16: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
115 | public extension FLColor {
116 |
117 |     static let clear = FLColor(.clear)
    |                |- warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'clear' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |     static let white = UIColor(named: "white", in: bundle, compatibleWith: nil) ?? .white
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:119:35: error: extra arguments at positions #2, #3 in call
117 |     static let clear = FLColor(.clear)
118 |     static let white = UIColor(named: "white", in: bundle, compatibleWith: nil) ?? .white
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
    |                                   `- error: extra arguments at positions #2, #3 in call
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
UIKit.UIColor:3:30: note: 'init(named:)' declared here
1 | extension UIColor {
2 |     @available(watchOS 4.0, *)
3 |     public /*not inherited*/ init?(named name: String)
  |                              `- note: 'init(named:)' declared here
4 |     @available(watchOS 4.0, *)
5 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:119:85: error: 'nil' requires a contextual type
117 |     static let clear = FLColor(.clear)
118 |     static let white = UIColor(named: "white", in: bundle, compatibleWith: nil) ?? .white
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
    |                                                                                     `- error: 'nil' requires a contextual type
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:120:16: warning: static property 'mediumGray' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
118 |     static let white = UIColor(named: "white", in: bundle, compatibleWith: nil) ?? .white
119 |     static let lightGray = UIColor(named: "light gray", in: bundle, compatibleWith: nil) ?? backupLightGray
120 |     static let mediumGray = FLColor(hex: "A7A6A8")
    |                |- warning: static property 'mediumGray' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'mediumGray' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:123:16: warning: static property 'mintGreen' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
121 |     static let darkGray = UIColor(named: "dark gray", in: bundle, compatibleWith: nil) ?? backupDarkGray
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
    |                |- warning: static property 'mintGreen' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'mintGreen' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     static let green = FLColor(hex: "72BF82")
125 |     static let dusk = FLColor(hex: "E1614C")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:124:16: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
122 |     static let black = UIColor(named: "black", in: bundle, compatibleWith: nil) ?? .black
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
124 |     static let green = FLColor(hex: "72BF82")
    |                |- warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |     static let dusk = FLColor(hex: "E1614C")
126 |     static let orange = FLColor(hex: "FF782C")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:125:16: warning: static property 'dusk' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
123 |     static let mintGreen = FLColor(hex: "E2FAE7")
124 |     static let green = FLColor(hex: "72BF82")
125 |     static let dusk = FLColor(hex: "E1614C")
    |                |- warning: static property 'dusk' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'dusk' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |     static let orange = FLColor(hex: "FF782C")
127 |     static let red = FLColor(hex: "EC2301")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:126:16: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
124 |     static let green = FLColor(hex: "72BF82")
125 |     static let dusk = FLColor(hex: "E1614C")
126 |     static let orange = FLColor(hex: "FF782C")
    |                |- warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     static let red = FLColor(hex: "EC2301")
128 |     static let fuchsia = FLColor(hex: "FF57A6")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:127:16: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
125 |     static let dusk = FLColor(hex: "E1614C")
126 |     static let orange = FLColor(hex: "FF782C")
127 |     static let red = FLColor(hex: "EC2301")
    |                |- warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'red' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     static let fuchsia = FLColor(hex: "FF57A6")
129 |     static let purple = FLColor(hex: "7B75FF")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:128:16: warning: static property 'fuchsia' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
126 |     static let orange = FLColor(hex: "FF782C")
127 |     static let red = FLColor(hex: "EC2301")
128 |     static let fuchsia = FLColor(hex: "FF57A6")
    |                |- warning: static property 'fuchsia' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'fuchsia' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |     static let purple = FLColor(hex: "7B75FF")
130 |     static let cyan = FLColor(hex: "6FEAFF")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:129:16: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
127 |     static let red = FLColor(hex: "EC2301")
128 |     static let fuchsia = FLColor(hex: "FF57A6")
129 |     static let purple = FLColor(hex: "7B75FF")
    |                |- warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     static let cyan = FLColor(hex: "6FEAFF")
131 |     static let lightBlue = FLColor(hex: "C2E8FF")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:130:16: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
128 |     static let fuchsia = FLColor(hex: "FF57A6")
129 |     static let purple = FLColor(hex: "7B75FF")
130 |     static let cyan = FLColor(hex: "6FEAFF")
    |                |- warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'cyan' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |     static let lightBlue = FLColor(hex: "C2E8FF")
132 |     static let blue = FLColor(hex: "4EBCFF")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:131:16: warning: static property 'lightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
129 |     static let purple = FLColor(hex: "7B75FF")
130 |     static let cyan = FLColor(hex: "6FEAFF")
131 |     static let lightBlue = FLColor(hex: "C2E8FF")
    |                |- warning: static property 'lightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'lightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 |     static let blue = FLColor(hex: "4EBCFF")
133 |     static let seaBlue = FLColor(hex: "4266E8")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:132:16: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
130 |     static let cyan = FLColor(hex: "6FEAFF")
131 |     static let lightBlue = FLColor(hex: "C2E8FF")
132 |     static let blue = FLColor(hex: "4EBCFF")
    |                |- warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'blue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |     static let seaBlue = FLColor(hex: "4266E8")
134 |     static let darkBlue = FLColor(hex: "1B205E")
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:133:16: warning: static property 'seaBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
131 |     static let lightBlue = FLColor(hex: "C2E8FF")
132 |     static let blue = FLColor(hex: "4EBCFF")
133 |     static let seaBlue = FLColor(hex: "4266E8")
    |                |- warning: static property 'seaBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'seaBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |     static let darkBlue = FLColor(hex: "1B205E")
135 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:134:16: warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
132 |     static let blue = FLColor(hex: "4EBCFF")
133 |     static let seaBlue = FLColor(hex: "4266E8")
134 |     static let darkBlue = FLColor(hex: "1B205E")
    |                |- warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'darkBlue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |
136 |     static func uiColor(_ uicolor: UIColor) -> FLColor {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:146:27: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
144 |     enum Gradient {
145 |
146 |         public static let green = FLColor(startColor: UIColor(hex: "0BCDF7"), endColor: UIColor(hex: "A2FEAE"))
    |                           |- warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:148:27: warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
146 |         public static let green = FLColor(startColor: UIColor(hex: "0BCDF7"), endColor: UIColor(hex: "A2FEAE"))
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
    |                           |- warning: static property 'darkBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'darkBlue' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:149:27: warning: static property 'blueClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
147 |         public static let lightBlue = FLColor(startColor: UIColor(hex: "C2E8FF"), endColor: UIColor(hex: "C2E8FF").withAlphaComponent(0))
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
    |                           |- warning: static property 'blueClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'blueClear' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:150:27: warning: static property 'purpleLightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
148 |         public static let darkBlue = FLColor(startColor: FLColor.darkBlue.mainColor, endColor: seaBlue.mainColor)
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
    |                           |- warning: static property 'purpleLightBlue' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'purpleLightBlue' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:151:27: warning: static property 'darkPurple' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
149 |         public static let blueClear = FLColor(startColor: blue.mainColor.withAlphaComponent(0.5), endColor: seaBlue.mainColor.withAlphaComponent(0))
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
    |                           |- warning: static property 'darkPurple' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'darkPurple' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:152:27: warning: static property 'darkPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
150 |         public static let purpleLightBlue = FLColor(startColor: UIColor(hex: "8C00FF"), endColor: UIColor(hex: "4ABBFB"))
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
    |                           |- warning: static property 'darkPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'darkPink' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:153:27: warning: static property 'neonPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
151 |         public static let darkPurple = FLColor(startColor: UIColor(hex: "741DF4"), endColor: UIColor(hex: "C501B0"))
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
    |                           |- warning: static property 'neonPink' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'neonPink' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:154:27: warning: static property 'purpleClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
152 |         public static let darkPink = FLColor(startColor: UIColor(hex: "BC05AF"), endColor: UIColor(hex: "FF1378"))
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
    |                           |- warning: static property 'purpleClear' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'purpleClear' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
156 |         public static let sunset = FLColor(startColor: UIColor(hex: "FF8E2D"), endColor: UIColor(hex: "FF4E7A"))
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:155:27: warning: static property 'purpleCyan' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
153 |         public static let neonPink = FLColor(startColor: UIColor(hex: "FE019A"), endColor: UIColor(hex: "FE0BF4"))
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
    |                           |- warning: static property 'purpleCyan' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'purpleCyan' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         public static let sunset = FLColor(startColor: UIColor(hex: "FF8E2D"), endColor: UIColor(hex: "FF4E7A"))
157 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift:156:27: warning: static property 'sunset' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | public class FLColor {
    |              `- note: class 'FLColor' does not conform to the 'Sendable' protocol
 12 |
 13 |     public let colors: [UIColor]
    :
154 |         public static let purpleClear = FLColor(startColor: purple.mainColor, endColor: purple.mainColor.withAlphaComponent(0.2))
155 |         public static let purpleCyan = FLColor(startColor: purple.mainColor, endColor: UIColor(hex: "7BD1FC"))
156 |         public static let sunset = FLColor(startColor: UIColor(hex: "FF8E2D"), endColor: UIColor(hex: "FF4E7A"))
    |                           |- warning: static property 'sunset' is not concurrency-safe because non-'Sendable' type 'FLColor' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'sunset' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     }
158 | }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift:12:26: error: method does not override any method from its superclass
10 | public class FLIntrinsicCollectionView: UICollectionView {
11 |
12 |     public override func layoutSubviews() {
   |                          `- error: method does not override any method from its superclass
13 |         super.layoutSubviews()
14 |         if bounds.size != intrinsicContentSize {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift:19:25: error: property does not override any property from its superclass
17 |     }
18 |
19 |     public override var intrinsicContentSize: CGSize {
   |                         `- error: property does not override any property from its superclass
20 |         self.contentSize
21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift:10:41: error: cannot find type 'UICollectionView' in scope
 8 | import UIKit
 9 |
10 | public class FLIntrinsicCollectionView: UICollectionView {
   |                                         `- error: cannot find type 'UICollectionView' in scope
11 |
12 |     public override func layoutSubviews() {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift:52:32: error: cannot find type 'UIView' in scope
50 |     /// Add an ``FLShadow`` to a specifc `UIView`.
51 |     /// - Parameter view: The view to which apply the shadow.
52 |     public func apply(to view: UIView) {
   |                                `- error: cannot find type 'UIView' in scope
53 |         view.layer.shadowColor = color.cgColor
54 |         view.layer.shadowRadius = radius
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift:24:11: error: cannot find type 'UILayoutPriority' in scope
22 | }
23 |
24 | extension UILayoutPriority {
   |           `- error: cannot find type 'UILayoutPriority' in scope
25 |     static var almostRequired: UILayoutPriority {
26 |         return .required - 1
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift:30:11: error: cannot find type 'NSLayoutConstraint' in scope
28 | }
29 |
30 | extension NSLayoutConstraint {
   |           `- error: cannot find type 'NSLayoutConstraint' in scope
31 |     func withPriority(_ new: UILayoutPriority) -> NSLayoutConstraint {
32 |         priority = new
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift:37:11: error: cannot find type 'UIView' in scope
35 | }
36 |
37 | extension UIView {
   |           `- error: cannot find type 'UIView' in scope
38 |
39 |     @discardableResult
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:16:34: error: cannot find 'UILabel' in scope
14 |     public var dataValue: String?
15 |
16 |     private let dataValueLabel = UILabel()
   |                                  `- error: cannot find 'UILabel' in scope
17 |     private let unitOfMeasureLabel = UILabel()
18 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:17:38: error: cannot find 'UILabel' in scope
15 |
16 |     private let dataValueLabel = UILabel()
17 |     private let unitOfMeasureLabel = UILabel()
   |                                      `- error: cannot find 'UILabel' in scope
18 |
19 |     // MARK: - Init
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:21:14: error: initializer does not override a designated initializer from its superclass
19 |     // MARK: - Init
20 |
21 |     override init(frame: CGRect) {
   |              `- error: initializer does not override a designated initializer from its superclass
22 |         super.init(frame: frame)
23 |         backgroundColor = FLColor.lightGray
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:55:25: error: property does not override any property from its superclass
53 |     }
54 |
55 |     public override var intrinsicContentSize: CGSize {
   |                         `- error: property does not override any property from its superclass
56 |         CGSize(width: 10 + dataValueLabel.intrinsicWidth + 5 + unitOfMeasureLabel.intrinsicWidth + 10,
57 |                height: 10 + dataValueLabel.intrinsicHeight + 10)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift:12:40: error: cannot find type 'UIView' in scope
10 |
11 | /// A simple highlighted view that displays the value of the currently highlighted chart bar.
12 | public final class BarHighlightedView: UIView, HighlightedView {
   |                                        `- error: cannot find type 'UIView' in scope
13 |
14 |     public var dataValue: String?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:17:28: error: cannot find 'UIView' in scope
 15 |
 16 |     /// A mock view of the collection view used to calculate the position of the highlighted view.
 17 |     private let mockView = UIView()
    |                            `- error: cannot find 'UIView' in scope
 18 |
 19 |     internal var getChartData: (() -> FLChartData)?
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:25:36: error: cannot find type 'UIView' in scope
 23 |
 24 |     /// The line that connects the highlighted view to the chart bar.
 25 |     private var lineIndicatorView: UIView?
    |                                    `- error: cannot find type 'UIView' in scope
 26 |
 27 |     /// The configuration of the chart
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:35:33: error: cannot find 'UIView' in scope
 33 |             guard highlightedView != nil else { return }
 34 |
 35 |             lineIndicatorView = UIView()
    |                                 `- error: cannot find 'UIView' in scope
 36 |             configureHighlightView()
 37 |             configureLogTapGesture()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:83:49: error: cannot find type 'UIPanGestureRecognizer' in scope
 81 |     // MARK: - Gestures
 82 |
 83 |     @objc private func didLongTap(_ panGesture: UIPanGestureRecognizer) {
    |                                                 `- error: cannot find type 'UIPanGestureRecognizer' in scope
 84 |         let location: CGPoint = panGesture.location(in: collectionView)
 85 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:42:21: error: cannot find type 'UICollectionViewDataSource' in scope
40 | }
41 |
42 | extension FLLegend: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
   |                     `- error: cannot find type 'UICollectionViewDataSource' in scope
43 |
44 |     public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:42:49: error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
40 | }
41 |
42 | extension FLLegend: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
   |                                                 `- error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
43 |
44 |     public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:44:50: error: cannot find type 'UICollectionView' in scope
42 | extension FLLegend: UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
43 |
44 |     public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
45 |         return keys.count
46 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:48:107: error: cannot find type 'UICollectionViewCell' in scope
46 |     }
47 |
48 |     public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
   |                                                                                                           `- error: cannot find type 'UICollectionViewCell' in scope
49 |         guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLLegendKeyCell.identifier, for: indexPath) as? FLLegendKeyCell else { return UICollectionViewCell() }
50 |         let key = keys[indexPath.item]
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:48:50: error: cannot find type 'UICollectionView' in scope
46 |     }
47 |
48 |     public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
49 |         guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLLegendKeyCell.identifier, for: indexPath) as? FLLegendKeyCell else { return UICollectionViewCell() }
50 |         let key = keys[indexPath.item]
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:55:50: error: cannot find type 'UICollectionView' in scope
53 |     }
54 |
55 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
56 |         return CGSize(width: maxCellWidth + 15 + 5 + 5, height: 15)
57 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:55:97: error: cannot find type 'UICollectionViewLayout' in scope
53 |     }
54 |
55 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
   |                                                                                                 `- error: cannot find type 'UICollectionViewLayout' in scope
56 |         return CGSize(width: maxCellWidth + 15 + 5 + 5, height: 15)
57 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:59:50: error: cannot find type 'UICollectionView' in scope
57 |     }
58 |
59 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
60 |         return 10
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:59:97: error: cannot find type 'UICollectionViewLayout' in scope
57 |     }
58 |
59 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
   |                                                                                                 `- error: cannot find type 'UICollectionViewLayout' in scope
60 |         return 10
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:63:50: error: cannot find type 'UICollectionView' in scope
61 |     }
62 |
63 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
   |                                                  `- error: cannot find type 'UICollectionView' in scope
64 |         return 10
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift:63:97: error: cannot find type 'UICollectionViewLayout' in scope
61 |     }
62 |
63 |     public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
   |                                                                                                 `- error: cannot find type 'UICollectionViewLayout' in scope
64 |         return 10
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:10:24: error: cannot find type 'UICollectionViewCell' in scope
 8 | import UIKit
 9 |
10 | class FLLegendKeyCell: UICollectionViewCell {
   |                        `- error: cannot find type 'UICollectionViewCell' in scope
11 |
12 |     public static let identifier = "FLLegendKeyCell"
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:14:30: error: cannot find 'UIView' in scope
12 |     public static let identifier = "FLLegendKeyCell"
13 |
14 |     private let squareView = UIView()
   |                              `- error: cannot find 'UIView' in scope
15 |     private let keyLabel = UILabel()
16 |
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:15:28: error: cannot find 'UILabel' in scope
13 |
14 |     private let squareView = UIView()
15 |     private let keyLabel = UILabel()
   |                            `- error: cannot find 'UILabel' in scope
16 |
17 |     override init(frame: CGRect) {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift:17:14: error: initializer does not override a designated initializer from its superclass
15 |     private let keyLabel = UILabel()
16 |
17 |     override init(frame: CGRect) {
   |              `- error: initializer does not override a designated initializer from its superclass
18 |         super.init(frame: frame)
19 |         addSubview(squareView)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift:25:29: error: cannot find type 'UIView' in scope
23 |         case corners(corners: CACornerMask, CGFloat)
24 |
25 |         func apply(to view: UIView, shorterEdge: CGFloat) {
   |                             `- error: cannot find type 'UIView' in scope
26 |             switch self {
27 |             case .none:
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift:66:26: error: method does not override any method from its superclass
 64 |     }
 65 |
 66 |     public override func draw(_ rect: CGRect) {
    |                          `- error: method does not override any method from its superclass
 67 |         super.draw(rect)
 68 |         for subview in subviews where subview is SliceShape {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift:10:32: error: cannot find type 'UIView' in scope
  8 | import UIKit
  9 |
 10 | public final class FLPieChart: UIView, MutableCardableChart {
    |                                `- error: cannot find type 'UIView' in scope
 11 |
 12 |     internal var border: FLPieBorder = .full
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift:10:19: error: cannot find type 'UIView' in scope
 8 | import UIKit
 9 |
10 | class SliceShape: UIView {
   |                   `- error: cannot find type 'UIView' in scope
11 |
12 |     var data: FLPiePlotable
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift:13:30: error: cannot find 'CAShapeLayer' in scope
11 |
12 |     var data: FLPiePlotable
13 |     private let shapeLayer = CAShapeLayer()
   |                              `- error: cannot find 'CAShapeLayer' in scope
14 |     private var animationDuration: TimeInterval = 0.75
15 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift:63:54: error: cannot find type 'CABasicAnimation' in scope
61 |     }
62 |
63 |     private func animate(_ name: String, configure: (CABasicAnimation) -> Void) {
   |                                                      `- error: cannot find type 'CABasicAnimation' in scope
64 |         let animation = CABasicAnimation(keyPath: name)
65 |         animation.duration = animationDuration
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:12:37: error: cannot find type 'UIView' in scope
 10 | /// A bar chart that displays one or more bars.
 11 | /// It takes a ``ChartBar`` in the initializer that allows to provide a custom bar cell.
 12 | internal final class FLBarPlotView: UIView, FLPlotView {
    |                                     `- error: cannot find type 'UIView' in scope
 13 |
 14 |     private let collectionView = HighlightingCollectionView()
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:14:61: error: missing argument for parameter 'frame' in call
 12 | internal final class FLBarPlotView: UIView, FLPlotView {
 13 |
 14 |     private let collectionView = HighlightingCollectionView()
    |                                                             `- error: missing argument for parameter 'frame' in call
 15 |
 16 |     /// The configuration of the chart.
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift:45:14: note: 'init(frame:)' declared here
 43 |     // MARK: - Init
 44 |
 45 |     override init(frame: CGRect) {
    |              `- note: 'init(frame:)' declared here
 46 |         super.init(frame: frame)
 47 |         insertSubview(mockView, belowSubview: collectionView)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:105:52: error: cannot find type 'UICollectionView' in scope
103 | extension FLBarPlotView: UICollectionViewDataSource {
104 |
105 |     internal func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
106 |         return chartData.dataEntries.count
107 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:109:109: error: cannot find type 'UICollectionViewCell' in scope
107 |     }
108 |
109 |     internal func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    |                                                                                                             `- error: cannot find type 'UICollectionViewCell' in scope
110 |         let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLChartBarCell.identifier, for: indexPath) as! FLChartBarCell
111 |         cell.config = config
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:109:52: error: cannot find type 'UICollectionView' in scope
107 |     }
108 |
109 |     internal func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
110 |         let cell = collectionView.dequeueReusableCell(withReuseIdentifier: FLChartBarCell.identifier, for: indexPath) as! FLChartBarCell
111 |         cell.config = config
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:146:52: error: cannot find type 'UICollectionView' in scope
144 | extension FLBarPlotView: UICollectionViewDelegateFlowLayout {
145 |
146 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
147 |         if shouldScroll {
148 |             return CGSize(width: cellWidth, height: collectionView.frame.height)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:146:99: error: cannot find type 'UICollectionViewLayout' in scope
144 | extension FLBarPlotView: UICollectionViewDelegateFlowLayout {
145 |
146 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    |                                                                                                   `- error: cannot find type 'UICollectionViewLayout' in scope
147 |         if shouldScroll {
148 |             return CGSize(width: cellWidth, height: collectionView.frame.height)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:161:52: error: cannot find type 'UICollectionView' in scope
159 |     }
160 |
161 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
162 |         return 0
163 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:161:99: error: cannot find type 'UICollectionViewLayout' in scope
159 |     }
160 |
161 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
    |                                                                                                   `- error: cannot find type 'UICollectionViewLayout' in scope
162 |         return 0
163 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:165:52: error: cannot find type 'UICollectionView' in scope
163 |     }
164 |
165 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
    |                                                    `- error: cannot find type 'UICollectionView' in scope
166 |         return 0
167 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:165:99: error: cannot find type 'UICollectionViewLayout' in scope
163 |     }
164 |
165 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
    |                                                                                                   `- error: cannot find type 'UICollectionViewLayout' in scope
166 |         return 0
167 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:103:26: error: cannot find type 'UICollectionViewDataSource' in scope
101 | // MARK: - UICollectionView Data Source
102 |
103 | extension FLBarPlotView: UICollectionViewDataSource {
    |                          `- error: cannot find type 'UICollectionViewDataSource' in scope
104 |
105 |     internal func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift:144:26: error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
142 | // MARK: - UICollectionView Flow Layout
143 |
144 | extension FLBarPlotView: UICollectionViewDelegateFlowLayout {
    |                          `- error: cannot find type 'UICollectionViewDelegateFlowLayout' in scope
145 |
146 |     internal func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift:10:38: error: cannot find type 'UIView' in scope
  8 | import UIKit
  9 |
 10 | internal final class FLLinePlotView: UIView, FLPlotView {
    |                                      `- error: cannot find type 'UIView' in scope
 11 |
 12 |     private var chartData: FLChartData
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift:53:28: error: method does not override any method from its superclass
 51 |     }
 52 |
 53 |     internal override func layoutSubviews() {
    |                            `- error: method does not override any method from its superclass
 54 |         super.layoutSubviews()
 55 |         self.setNeedsDisplay()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift:58:28: error: method does not override any method from its superclass
 56 |     }
 57 |
 58 |     internal override func draw(_ rect: CGRect) {
    |                            `- error: method does not override any method from its superclass
 59 |         super.draw(rect)
 60 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift:26:41: error: cannot find type 'UIView' in scope
 24 | }
 25 |
 26 | internal final class FLScatterPlotView: UIView, FLPlotView {
    |                                         `- error: cannot find type 'UIView' in scope
 27 |
 28 |     private var chartData: FLChartData
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift:55:28: error: method does not override any method from its superclass
 53 |     }
 54 |
 55 |     internal override func layoutSubviews() {
    |                            `- error: method does not override any method from its superclass
 56 |         super.layoutSubviews()
 57 |         self.setNeedsDisplay()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift:60:28: error: method does not override any method from its superclass
 58 |     }
 59 |
 60 |     internal override func draw(_ rect: CGRect) {
    |                            `- error: method does not override any method from its superclass
 61 |         super.draw(rect)
 62 |
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift:113:26: error: method does not override any method from its superclass
111 |     }
112 |
113 |     public override func draw(_ rect: CGRect) {
    |                          `- error: method does not override any method from its superclass
114 |         super.draw(rect)
115 |         guard let context = UIGraphicsGetCurrentContext() else { return }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift:12:34: error: cannot find type 'UIView' in scope
 10 |
 11 | /// A radar chart, or Kiviat chart.
 12 | public final class FLRadarChart: UIView, MutableCardableChart {
    |                                  `- error: cannot find type 'UIView' in scope
 13 |
 14 |     /// Whether to show the Y axis labels.
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:14:26: error: cannot find 'UICollectionView' in scope
12 | open class UnclippedTopCollectionView: UIView {
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
   |                          `- error: cannot find 'UICollectionView' in scope
15 |
16 |     private let clipMask = CALayer()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:14:79: error: cannot find 'UICollectionViewFlowLayout' in scope
12 | open class UnclippedTopCollectionView: UIView {
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
   |                                                                               `- error: cannot find 'UICollectionViewFlowLayout' in scope
15 |
16 |     private let clipMask = CALayer()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:14:51: error: cannot infer contextual base in reference to member 'zero'
12 | open class UnclippedTopCollectionView: UIView {
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
   |                                                   `- error: cannot infer contextual base in reference to member 'zero'
15 |
16 |     private let clipMask = CALayer()
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:16:28: error: cannot find 'CALayer' in scope
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
15 |
16 |     private let clipMask = CALayer()
   |                            `- error: cannot find 'CALayer' in scope
17 |
18 |     var delegate: UICollectionViewDelegate? {
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:18:19: error: cannot find type 'UICollectionViewDelegate' in scope
16 |     private let clipMask = CALayer()
17 |
18 |     var delegate: UICollectionViewDelegate? {
   |                   `- error: cannot find type 'UICollectionViewDelegate' in scope
19 |         didSet { collectionView.delegate = delegate }
20 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:22:21: error: cannot find type 'UICollectionViewDataSource' in scope
20 |     }
21 |
22 |     var dataSource: UICollectionViewDataSource? {
   |                     `- error: cannot find type 'UICollectionViewDataSource' in scope
23 |         didSet { collectionView.dataSource = dataSource }
24 |     }
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:36:14: error: initializer does not override a designated initializer from its superclass
34 |     // MARK: - Init
35 |
36 |     override init(frame: CGRect) {
   |              `- error: initializer does not override a designated initializer from its superclass
37 |         super.init(frame: frame)
38 |         clipMask.backgroundColor = UIColor.black.cgColor
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:54:24: error: method does not override any method from its superclass
52 |     }
53 |
54 |     open override func layoutSubviews() {
   |                        `- error: method does not override any method from its superclass
55 |         super.layoutSubviews()
56 |         clipMask.frame = bounds.insetBy(dx: 0, dy: -50)
/Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift:12:40: error: cannot find type 'UIView' in scope
10 |
11 | /// A horizontal collection view with the top edge unclipped.
12 | open class UnclippedTopCollectionView: UIView {
   |                                        `- error: cannot find type 'UIView' in scope
13 |
14 |     let collectionView = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h:23:1: note: interface 'UIView' forward declared here
 21 | @class NSLayoutManager;
 22 | @class UIImage;
 23 | @class UIView;
    | `- note: interface 'UIView' forward declared here
 24 | @class NSFileWrapper;
 25 | @class NSTextAttachmentViewProvider;
SwiftCompile normal armv7k Compiling\ FLIntrinsicCollectionView.swift,\ FLShadow.swift,\ Formatters.swift,\ Label.swift,\ Labels.swift,\ NSLayoutConstraint+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Formatters.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Label.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Labels.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift (in target 'FLCharts' from project 'FLCharts')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Assets/Translation.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/ChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLChartBarCell.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLHorizontalMultipleValuesChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLMultipleValuesChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Bar/FLPlainChartBar.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/CardableChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCard.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCard/FLCardStyle.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLCartesianPlane.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/FLChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Aggregator.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/PlayfulCurveLine.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/BezierCurves/ProfessionalCurveLine.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/CAAnimationBlockCallbackDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Chart+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLColor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLIntrinsicCollectionView.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/FLShadow.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Formatters.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Label.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/Labels/Labels.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Helpers/NSLayoutConstraint+XT.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/BarHighlightedView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/ChartHighlightingDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightView/HighlightedView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/HighlightingCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegend.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Legend/FLLegendKeyCell.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAverageViewConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAxesLabelConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLAxesLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLBarConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLChartConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLDashedLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLLineConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLRadarGridConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLStylable.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Configurations/FLTickConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/FLChartData.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/FLDataSet.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/Models/PlotableData.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieBorder.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPieChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/FLPiePlotable.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PieChart/SliceShape.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLBarPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLLinePlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/PlotView/FLScatterPlotView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/RadarChart/FLRadarChart.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/UnclippedTopCollectionView.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/LineXAxis.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/ScatterXAxis.swift /Users/admin/builder/spi-builder-workspace/Sources/FLCharts/XAxisProvider/XAxisProvider.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/GeneratedAssetSymbols.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/supplementaryOutputs-19 -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name FLCharts -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.4 -target-sdk-name watchos10.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLIntrinsicCollectionView.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLShadow.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/Formatters.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/Label.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/Labels.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/NSLayoutConstraint+XT.o -index-unit-output-path /FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLIntrinsicCollectionView.o -index-unit-output-path /FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLShadow.o -index-unit-output-path /FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/Formatters.o -index-unit-output-path /FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/Label.o -index-unit-output-path /FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/Labels.o -index-unit-output-path /FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/NSLayoutConstraint+XT.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FLCharts_FLCharts.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts_FLCharts.build/empty-FLCharts_FLCharts.plist (in target 'FLCharts_FLCharts' from project 'FLCharts')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts_FLCharts.build/empty-FLCharts_FLCharts.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform watchos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts_FLCharts.build/assetcatalog_generated_info.plist -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/FLCharts_FLCharts.bundle/Info.plist
SwiftDriver\ Compilation\ Requirements FLCharts normal armv7k com.apple.xcode.tools.swift.compiler (in target 'FLCharts' from project 'FLCharts')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name FLCharts -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk -target armv7k-apple-watchos5.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-watchos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts-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/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts.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/FLCharts.build/Debug-watchos/FLCharts.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FLCharts.build/Debug-watchos/FLCharts.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/FLCharts.build/Debug-watchos/FLCharts.build/Objects-normal/armv7k/FLCharts-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FLCharts' from project 'FLCharts')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'FLCharts' from project 'FLCharts')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ FLCharts (in target 'FLCharts' from project 'FLCharts')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ FLCharts (in target 'FLCharts' from project 'FLCharts')
(2 failures)
BUILD FAILURE 6.0 watchOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.