The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of OrangeDesignSystem, reference qualif (117005), with Swift 6.1 for iOS using Xcode 16.3 on 4 Jun 2025 20:04:05 UTC.

Swift 6 data race errors: 9

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme OrangeDesignSystem-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/Color/UIColor+extension.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatter+extension.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:31:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = DateFormatterCache()
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:18:13: note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
final class DateFormatterCache {
            ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:31:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = DateFormatterCache()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = DateFormatterCache()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/LoadingState.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ODSBundle+extension.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ODSIcon.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ODSLogger.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ODSSFSafariViewWrapper.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ OrangeDesignSystem (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
EmitSwiftModule normal arm64 (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetSize+extension.swift:17:23: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var allCases: [ODSBottomSheetSize] = [
                      ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetSize+extension.swift:17:23: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
    public static var allCases: [ODSBottomSheetSize] = [
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetSize+extension.swift:17:23: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
    public static var allCases: [ODSBottomSheetSize] = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetSize+extension.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var allCases: [ODSBottomSheetSize] = [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: warning: static property 'lastResourceEtag' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: note: convert 'lastResourceEtag' to a 'let' constant to make 'Sendable' shared state immutable
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: note: add '@MainActor' to make static property 'lastResourceEtag' part of global actor 'MainActor'
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ODSTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultValue = ODSTheme()
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSTheme.swift:28:15: note: consider making struct 'ODSTheme' conform to the 'Sendable' protocol
public struct ODSTheme: Identifiable, Hashable {
              ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift:19:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static let defaultValue = ODSTheme()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultValue = ODSTheme()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/CachedAsyncImage.swift:372:15: warning: non-final class 'URLSessionTaskController' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
private class URLSessionTaskController: NSObject, URLSessionTaskDelegate {
              ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/CachedAsyncImage.swift:374:9: warning: stored property 'metrics' of 'Sendable'-conforming class 'URLSessionTaskController' is mutable; this is an error in the Swift 6 language mode
    var metrics: URLSessionTaskMetrics?
        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:31:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'DateFormatterCache' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = DateFormatterCache()
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:18:13: note: class 'DateFormatterCache' does not conform to the 'Sendable' protocol
final class DateFormatterCache {
            ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:31:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = DateFormatterCache()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/DateFormatterCache.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = DateFormatterCache()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ApplicationInformation.swift,\ Array+extension.swift,\ AboutListItems.swift,\ AccessibilityStatement.swift,\ AboutReleaseDescription.swift,\ AppNewsViewModel.swift,\ AppNewsViews.swift,\ PrivacyPolicyItem.swift,\ TermsOfServiceItem.swift,\ ODSAboutModule.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ApplicationInformation/ApplicationInformation.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/Array+extension.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AboutListItems.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AccessibilityStatement/AccessibilityStatement.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AboutReleaseDescription.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViewModel.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViews.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/TermsOfService/TermsOfServiceItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/ODSAboutModule.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ApplicationInformation/ApplicationInformation.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/Array+extension.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AboutListItems.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AccessibilityStatement/AccessibilityStatement.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AccessibilityStatement/AccessibilityStatement.swift:37:13: warning: call to main actor-isolated initializer 'init(xmlFileName:selectedTheme:url:useWebView:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            DeclarationView(xmlFileName: statementConfig.fileName,
            ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/accessibility-statement-lib-ios/Sources/DeclarationAccessibility/View/DeclarationView.swift:20:12: note: calls to initializer 'init(xmlFileName:selectedTheme:url:useWebView:)' from outside of its actor context are implicitly asynchronous
    public init(xmlFileName: String, selectedTheme: Theme, url: String, useWebView: Bool = false) {
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AboutReleaseDescription.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViewModel.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViews.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift:35:39: warning: call to main actor-isolated initializer 'init(policy:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        target = .destination(AnyView(AboutPrivacyPolicy(policy: policy)))
                                      ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift:39:8: note: calls to initializer 'init(policy:)' from outside of its actor context are implicitly asynchronous
struct AboutPrivacyPolicy: View {
       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift:39:8: note: main actor isolation inferred from conformance to protocol 'View'
struct AboutPrivacyPolicy: View {
       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift:35:39: warning: sending 'policy' risks causing data races; this is an error in the Swift 6 language mode
        target = .destination(AnyView(AboutPrivacyPolicy(policy: policy)))
                                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift:35:39: note: sending task-isolated 'policy' to main actor-isolated initializer 'init(policy:)' risks causing data races between main actor-isolated and task-isolated uses
        target = .destination(AnyView(AboutPrivacyPolicy(policy: policy)))
                                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/TermsOfService/TermsOfServiceItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/ODSAboutModule.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ODSFunctionalButton+Style.swift,\ ODSEmphasisButton.swift,\ ODSFunctionalButton.swift,\ ODSIconButton.swift,\ CardShadowModifier.swift,\ ODSCardDebugData.swift,\ ODSCardHorizontal.swift,\ ODSCardSmall.swift,\ ODSCardVerticalHeaderFirst.swift,\ ODSCardVerticalImageFirst.swift,\ Chip.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/Internal/ODSFunctionalButton+Style.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/ODSEmphasisButton.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/ODSFunctionalButton.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/ODSIconButton.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/Internal/CardShadowModifier.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/Internal/ODSCardDebugData.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardHorizontal.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardSmall.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardVerticalHeaderFirst.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardVerticalImageFirst.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Internal/Chip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/Internal/ODSFunctionalButton+Style.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/ODSEmphasisButton.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/ODSFunctionalButton.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Buttons/ODSIconButton.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/Internal/CardShadowModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/Internal/ODSCardDebugData.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardHorizontal.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardSmall.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardVerticalHeaderFirst.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Cards/ODSCardVerticalImageFirst.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Internal/Chip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ODSEmptyStateView.swift,\ AppsPlusDTO.swift,\ AppsPlusRepository.swift,\ AppsPlusToMoreAppsMapper.swift,\ LocalAppsPlusRepository.swift,\ MoreAppsRepositoryProtocol.swift,\ MoreAppsService.swift,\ MoreAppsServiceBO.swift,\ MoreAppsServiceProtocol.swift,\ ODSMoreAppsModel.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/EmptyState/ODSEmptyStateView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusDTO.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusToMoreAppsMapper.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/LocalAppsPlusRepository.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/MoreAppsRepositoryProtocol.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsService.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsServiceBO.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsServiceProtocol.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsModel.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/EmptyState/ODSEmptyStateView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusDTO.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: warning: static property 'lastResourceEtag' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: note: convert 'lastResourceEtag' to a 'let' constant to make 'Sendable' shared state immutable
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: note: add '@MainActor' to make static property 'lastResourceEtag' part of global actor 'MainActor'
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift:33:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var lastResourceEtag: String? // Static here to prevent to make calling methods "mutating"
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusToMoreAppsMapper.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/LocalAppsPlusRepository.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Data/MoreAppsRepositoryProtocol.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsService.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsServiceBO.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsServiceProtocol.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsModel.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsModel.swift:66:50: warning: sending 'self.service' risks causing data races; this is an error in the Swift 6 language mode
                let appsList = try await service.availableAppsList()
                                         ~~~~~~~~^~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsModel.swift:66:50: note: sending main actor-isolated 'self.service' to nonisolated callee risks causing data races between nonisolated and main actor-isolated uses
                let appsList = try await service.availableAppsList()
                                                 ^
SwiftDriverJobDiscovery normal arm64 Compiling BottomSheet+SwipeToDismiss.swift, BottomSheet+TapToDismiss.swift, BottomSheet+Threshold.swift, BottomSheet.swift (in target 'BottomSheet' from project 'BottomSheet')
SwiftCompile normal arm64 Compiling\ ODSMoreAppsView.swift,\ ODSNavigationBarModifier.swift,\ ODSTabBarModifier.swift,\ ODSToolBarModifier.swift,\ ODSComponentsColors.swift,\ ODSCurrentTheme.swift,\ ODSTheme.swift,\ ODSThemeableView.swift,\ AccessibleModifiers.swift,\ Cache.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/Modifiers/ODSNavigationBarModifier.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/Modifiers/ODSTabBarModifier.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/Modifiers/ODSToolBarModifier.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSComponentsColors.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSTheme.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/View/ODSThemeableView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/AccessibleModifiers.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/Cache.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/Modifiers/ODSNavigationBarModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/Modifiers/ODSTabBarModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/Modifiers/ODSToolBarModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSComponentsColors.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift:19:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ODSTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultValue = ODSTheme()
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSTheme.swift:28:15: note: consider making struct 'ODSTheme' conform to the 'Sendable' protocol
public struct ODSTheme: Identifiable, Hashable {
              ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift:19:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static let defaultValue = ODSTheme()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSCurrentTheme.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultValue = ODSTheme()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/ODSTheme.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Theme/View/ODSThemeableView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/AccessibleModifiers.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/Cache.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BottomSheetView+KeyboardHeight.swift, BottomSheetView+SwitchPosition.swift, BottomSheetView.swift, DragGestureExtension.swift (in target 'BottomSheet' from project 'BottomSheet')
SwiftCompile normal arm64 Compiling\ ODSSpacing.swift,\ ODSAboutAppNewsItem.swift,\ ODSAboutLegalInformationItem.swift,\ ODSMoreAppsItem.swift,\ ODSAboutListItemConfiguration.swift,\ ODSAboutRateTheAppItem.swift,\ ODSAboutAccessibilityStatement.swift,\ ODSAboutApplicationInformation.swift,\ ODSAboutPricacyPolicy.swift,\ AboutErrorView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Spacing/ODSSpacing.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/AppNews/ODSAboutAppNewsItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/LegalInformation/ODSAboutLegalInformationItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/MoreApps/ODSMoreAppsItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/ODSAboutListItemConfiguration.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/RateTheApp/ODSAboutRateTheAppItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/ODSAboutAccessibilityStatement.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/ODSAboutApplicationInformation.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/ODSAboutPricacyPolicy.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/AboutErrorView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Spacing/ODSSpacing.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/AppNews/ODSAboutAppNewsItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/AppNews/ODSAboutAppNewsItem.swift:47:39: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        target = .destination(AnyView(AppNewsList(viewModel: AppNewsListViewModel(fromFile: path))))
                                      ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViews.swift:29:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
    init(viewModel: AppNewsListViewModel) {
    ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViews.swift:29:5: note: main actor isolation inferred from conformance to protocol 'View'
    init(viewModel: AppNewsListViewModel) {
    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/LegalInformation/ODSAboutLegalInformationItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/MoreApps/ODSMoreAppsItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/MoreApps/ODSMoreAppsItem.swift:50:27: warning: call to main actor-isolated initializer 'init(dataSource:flattenApps:cacheAppsIcons:enableHaptics:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let destination = ODSMoreAppsView(
                          ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsView.swift:46:12: note: calls to initializer 'init(dataSource:flattenApps:cacheAppsIcons:enableHaptics:)' from outside of its actor context are implicitly asynchronous
    public init(dataSource: ODSMoreAppsDataSource,
           ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsView.swift:46:12: note: main actor isolation inferred from conformance to protocol 'View'
    public init(dataSource: ODSMoreAppsDataSource,
           ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/MoreApps/ODSMoreAppsItem.swift:50:27: warning: sending 'dataSource' risks causing data races; this is an error in the Swift 6 language mode
        let destination = ODSMoreAppsView(
                          ^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/MoreApps/ODSMoreAppsItem.swift:50:27: note: sending task-isolated 'dataSource' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let destination = ODSMoreAppsView(
                          ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/ODSAboutListItemConfiguration.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/RateTheApp/ODSAboutRateTheAppItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/RateTheApp/ODSAboutRateTheAppItem.swift:46:49: warning: call to main actor-isolated instance method 'open(_:options:completionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        target = .action { UIApplication.shared.open(storeUrl) }
                                                ^
UIKit.UIApplication.open:3:24: note: calls to instance method 'open(_:options:completionHandler:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func open(_ url: URL, options: [UIApplication.OpenExternalURLOptionsKey : Any] = [:], completionHandler completion: (@MainActor @Sendable (Bool) -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/Items/RateTheApp/ODSAboutRateTheAppItem.swift:46:42: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        target = .action { UIApplication.shared.open(storeUrl) }
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
                                                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/ODSAboutAccessibilityStatement.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/ODSAboutApplicationInformation.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Configuration/ODSAboutPricacyPolicy.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Modules/About/Internal/AboutErrorView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BottomSheetConfiguration.swift, BottomSheetPosition.swift, BottomSheetWidth.swift, GeneratedAssetSymbols.swift (in target 'BottomSheet' from project 'BottomSheet')
SwiftCompile normal arm64 Compiling\ ODSListItem.swift,\ ODSSliderView.swift,\ ODSTextFieldStyle.swift,\ ODSToolBarIconContent.swift,\ ODSToolBarLabelContent.swift,\ ODSToolBar.swift,\ ODSColorDescription.swift,\ ODSInternalColor.swift,\ ODSFontsModifier.swift,\ ODSFontsStyle.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/ODSListItem.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Slider/ODSSliderView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/TextField/ODSTextFieldStyle.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/ToolBar/Internal/ODSToolBarIconContent.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/ToolBar/Internal/ODSToolBarLabelContent.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/ToolBar/ODSToolBar.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSInternalColor.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Fonts/ODSFontsModifier.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Fonts/ODSFontsStyle.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/ODSListItem.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Slider/ODSSliderView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/TextField/ODSTextFieldStyle.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/ToolBar/Internal/ODSToolBarIconContent.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/ToolBar/Internal/ODSToolBarLabelContent.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/ToolBar/ODSToolBar.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSInternalColor.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Fonts/ODSFontsModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Fonts/ODSFontsStyle.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BottomSheetView+Calculations.swift, BottomSheetView+DragIndicatorAction.swift, BottomSheetView+Gestures.swift, BottomSheetView+HelperViews.swift (in target 'BottomSheet' from project 'BottomSheet')
SwiftCompile normal arm64 Compiling\ ODSActionChip.swift,\ ODSChoiceChip.swift,\ ODSFilterChip.swift,\ ODSInputChip.swift,\ ODSChipPickerPlacement.swift,\ ODSChoiceChipPicker.swift,\ ODSFilterChipPicker.swift,\ ODSImage.swift,\ LeadingView.swift,\ TrailingView.swift,\ ODSLIstItemModifier.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSActionChip.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSChoiceChip.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSFilterChip.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSInputChip.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChipPickerPlacement.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Image/ODSImage.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/Internal/LeadingView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/Internal/TrailingView.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/ODSLIstItemModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSActionChip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSChoiceChip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSFilterChip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSInputChip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChipPickerPlacement.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:120:71: warning: capture of 'geo' with non-sendable type 'GeometryProxy' in a '@Sendable' closure
                                    if abs(width - dimension.width) > geo.size.width {
                                                                      ^
SwiftUICore.GeometryProxy:2:15: note: struct 'GeometryProxy' does not conform to the 'Sendable' protocol
public struct GeometryProxy {
              ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:125:40: warning: capture of 'chip' with non-sendable type 'ODSChoiceChip<Value>' in a '@Sendable' closure
                                    if chip.value == chips.last!.value {
                                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSChoiceChip.swift:26:20: note: generic class 'ODSChoiceChip' does not conform to the 'Sendable' protocol
public final class ODSChoiceChip<Value> where Value: Hashable {
                   ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:120:44: warning: reference to captured var 'width' in concurrently-executing code
                                    if abs(width - dimension.width) > geo.size.width {
                                           ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:121:41: warning: mutation of captured var 'width' in concurrently-executing code
                                        width = 0
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:122:41: warning: mutation of captured var 'height' in concurrently-executing code
                                        height -= dimension.height
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:124:50: warning: reference to captured var 'width' in concurrently-executing code
                                    let result = width
                                                 ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:125:54: warning: main actor-isolated property 'chips' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if chip.value == chips.last!.value {
                                                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:28:17: note: property declared here
    private let chips: [ODSChoiceChip<Value>]
                ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:126:41: warning: mutation of captured var 'width' in concurrently-executing code
                                        width = 0
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:128:41: warning: mutation of captured var 'width' in concurrently-executing code
                                        width -= dimension.width
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:134:40: warning: capture of 'chip' with non-sendable type 'ODSChoiceChip<Value>' in a '@Sendable' closure
                                    if chip.value == chips.last!.value {
                                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSChoiceChip.swift:26:20: note: generic class 'ODSChoiceChip' does not conform to the 'Sendable' protocol
public final class ODSChoiceChip<Value> where Value: Hashable {
                   ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:133:50: warning: reference to captured var 'height' in concurrently-executing code
                                    let result = height
                                                 ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:134:54: warning: main actor-isolated property 'chips' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if chip.value == chips.last!.value {
                                                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:28:17: note: property declared here
    private let chips: [ODSChoiceChip<Value>]
                ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift:135:41: warning: mutation of captured var 'height' in concurrently-executing code
                                        height = 0
                                        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:123:71: warning: capture of 'geo' with non-sendable type 'GeometryProxy' in a '@Sendable' closure
                                    if abs(width - dimension.width) > geo.size.width {
                                                                      ^
SwiftUICore.GeometryProxy:2:15: note: struct 'GeometryProxy' does not conform to the 'Sendable' protocol
public struct GeometryProxy {
              ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:128:40: warning: capture of 'chip' with non-sendable type 'ODSFilterChip<Value>' in a '@Sendable' closure
                                    if chip.value == chips.last!.value {
                                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSFilterChip.swift:25:20: note: generic class 'ODSFilterChip' does not conform to the 'Sendable' protocol
public final class ODSFilterChip<Value> where Value: Hashable {
                   ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:123:44: warning: reference to captured var 'width' in concurrently-executing code
                                    if abs(width - dimension.width) > geo.size.width {
                                           ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:124:41: warning: mutation of captured var 'width' in concurrently-executing code
                                        width = 0
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:125:41: warning: mutation of captured var 'height' in concurrently-executing code
                                        height -= dimension.height
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:127:50: warning: reference to captured var 'width' in concurrently-executing code
                                    let result = width
                                                 ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:128:54: warning: main actor-isolated property 'chips' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if chip.value == chips.last!.value {
                                                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:24:17: note: property declared here
    private let chips: [ODSFilterChip<Value>]
                ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:129:41: warning: mutation of captured var 'width' in concurrently-executing code
                                        width = 0
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:131:41: warning: mutation of captured var 'width' in concurrently-executing code
                                        width -= dimension.width
                                        ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:137:40: warning: capture of 'chip' with non-sendable type 'ODSFilterChip<Value>' in a '@Sendable' closure
                                    if chip.value == chips.last!.value {
                                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/ODSFilterChip.swift:25:20: note: generic class 'ODSFilterChip' does not conform to the 'Sendable' protocol
public final class ODSFilterChip<Value> where Value: Hashable {
                   ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:136:50: warning: reference to captured var 'height' in concurrently-executing code
                                    let result = height
                                                 ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:137:54: warning: main actor-isolated property 'chips' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                                    if chip.value == chips.last!.value {
                                                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:24:17: note: property declared here
    private let chips: [ODSFilterChip<Value>]
                ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift:138:41: warning: mutation of captured var 'height' in concurrently-executing code
                                        height = 0
                                        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Image/ODSImage.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/Internal/LeadingView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/Internal/TrailingView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Components/Lists/ODSLIstItemModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for OrangeDesignSystem (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftDriver\ Compilation\ Requirements OrangeDesignSystem normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OrangeDesignSystem -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem-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/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ODSSpacing.swift, ODSAboutAppNewsItem.swift, ODSAboutLegalInformationItem.swift, ODSMoreAppsItem.swift, ODSAboutListItemConfiguration.swift, ODSAboutRateTheAppItem.swift, ODSAboutAccessibilityStatement.swift, ODSAboutApplicationInformation.swift, ODSAboutPricacyPolicy.swift, AboutErrorView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 Compiling\ ReadSize.swift,\ ShareSheet.swift,\ StringsLocalization.swift,\ TabBar+readSize.swift,\ UIApplication+extension.swift,\ UserDefaultsWrapper.swift,\ VibrationsManager.swift,\ View+extensions.swift,\ WebView.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/StringsLocalization.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/TabBar+readSize.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/UIApplication+extension.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/UserDefaultsWrapper.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/View+extensions.swift /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/WebView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: CGSize = .zero
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: CGSize = .zero
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: CGSize = .zero
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ReadSize.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: CGSize = .zero
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:29:18: warning: call to main actor-isolated initializer 'init(activityItems:applicationActivities:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let av = UIActivityViewController(activityItems: items, applicationActivities: nil)
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h:31:1: note: calls to initializer 'init(activityItems:applicationActivities:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithActivityItems:(NSArray *)activityItems applicationActivities:(nullable NSArray<__kindof UIActivity *> *)applicationActivities NS_DESIGNATED_INITIALIZER;
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h:31:1: note: main actor isolation inferred from inheritance from class 'UIViewController'
- (instancetype)initWithActivityItems:(NSArray *)activityItems applicationActivities:(nullable NSArray<__kindof UIActivity *> *)applicationActivities NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:23:17: note: add '@MainActor' to make static method 'show(content:subject:url:)' part of global actor 'MainActor'
    static func show(content: String, subject: String = "", url: URL? = nil) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:30:49: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIApplication.shared.topViewController?.present(av, animated: true, completion: nil)
                                                ^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:23:17: note: add '@MainActor' to make static method 'show(content:subject:url:)' part of global actor 'MainActor'
    static func show(content: String, subject: String = "", url: URL? = nil) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:30:30: warning: main actor-isolated property 'topViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        UIApplication.shared.topViewController?.present(av, animated: true, completion: nil)
                             ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/UIApplication+extension.swift:21:16: note: property declared here
    public var topViewController: UIViewController? {
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:23:17: note: add '@MainActor' to make static method 'show(content:subject:url:)' part of global actor 'MainActor'
    static func show(content: String, subject: String = "", url: URL? = nil) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:30:23: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        UIApplication.shared.topViewController?.present(av, animated: true, completion: nil)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
                                                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/ShareSheet.swift:23:17: note: add '@MainActor' to make static method 'show(content:subject:url:)' part of global actor 'MainActor'
    static func show(content: String, subject: String = "", url: URL? = nil) {
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/StringsLocalization.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/TabBar+readSize.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/UIApplication+extension.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/UserDefaultsWrapper.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:23:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let generator = UINotificationFeedbackGenerator()
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h:21:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init API_DEPRECATED_WITH_REPLACEMENT("+feedbackGeneratorForView:", ios(10.0, API_TO_BE_DEPRECATED));
^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:22:17: note: add '@MainActor' to make static method 'success()' part of global actor 'MainActor'
    static func success() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:24:19: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        generator.notificationOccurred(.success)
                  ^
UIKit.UINotificationFeedbackGenerator.notificationOccurred:2:22: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
@MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)}
                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:22:17: note: add '@MainActor' to make static method 'success()' part of global actor 'MainActor'
    static func success() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:28:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let generator = UINotificationFeedbackGenerator()
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h:21:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init API_DEPRECATED_WITH_REPLACEMENT("+feedbackGeneratorForView:", ios(10.0, API_TO_BE_DEPRECATED));
^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:27:17: note: add '@MainActor' to make static method 'warning()' part of global actor 'MainActor'
    static func warning() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:29:19: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        generator.notificationOccurred(.warning)
                  ^
UIKit.UINotificationFeedbackGenerator.notificationOccurred:2:22: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
@MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)}
                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:27:17: note: add '@MainActor' to make static method 'warning()' part of global actor 'MainActor'
    static func warning() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:33:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let generator = UINotificationFeedbackGenerator()
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h:21:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init API_DEPRECATED_WITH_REPLACEMENT("+feedbackGeneratorForView:", ios(10.0, API_TO_BE_DEPRECATED));
^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:32:17: note: add '@MainActor' to make static method 'error()' part of global actor 'MainActor'
    static func error() {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:34:19: warning: call to main actor-isolated instance method 'notificationOccurred' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        generator.notificationOccurred(.error)
                  ^
UIKit.UINotificationFeedbackGenerator.notificationOccurred:2:22: note: calls to instance method 'notificationOccurred' from outside of its actor context are implicitly asynchronous
@MainActor open func notificationOccurred(_ notificationType: UINotificationFeedbackGenerator.FeedbackType)}
                     ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/VibrationsManager.swift:32:17: note: add '@MainActor' to make static method 'error()' part of global actor 'MainActor'
    static func error() {
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/View+extensions.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Utils/WebView.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/OrangeDesignSystem-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem-Swift.h (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/OrangeDesignSystem-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling ODSEmptyStateView.swift, AppsPlusDTO.swift, AppsPlusRepository.swift, AppsPlusToMoreAppsMapper.swift, LocalAppsPlusRepository.swift, MoreAppsRepositoryProtocol.swift, MoreAppsService.swift, MoreAppsServiceBO.swift, MoreAppsServiceProtocol.swift, ODSMoreAppsModel.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftmodule (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftdoc (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.abi.json (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftsourceinfo (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
GenerateAssetSymbols /Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/Resources/Assets.xcassets /Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/Resources/Color.xcassets (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool /Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/Resources/Assets.xcassets /Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/Resources/Color.xcassets --compile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos --output-format human-readable-text --notices --warnings --export-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/assetcatalog_dependencies --output-partial-info-plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/assetcatalog_generated_info.plist --compress-pngs --enable-on-demand-resources NO --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 15.0 --platform iphoneos --bundle-identifier spi-builder-workspace.OrangeTheme --generate-swift-asset-symbol-extensions NO --generate-swift-asset-symbols /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols.swift --generate-objc-asset-symbols /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols.h --generate-asset-symbol-index /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols-Index.plist
/* com.apple.actool.compilation-results */
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols-Index.plist
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols.h
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols.swift
GenerateAssetSymbols /Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/Resources/Assets.xcassets /Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/Resources/Color.xcassets (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool /Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/Resources/Assets.xcassets /Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/Resources/Color.xcassets --compile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos --output-format human-readable-text --notices --warnings --export-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/assetcatalog_dependencies --output-partial-info-plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/assetcatalog_generated_info.plist --compress-pngs --enable-on-demand-resources NO --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 15.0 --platform iphoneos --bundle-identifier spi-builder-workspace.InnovationCupTheme --generate-swift-asset-symbol-extensions NO --generate-swift-asset-symbols /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols.swift --generate-objc-asset-symbols /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols.h --generate-asset-symbol-index /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols-Index.plist
/* com.apple.actool.compilation-results */
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols-Index.plist
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols.h
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols.swift
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Flow.o (in target 'Flow' from project 'Flow')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftUI-Flow
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Flow.o
SwiftDriver OrangeTheme normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OrangeTheme -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DeclarationAccessibility.o (in target 'DeclarationAccessibility' from project 'DeclarationAccessibility')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/accessibility-statement-lib-ios
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DeclarationAccessibility.o
SwiftEmitModule normal arm64 Emitting\ module\ for\ OrangeTheme (in target 'OrangeTheme' from project 'OrangeDesignSystem')
EmitSwiftModule normal arm64 (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:273:16: warning: static property 'palette' is not concurrency-safe because non-'Sendable' type 'ODSColorPalette' (aka 'Array<ODSColorDecription>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift:17:15: note: struct 'ODSColorDecription' does not conform to the 'Sendable' protocol
public struct ODSColorDecription {
              ^
/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OrangeDesignSystem'
import OrangeDesignSystem
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:273:16: note: add '@MainActor' to make static property 'palette' part of global actor 'MainActor'
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:273:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ApplicationInformation.swift, Array+extension.swift, AboutListItems.swift, AccessibilityStatement.swift, AboutReleaseDescription.swift, AppNewsViewModel.swift, AppNewsViews.swift, PrivacyPolicyItem.swift, TermsOfServiceItem.swift, ODSAboutModule.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/resource_bundle_accessor.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/resource_bundle_accessor.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CachedAsyncImage.swift, Color+Extension.swift, UIColor+extension.swift, DateFormatter+extension.swift, DateFormatterCache.swift, LoadingState.swift, ODSBundle+extension.swift, ODSIcon.swift, ODSLogger.swift, ODSSFSafariViewWrapper.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 Compiling\ OrangeTheme.swift /Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:273:16: warning: static property 'palette' is not concurrency-safe because non-'Sendable' type 'ODSColorPalette' (aka 'Array<ODSColorDecription>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift:17:15: note: struct 'ODSColorDecription' does not conform to the 'Sendable' protocol
public struct ODSColorDecription {
              ^
/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OrangeDesignSystem'
import OrangeDesignSystem
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:273:16: note: add '@MainActor' to make static property 'palette' part of global actor 'MainActor'
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/OrangeTheme.swift:273:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ODSMoreAppsView.swift, ODSNavigationBarModifier.swift, ODSTabBarModifier.swift, ODSToolBarModifier.swift, ODSComponentsColors.swift, ODSCurrentTheme.swift, ODSTheme.swift, ODSThemeableView.swift, AccessibleModifiers.swift, Cache.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Emitting module for OrangeTheme (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftDriver\ Compilation\ Requirements OrangeTheme normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OrangeTheme -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver InnovationCupTheme normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InnovationCupTheme -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/OrangeTheme-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-Swift.h (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/OrangeTheme-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftmodule (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftdoc (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.abi.json (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftsourceinfo (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftEmitModule normal arm64 Emitting\ module\ for\ InnovationCupTheme (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
EmitSwiftModule normal arm64 (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:39:16: warning: static property 'palette' is not concurrency-safe because non-'Sendable' type 'ODSColorPalette' (aka 'Array<ODSColorDecription>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift:17:15: note: struct 'ODSColorDecription' does not conform to the 'Sendable' protocol
public struct ODSColorDecription {
              ^
/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OrangeDesignSystem'
import OrangeDesignSystem
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:39:16: note: add '@MainActor' to make static property 'palette' part of global actor 'MainActor'
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:39:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/resource_bundle_accessor.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/resource_bundle_accessor.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, ODSBanner.swift, BottomSheetHeader.swift, ODSBottomSheetExpandingModifier.swift, ODSBottomSheetSize+extension.swift, ODSBottomSheetStandardModifier.swift, ODSBottomSheetExpanding.swift, ODSBottomSheetStandard.swift, ODSButtonContent.swift, ODSButtonStyleLabel.swift, ODSEmphasisButton+Style.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 Compiling\ InnovationCupTheme.swift /Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:39:16: warning: static property 'palette' is not concurrency-safe because non-'Sendable' type 'ODSColorPalette' (aka 'Array<ODSColorDecription>') may have shared mutable state; this is an error in the Swift 6 language mode
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift:17:15: note: struct 'ODSColorDecription' does not conform to the 'Sendable' protocol
public struct ODSColorDecription {
              ^
/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:14:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'OrangeDesignSystem'
import OrangeDesignSystem
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:39:16: note: add '@MainActor' to make static property 'palette' part of global actor 'MainActor'
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/InnovationCupTheme/Sources/InnovationCupTheme/InnovationCupTheme.swift:39:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let palette: ODSColorPalette = Self.allCases.map { $0.colorDecription }
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling GeneratedAssetSymbols.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 Compiling\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Compiling ODSListItem.swift, ODSSliderView.swift, ODSTextFieldStyle.swift, ODSToolBarIconContent.swift, ODSToolBarLabelContent.swift, ODSToolBar.swift, ODSColorDescription.swift, ODSInternalColor.swift, ODSFontsModifier.swift, ODSFontsStyle.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Compiling ReadSize.swift, ShareSheet.swift, StringsLocalization.swift, TabBar+readSize.swift, UIApplication+extension.swift, UserDefaultsWrapper.swift, VibrationsManager.swift, View+extensions.swift, WebView.swift, GeneratedAssetSymbols.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Compiling OrangeTheme.swift (in target 'OrangeTheme' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Emitting module for InnovationCupTheme (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftDriver\ Compilation\ Requirements InnovationCupTheme normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InnovationCupTheme -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation OrangeTheme normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OrangeTheme -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/InnovationCupTheme-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-Swift.h (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/InnovationCupTheme-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftmodule (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.abi.json (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftdoc (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftsourceinfo (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling InnovationCupTheme.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Compiling ODSFunctionalButton+Style.swift, ODSEmphasisButton.swift, ODSFunctionalButton.swift, ODSIconButton.swift, CardShadowModifier.swift, ODSCardDebugData.swift, ODSCardHorizontal.swift, ODSCardSmall.swift, ODSCardVerticalHeaderFirst.swift, ODSCardVerticalImageFirst.swift, Chip.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftDriverJobDiscovery normal arm64 Compiling GeneratedAssetSymbols.swift (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
SwiftDriver\ Compilation InnovationCupTheme normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InnovationCupTheme -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.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/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ODSActionChip.swift, ODSChoiceChip.swift, ODSFilterChip.swift, ODSInputChip.swift, ODSChipPickerPlacement.swift, ODSChoiceChipPicker.swift, ODSFilterChipPicker.swift, ODSImage.swift, LeadingView.swift, TrailingView.swift, ODSLIstItemModifier.swift (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
SwiftDriver\ Compilation OrangeDesignSystem normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name OrangeDesignSystem -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem-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/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.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/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TimerAnimation.swift, UIScrollViewWrapper.swift, BundleExtension.swift, ColorExtension.swift (in target 'BottomSheet' from project 'BottomSheet')
SwiftDriver\ Compilation BottomSheet normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BottomSheet' from project 'BottomSheet')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BottomSheet -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet-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/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet.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/BottomSheet.build/Debug-iphoneos/BottomSheet.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.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/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BottomSheet.o normal (in target 'BottomSheet' from project 'BottomSheet')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/BottomSheet
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BottomSheet.o
ExtractAppIntentsMetadata (in target 'BottomSheet' from project 'BottomSheet')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/BottomSheet
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name BottomSheet --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier bottomsheet.BottomSheet --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BottomSheet.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BottomSheet.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/BottomSheet.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/BottomSheet.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BottomSheet.build/Debug-iphoneos/BottomSheet.build/Objects-normal/arm64/BottomSheet.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-04 13:04:04.232 appintentsmetadataprocessor[965:5617] Starting appintentsmetadataprocessor export
2025-06-04 13:04:04.267 appintentsmetadataprocessor[965:5617] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BottomSheet.o (in target 'BottomSheet' from project 'BottomSheet')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/BottomSheet
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BottomSheet.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.o normal (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.o
ExtractAppIntentsMetadata (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name OrangeDesignSystem --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.OrangeDesignSystem --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/OrangeDesignSystem.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/OrangeDesignSystem.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeDesignSystem.build/Objects-normal/arm64/OrangeDesignSystem.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-04 13:04:04.360 appintentsmetadataprocessor[968:5632] Starting appintentsmetadataprocessor export
2025-06-04 13:04:04.396 appintentsmetadataprocessor[968:5632] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.o (in target 'OrangeDesignSystem' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeDesignSystem.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.o normal (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.o normal (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.o
ExtractAppIntentsMetadata (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name InnovationCupTheme --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.InnovationCupTheme --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/InnovationCupTheme.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/InnovationCupTheme.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/InnovationCupTheme.build/Objects-normal/arm64/InnovationCupTheme.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-04 13:04:04.453 appintentsmetadataprocessor[973:5659] Starting appintentsmetadataprocessor export
2025-06-04 13:04:04.488 appintentsmetadataprocessor[973:5659] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name OrangeTheme --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.OrangeTheme --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/OrangeTheme.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/OrangeTheme.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OrangeDesignSystem.build/Debug-iphoneos/OrangeTheme.build/Objects-normal/arm64/OrangeTheme.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-04 13:04:04.453 appintentsmetadataprocessor[974:5660] Starting appintentsmetadataprocessor export
2025-06-04 13:04:04.487 appintentsmetadataprocessor[974:5660] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.o (in target 'OrangeTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OrangeTheme.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.o (in target 'InnovationCupTheme' from project 'OrangeDesignSystem')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InnovationCupTheme.o
** BUILD SUCCEEDED **
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "swiftui-flow",
      "requirement" : {
        "exact" : [
          "1.2.0"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tevelee/SwiftUI-Flow"
    },
    {
      "identity" : "bottomsheet",
      "requirement" : {
        "exact" : [
          "3.1.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/lucaszischka/BottomSheet"
    },
    {
      "identity" : "accessibility-statement-lib-ios",
      "requirement" : {
        "exact" : [
          "1.3.0"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Orange-OpenSource/accessibility-statement-lib-ios.git"
    }
  ],
  "manifest_display_name" : "OrangeDesignSystem",
  "name" : "OrangeDesignSystem",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "OrangeDesignSystem",
      "targets" : [
        "OrangeDesignSystem"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "OrangeTheme",
      "targets" : [
        "OrangeTheme"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "InnovationCupTheme",
      "targets" : [
        "InnovationCupTheme"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "OrangeTheme",
      "module_type" : "SwiftTarget",
      "name" : "OrangeTheme",
      "path" : "OrangeTheme/Sources",
      "product_memberships" : [
        "OrangeTheme"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/Resources/Assets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/OrangeTheme/Sources/OrangeTheme/Resources/Color.xcassets",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "OrangeTheme/OrangeTheme.swift"
      ],
      "target_dependencies" : [
        "OrangeDesignSystem"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OrangeDesignSystem",
      "module_type" : "SwiftTarget",
      "name" : "OrangeDesignSystem",
      "path" : "OrangeDesignSystem/Sources",
      "product_dependencies" : [
        "BottomSheet",
        "DeclarationAccessibility",
        "Flow"
      ],
      "product_memberships" : [
        "OrangeDesignSystem",
        "OrangeTheme",
        "InnovationCupTheme"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/OrangeDesignSystem/Sources/OrangeDesignSystem/Resources/Base.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "Base"
            }
          }
        }
      ],
      "sources" : [
        "OrangeDesignSystem/Components/Banner/ODSBanner.swift",
        "OrangeDesignSystem/Components/BottomSheet/Internal/BottomSheetHeader.swift",
        "OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetExpandingModifier.swift",
        "OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetSize+extension.swift",
        "OrangeDesignSystem/Components/BottomSheet/Internal/ODSBottomSheetStandardModifier.swift",
        "OrangeDesignSystem/Components/BottomSheet/ODSBottomSheetExpanding.swift",
        "OrangeDesignSystem/Components/BottomSheet/ODSBottomSheetStandard.swift",
        "OrangeDesignSystem/Components/Buttons/Internal/ODSButtonContent.swift",
        "OrangeDesignSystem/Components/Buttons/Internal/ODSButtonStyleLabel.swift",
        "OrangeDesignSystem/Components/Buttons/Internal/ODSEmphasisButton+Style.swift",
        "OrangeDesignSystem/Components/Buttons/Internal/ODSFunctionalButton+Style.swift",
        "OrangeDesignSystem/Components/Buttons/ODSEmphasisButton.swift",
        "OrangeDesignSystem/Components/Buttons/ODSFunctionalButton.swift",
        "OrangeDesignSystem/Components/Buttons/ODSIconButton.swift",
        "OrangeDesignSystem/Components/Cards/Internal/CardShadowModifier.swift",
        "OrangeDesignSystem/Components/Cards/Internal/ODSCardDebugData.swift",
        "OrangeDesignSystem/Components/Cards/ODSCardHorizontal.swift",
        "OrangeDesignSystem/Components/Cards/ODSCardSmall.swift",
        "OrangeDesignSystem/Components/Cards/ODSCardVerticalHeaderFirst.swift",
        "OrangeDesignSystem/Components/Cards/ODSCardVerticalImageFirst.swift",
        "OrangeDesignSystem/Components/Chips/Internal/Chip.swift",
        "OrangeDesignSystem/Components/Chips/ODSActionChip.swift",
        "OrangeDesignSystem/Components/Chips/ODSChoiceChip.swift",
        "OrangeDesignSystem/Components/Chips/ODSFilterChip.swift",
        "OrangeDesignSystem/Components/Chips/ODSInputChip.swift",
        "OrangeDesignSystem/Components/Chips/Pickers/ODSChipPickerPlacement.swift",
        "OrangeDesignSystem/Components/Chips/Pickers/ODSChoiceChipPicker.swift",
        "OrangeDesignSystem/Components/Chips/Pickers/ODSFilterChipPicker.swift",
        "OrangeDesignSystem/Components/Image/ODSImage.swift",
        "OrangeDesignSystem/Components/Lists/Internal/LeadingView.swift",
        "OrangeDesignSystem/Components/Lists/Internal/TrailingView.swift",
        "OrangeDesignSystem/Components/Lists/ODSLIstItemModifier.swift",
        "OrangeDesignSystem/Components/Lists/ODSListItem.swift",
        "OrangeDesignSystem/Components/Slider/ODSSliderView.swift",
        "OrangeDesignSystem/Components/TextField/ODSTextFieldStyle.swift",
        "OrangeDesignSystem/Components/ToolBar/Internal/ODSToolBarIconContent.swift",
        "OrangeDesignSystem/Components/ToolBar/Internal/ODSToolBarLabelContent.swift",
        "OrangeDesignSystem/Components/ToolBar/ODSToolBar.swift",
        "OrangeDesignSystem/Guidelines/Colors/ODSColorDescription.swift",
        "OrangeDesignSystem/Guidelines/Colors/ODSInternalColor.swift",
        "OrangeDesignSystem/Guidelines/Fonts/ODSFontsModifier.swift",
        "OrangeDesignSystem/Guidelines/Fonts/ODSFontsStyle.swift",
        "OrangeDesignSystem/Guidelines/Spacing/ODSSpacing.swift",
        "OrangeDesignSystem/Modules/About/Configuration/Items/AppNews/ODSAboutAppNewsItem.swift",
        "OrangeDesignSystem/Modules/About/Configuration/Items/LegalInformation/ODSAboutLegalInformationItem.swift",
        "OrangeDesignSystem/Modules/About/Configuration/Items/MoreApps/ODSMoreAppsItem.swift",
        "OrangeDesignSystem/Modules/About/Configuration/Items/ODSAboutListItemConfiguration.swift",
        "OrangeDesignSystem/Modules/About/Configuration/Items/RateTheApp/ODSAboutRateTheAppItem.swift",
        "OrangeDesignSystem/Modules/About/Configuration/ODSAboutAccessibilityStatement.swift",
        "OrangeDesignSystem/Modules/About/Configuration/ODSAboutApplicationInformation.swift",
        "OrangeDesignSystem/Modules/About/Configuration/ODSAboutPricacyPolicy.swift",
        "OrangeDesignSystem/Modules/About/Internal/AboutErrorView.swift",
        "OrangeDesignSystem/Modules/About/Internal/ApplicationInformation/ApplicationInformation.swift",
        "OrangeDesignSystem/Modules/About/Internal/Array+extension.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/AboutListItems.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/AccessibilityStatement/AccessibilityStatement.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AboutReleaseDescription.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViewModel.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/AppNews/AppNewsViews.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/PrivacyPolicy/PrivacyPolicyItem.swift",
        "OrangeDesignSystem/Modules/About/Internal/ListItems/TermsOfService/TermsOfServiceItem.swift",
        "OrangeDesignSystem/Modules/About/ODSAboutModule.swift",
        "OrangeDesignSystem/Modules/EmptyState/ODSEmptyStateView.swift",
        "OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusDTO.swift",
        "OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusRepository.swift",
        "OrangeDesignSystem/Modules/MoreApps/Data/AppsPlusToMoreAppsMapper.swift",
        "OrangeDesignSystem/Modules/MoreApps/Data/LocalAppsPlusRepository.swift",
        "OrangeDesignSystem/Modules/MoreApps/Data/MoreAppsRepositoryProtocol.swift",
        "OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsService.swift",
        "OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsServiceBO.swift",
        "OrangeDesignSystem/Modules/MoreApps/Domain/MoreAppsServiceProtocol.swift",
        "OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsModel.swift",
        "OrangeDesignSystem/Modules/MoreApps/ODSMoreAppsView.swift",
        "OrangeDesignSystem/Theme/Modifiers/ODSNavigationBarModifier.swift",
        "OrangeDesignSystem/Theme/Modifiers/ODSTabBarModifier.swift",
        "OrangeDesignSystem/Theme/Modifiers/ODSToolBarModifier.swift",
        "OrangeDesignSystem/Theme/ODSComponentsColors.swift",
        "OrangeDesignSystem/Theme/ODSCurrentTheme.swift",
        "OrangeDesignSystem/Theme/ODSTheme.swift",
        "OrangeDesignSystem/Theme/View/ODSThemeableView.swift",
        "OrangeDesignSystem/Utils/AccessibleModifiers.swift",
        "OrangeDesignSystem/Utils/Cache.swift",
        "OrangeDesignSystem/Utils/CachedAsyncImage.swift",
        "OrangeDesignSystem/Utils/Color/Color+Extension.swift",
        "OrangeDesignSystem/Utils/Color/UIColor+extension.swift",
        "OrangeDesignSystem/Utils/DateFormatter+extension.swift",
        "OrangeDesignSystem/Utils/DateFormatterCache.swift",
        "OrangeDesignSystem/Utils/LoadingState.swift",
        "OrangeDesignSystem/Utils/ODSBundle+extension.swift",
        "OrangeDesignSystem/Utils/ODSIcon.swift",
        "OrangeDesignSystem/Utils/ODSLogger.swift",
        "OrangeDesignSystem/Utils/ODSSFSafariViewWrapper.swift",
        "OrangeDesignSystem/Utils/ReadSize.swift",
        "OrangeDesignSystem/Utils/ShareSheet.swift",
        "OrangeDesignSystem/Utils/StringsLocalization.swift",
        "OrangeDesignSystem/Utils/TabBar+readSize.swift",
        "OrangeDesignSystem/Utils/UIApplication+extension.swift",
        "OrangeDesignSystem/Utils/UserDefaultsWrapper.swift",
        "OrangeDesignSystem/Utils/VibrationsManager.swift",
        "OrangeDesignSystem/Utils/View+extensions.swift",
        "OrangeDesignSystem/Utils/WebView.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "InnovationCupTheme",
      "module_type" : "SwiftTarget",
      "name" : "InnovationCupTheme",
      "path" : "InnovationCupTheme/Sources",
      "product_memberships" : [
        "InnovationCupTheme"
      ],
      "sources" : [
        "InnovationCupTheme/InnovationCupTheme.swift"
      ],
      "target_dependencies" : [
        "OrangeDesignSystem"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.