The Swift Package Index logo.Swift Package Index

Build Information

Successful build of GrowthBook-IOS, reference 1.1.5 (212ec5), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2026 09:33:07 UTC.

Swift 6 data race errors: 84

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme GrowthBook-IOS -destination generic/platform=watchOS 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

class CoreNetworkClient: NetworkProtocol {
      ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:14:30: warning: capture of 'self' with non-sendable type 'NetworkRetryHandler?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
            guard let self = self else { return }
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:4:13: note: class 'NetworkRetryHandler' does not conform to the 'Sendable' protocol
final class NetworkRetryHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:53:17: warning: capture of 'completion' with non-sendable type '(Bool) -> Void' in a '@Sendable' closure
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:53:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:22:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                            self.onOnlineCallbacks.forEach { $0() }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:22:29: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                            self.onOnlineCallbacks.forEach { $0() }
                            ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:41:17: warning: sending 'onOnline' risks causing data races; this is an error in the Swift 6 language mode
                onOnline()
~~~~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:41:17: note: task-isolated 'onOnline' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                onOnline()
                ^~~~~~~~
SwiftCompile normal arm64_32 Compiling\ Constants.swift,\ Crypto.swift,\ DecryptionUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:104:16: warning: stored property 'code' of 'Sendable'-conforming class 'SDKError' has non-sendable type 'SDKErrorCode'; this is an error in the Swift 6 language mode
    public let code: SDKErrorCode
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:82:13: note: consider making enum 'SDKErrorCode' conform to the 'Sendable' protocol
public enum SDKErrorCode: String {
            ^
                                , Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Crypto.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift:91:7: warning: non-final class 'DecryptionException' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class DecryptionException: Error {
      ^
SwiftCompile normal arm64_32 Compiling\ SSEHandler.swift,\ StickyBucketService.swift,\ Common.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/StickyBucket/StickyBucketService.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:9:7: warning: non-final class 'SSEHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class SSEHandler: NSObject, URLSessionDataDelegate {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:12:16: warning: stored property 'lastEventId' of 'Sendable'-conforming class 'SSEHandler' is mutable; this is an error in the Swift 6 language mode
    public var lastEventId: String?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:156:35: warning: capture of 'eventHandler' with non-sendable type '(String?, String?, String?) -> Void' in a '@Sendable' closure
                mainQueue.async { eventHandler(event.id, event.event, event.data) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:156:35: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                mainQueue.async { eventHandler(event.id, event.event, event.data) }
                                  ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/StickyBucket/StickyBucketService.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Formatter.swift,\ LoggingManager.swift,\ Theme.swift,\ Context.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: warning: static property 'minimal' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: add '@MainActor' to make static property 'minimal' part of global actor 'MainActor'
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: warning: static property 'detailed' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: add '@MainActor' to make static property 'detailed' part of global actor 'MainActor'
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:184:36: warning: capture of 'self' with non-sendable type 'GBLogger' in a '@Sendable' closure
                guard let logger = self.osLogger as? Logger else { return }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:25:12: note: class 'GBLogger' does not conform to the 'Sendable' protocol
open class GBLogger {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:185:24: warning: capture of 'level' with non-sendable type 'Level' in a '@Sendable' closure
                switch level {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:11:13: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: Int {
            ^
                      , Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: warning: static property 'dusk' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dusk = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: add '@MainActor' to make static property 'dusk' part of global actor 'MainActor'
    public static let dusk = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dusk = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: warning: static property 'midnight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let midnight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: add '@MainActor' to make static property 'midnight' part of global actor 'MainActor'
    public static let midnight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let midnight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: warning: static property 'tomorrow' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrow = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: add '@MainActor' to make static property 'tomorrow' part of global actor 'MainActor'
    public static let tomorrow = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrow = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: warning: static property 'tomorrowNight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: add '@MainActor' to make static property 'tomorrowNight' part of global actor 'MainActor'
    public static let tomorrowNight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: warning: static property 'tomorrowNightEighties' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightEighties = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: add '@MainActor' to make static property 'tomorrowNightEighties' part of global actor 'MainActor'
    public static let tomorrowNightEighties = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightEighties = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: warning: static property 'tomorrowNightBright' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightBright = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: add '@MainActor' to make static property 'tomorrowNightBright' part of global actor 'MainActor'
    public static let tomorrowNightBright = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightBright = Theme(
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ FeaturesViewModel.swift,\ GrowthBookModel.swift,\ GrowthBookSDK.swift,\ JsonManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookSDK.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesViewModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookSDK.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ FeaturesViewModel.swift,\ GrowthBookModel.swift,\ GrowthBookSDK.swift,\ JsonManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookSDK.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesViewModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookSDK.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ SSEHandler.swift,\ StickyBucketService.swift,\ Common.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/StickyBucket/StickyBucketService.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:9:7: warning: non-final class 'SSEHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class SSEHandler: NSObject, URLSessionDataDelegate {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:12:16: warning: stored property 'lastEventId' of 'Sendable'-conforming class 'SSEHandler' is mutable; this is an error in the Swift 6 language mode
    public var lastEventId: String?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:156:35: warning: capture of 'eventHandler' with non-sendable type '(String?, String?, String?) -> Void' in a '@Sendable' closure
                mainQueue.async { eventHandler(event.id, event.event, event.data) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:156:35: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                mainQueue.async { eventHandler(event.id, event.event, event.data) }
                                  ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/StickyBucket/StickyBucketService.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift:4:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ExperimentHelper' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = ExperimentHelper()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift:3:16: note: class 'ExperimentHelper' does not conform to the 'Sendable' protocol
internal class ExperimentHelper {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift:4:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = ExperimentHelper()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift:4:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = ExperimentHelper()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: warning: static property 'minimal' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: add '@MainActor' to make static property 'minimal' part of global actor 'MainActor'
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: warning: static property 'detailed' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: add '@MainActor' to make static property 'detailed' part of global actor 'MainActor'
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: warning: static property 'dusk' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dusk = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: add '@MainActor' to make static property 'dusk' part of global actor 'MainActor'
    public static let dusk = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dusk = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: warning: static property 'midnight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let midnight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: add '@MainActor' to make static property 'midnight' part of global actor 'MainActor'
    public static let midnight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let midnight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: warning: static property 'tomorrow' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrow = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: add '@MainActor' to make static property 'tomorrow' part of global actor 'MainActor'
    public static let tomorrow = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrow = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: warning: static property 'tomorrowNight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: add '@MainActor' to make static property 'tomorrowNight' part of global actor 'MainActor'
    public static let tomorrowNight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: warning: static property 'tomorrowNightEighties' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightEighties = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: add '@MainActor' to make static property 'tomorrowNightEighties' part of global actor 'MainActor'
    public static let tomorrowNightEighties = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightEighties = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: warning: static property 'tomorrowNightBright' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightBright = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: add '@MainActor' to make static property 'tomorrowNightBright' part of global actor 'MainActor'
    public static let tomorrowNightBright = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightBright = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:4:20: warning: non-final class 'Feature' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
@objc public class Feature: NSObject, Codable, Sendable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:6:16: warning: stored property 'defaultValue' of 'Sendable'-conforming class 'Feature' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let defaultValue: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:29:16: warning: stored property 'condition' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let condition: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:31:16: warning: stored property 'parentConditions' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[ParentConditionInterface]?'; this is an error in the Swift 6 language mode
    public let parentConditions: [ParentConditionInterface]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:19:15: note: consider making struct 'ParentConditionInterface' conform to the 'Sendable' protocol
public struct ParentConditionInterface: Codable {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:35:16: warning: stored property 'force' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let force: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:37:16: warning: stored property 'variations' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let variations: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:43:16: warning: stored property 'namespace' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let namespace: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:57:16: warning: stored property 'range' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'BucketRange?'; this is an error in the Swift 6 language mode
    public let range: BucketRange?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:59:16: warning: stored property 'ranges' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[BucketRange]?'; this is an error in the Swift 6 language mode
    public let ranges: [BucketRange]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:61:16: warning: stored property 'meta' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[VariationMeta]?'; this is an error in the Swift 6 language mode
    public let meta: [VariationMeta]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:114:15: note: consider making struct 'VariationMeta' conform to the 'Sendable' protocol
public struct VariationMeta: Codable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:63:16: warning: stored property 'filters' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Filter]?'; this is an error in the Swift 6 language mode
    public let filters: [Filter]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:152:20: note: class 'Filter' does not conform to the 'Sendable' protocol
@objc public class Filter: NSObject, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:71:16: warning: stored property 'tracks' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Track]?'; this is an error in the Swift 6 language mode
    public let tracks: [Track]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:129:15: note: consider making struct 'Track' conform to the 'Sendable' protocol
public struct Track: Codable {
              ^
                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:9:7: warning: non-final class 'SSEHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class SSEHandler: NSObject, URLSessionDataDelegate {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:12:16: warning: stored property 'lastEventId' of 'Sendable'-conforming class 'SSEHandler' is mutable; this is an error in the Swift 6 language mode
    public var lastEventId: String?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:104:16: warning: stored property 'code' of 'Sendable'-conforming class 'SDKError' has non-sendable type 'SDKErrorCode'; this is an error in the Swift 6 language mode
    public let code: SDKErrorCode
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:82:13: note: consider making enum 'SDKErrorCode' conform to the 'Sendable' protocol
public enum SDKErrorCode: String {
            ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift:91:7: warning: non-final class 'DecryptionException' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class DecryptionException: Error {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift:5:5: warning: var 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var logger = GBLogger()
    ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift:5:5: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
var logger = GBLogger()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift:5:5: note: add '@MainActor' to make var 'logger' part of global actor 'MainActor'
var logger = GBLogger()
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift:5:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var logger = GBLogger()
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Emitting module for GrowthBook (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 Compiling\ FeaturesViewModel.swift,\ GrowthBookModel.swift,\ GrowthBookSDK.swift,\ JsonManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookSDK.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesViewModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/GrowthBookSDK.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Emitting module for GrowthBook (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriver\ Compilation\ Requirements GrowthBook normal armv7k com.apple.xcode.tools.swift.compiler (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.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/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook-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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for GrowthBook (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriver\ Compilation\ Requirements GrowthBook normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.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/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook-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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements GrowthBook normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.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/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook-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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftmodule (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/GrowthBook-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook-Swift.h (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/GrowthBook-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftdoc (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.abi.json (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftmodule (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftdoc (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.abi.json (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftmodule (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftdoc (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.abi.json (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftsourceinfo (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftsourceinfo (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftsourceinfo (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ GlobalContext.swift,\ RemoteEvalModel.swift,\ StickyAssignmentsDocument.swift,\ EventHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalContext.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/RemoteEvalModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/StickyAssignmentsDocument.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalContext.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/RemoteEvalModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/StickyAssignmentsDocument.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SSEHandler.swift,\ StickyBucketService.swift,\ Common.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/StickyBucket/StickyBucketService.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:9:7: warning: non-final class 'SSEHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class SSEHandler: NSObject, URLSessionDataDelegate {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:12:16: warning: stored property 'lastEventId' of 'Sendable'-conforming class 'SSEHandler' is mutable; this is an error in the Swift 6 language mode
    public var lastEventId: String?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:156:35: warning: capture of 'eventHandler' with non-sendable type '(String?, String?, String?) -> Void' in a '@Sendable' closure
                mainQueue.async { eventHandler(event.id, event.event, event.data) }
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/SSEHandler.swift:156:35: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                mainQueue.async { eventHandler(event.id, event.event, event.data) }
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/StickyBucket/StickyBucketService.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64_32 Compiling GlobalContext.swift, RemoteEvalModel.swift, StickyAssignmentsDocument.swift, EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k Compiling\ CachingManager.swift,\ ContextManager.swift,\ ConditionEvaluator.swift,\ ExperimentEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Caching/CachingManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/ContextManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ConditionEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Caching/CachingManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/ContextManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ConditionEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling SSEHandler.swift, StickyBucketService.swift, Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 Compiling\ EvaluationData.swift,\ Experiment.swift,\ Feature.swift,\ GlobalConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/EvaluationData.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Experiment.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/EvaluationData.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Experiment.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:4:20: warning: non-final class 'Feature' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
@objc public class Feature: NSObject, Codable, Sendable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:6:16: warning: stored property 'defaultValue' of 'Sendable'-conforming class 'Feature' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let defaultValue: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:29:16: warning: stored property 'condition' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let condition: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:31:16: warning: stored property 'parentConditions' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[ParentConditionInterface]?'; this is an error in the Swift 6 language mode
    public let parentConditions: [ParentConditionInterface]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:19:15: note: consider making struct 'ParentConditionInterface' conform to the 'Sendable' protocol
public struct ParentConditionInterface: Codable {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:35:16: warning: stored property 'force' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let force: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:37:16: warning: stored property 'variations' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let variations: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:43:16: warning: stored property 'namespace' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let namespace: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:57:16: warning: stored property 'range' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'BucketRange?'; this is an error in the Swift 6 language mode
    public let range: BucketRange?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:59:16: warning: stored property 'ranges' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[BucketRange]?'; this is an error in the Swift 6 language mode
    public let ranges: [BucketRange]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:61:16: warning: stored property 'meta' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[VariationMeta]?'; this is an error in the Swift 6 language mode
    public let meta: [VariationMeta]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:114:15: note: consider making struct 'VariationMeta' conform to the 'Sendable' protocol
public struct VariationMeta: Codable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:63:16: warning: stored property 'filters' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Filter]?'; this is an error in the Swift 6 language mode
    public let filters: [Filter]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:152:20: note: class 'Filter' does not conform to the 'Sendable' protocol
@objc public class Filter: NSObject, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:71:16: warning: stored property 'tracks' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Track]?'; this is an error in the Swift 6 language mode
    public let tracks: [Track]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:129:15: note: consider making struct 'Track' conform to the 'Sendable' protocol
public struct Track: Codable {
              ^
                            , Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling SSEHandler.swift, StickyBucketService.swift, Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ CachingManager.swift,\ ContextManager.swift,\ ConditionEvaluator.swift,\ ExperimentEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Caching/CachingManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/ContextManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ConditionEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Caching/CachingManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/ContextManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ConditionEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Constants.swift, Crypto.swift, DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 Compiling\ Extensions.swift,\ Logger.swift,\ Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Utils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Extensions.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal armv7k Compiling FeaturesViewModel.swift, GrowthBookModel.swift, GrowthBookSDK.swift, JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 Compiling\ Formatter.swift,\ LoggingManager.swift,\ Theme.swift,\ Context.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: warning: static property 'minimal' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: add '@MainActor' to make static property 'minimal' part of global actor 'MainActor'
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: warning: static property 'detailed' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: add '@MainActor' to make static property 'detailed' part of global actor 'MainActor'
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:184:36: warning: capture of 'self' with non-sendable type 'GBLogger' in a '@Sendable' closure
                guard let logger = self.osLogger as? Logger else { return }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:25:12: note: class 'GBLogger' does not conform to the 'Sendable' protocol
open class GBLogger {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:185:24: warning: capture of 'level' with non-sendable type 'Level' in a '@Sendable' closure
                switch level {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:11:13: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: Int {
            ^
                      , Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: warning: static property 'dusk' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dusk = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: add '@MainActor' to make static property 'dusk' part of global actor 'MainActor'
    public static let dusk = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dusk = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: warning: static property 'midnight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let midnight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: add '@MainActor' to make static property 'midnight' part of global actor 'MainActor'
    public static let midnight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let midnight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: warning: static property 'tomorrow' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrow = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: add '@MainActor' to make static property 'tomorrow' part of global actor 'MainActor'
    public static let tomorrow = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrow = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: warning: static property 'tomorrowNight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: add '@MainActor' to make static property 'tomorrowNight' part of global actor 'MainActor'
    public static let tomorrowNight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: warning: static property 'tomorrowNightEighties' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightEighties = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: add '@MainActor' to make static property 'tomorrowNightEighties' part of global actor 'MainActor'
    public static let tomorrowNightEighties = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightEighties = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: warning: static property 'tomorrowNightBright' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightBright = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: add '@MainActor' to make static property 'tomorrowNightBright' part of global actor 'MainActor'
    public static let tomorrowNightBright = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightBright = Theme(
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling ExperimentHelper.swift, FeatureEvaluator.swift, FeaturesDataModel.swift, FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k Compiling\ EventModel.swift,\ LruETagCache.swift,\ NetworkClient.swift,\ NetworkRetryHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/LruETagCache.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/LruETagCache.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:76:17: warning: capture of 'errorResult' with non-sendable type '(any Error) -> Void' in a '@Sendable' closure
                errorResult(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:76:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                errorResult(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:82:39: warning: capture of 'self' with non-sendable type 'CoreNetworkClient' in a '@Sendable' closure
                if method == "GET" && self.matchesFeaturesPattern(urlString) {
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:11:7: note: class 'CoreNetworkClient' does not conform to the 'Sendable' protocol
class CoreNetworkClient: NetworkProtocol {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:122:13: warning: capture of 'successResult' with non-sendable type '(Data) -> Void' in a '@Sendable' closure
            successResult(responseData)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:122:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            successResult(responseData)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:82:39: warning: implicit capture of 'self' requires that 'CoreNetworkClient' conforms to 'Sendable'; this is an error in the Swift 6 language mode
                if method == "GET" && self.matchesFeaturesPattern(urlString) {
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:11:7: note: class 'CoreNetworkClient' does not conform to the 'Sendable' protocol
class CoreNetworkClient: NetworkProtocol {
      ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:14:30: warning: capture of 'self' with non-sendable type 'NetworkRetryHandler?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
            guard let self = self else { return }
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:4:13: note: class 'NetworkRetryHandler' does not conform to the 'Sendable' protocol
final class NetworkRetryHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:53:17: warning: capture of 'completion' with non-sendable type '(Bool) -> Void' in a '@Sendable' closure
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:53:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:22:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                            self.onOnlineCallbacks.forEach { $0() }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:22:29: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                            self.onOnlineCallbacks.forEach { $0() }
                            ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:41:17: warning: sending 'onOnline' risks causing data races; this is an error in the Swift 6 language mode
                onOnline()
~~~~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:41:17: note: task-isolated 'onOnline' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                onOnline()
                ^~~~~~~~
SwiftDriverJobDiscovery normal armv7k Compiling Formatter.swift, LoggingManager.swift, Theme.swift, Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 Compiling\ CachingManager.swift,\ ContextManager.swift,\ ConditionEvaluator.swift,\ ExperimentEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Caching/CachingManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/ContextManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ConditionEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Caching/CachingManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/ContextManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ConditionEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling FeaturesViewModel.swift, GrowthBookModel.swift, GrowthBookSDK.swift, JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ Formatter.swift,\ LoggingManager.swift,\ Theme.swift,\ Context.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:303:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Formatter("[%@] %@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: warning: static property 'minimal' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: add '@MainActor' to make static property 'minimal' part of global actor 'MainActor'
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:310:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let minimal = Formatter("%@ %@: %@", [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: warning: static property 'detailed' is not concurrency-safe because non-'Sendable' type 'Formatter' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:24:12: note: class 'Formatter' does not conform to the 'Sendable' protocol
open class Formatter: Formatters {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: add '@MainActor' to make static property 'detailed' part of global actor 'MainActor'
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Formatter.swift:316:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:184:36: warning: capture of 'self' with non-sendable type 'GBLogger' in a '@Sendable' closure
                guard let logger = self.osLogger as? Logger else { return }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:25:12: note: class 'GBLogger' does not conform to the 'Sendable' protocol
open class GBLogger {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:185:24: warning: capture of 'level' with non-sendable type 'Level' in a '@Sendable' closure
                switch level {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/LoggingManager.swift:11:13: note: consider making enum 'Level' conform to the 'Sendable' protocol
public enum Level: Int {
            ^
                      , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default` = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default` = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default` = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: warning: static property 'dusk' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let dusk = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: add '@MainActor' to make static property 'dusk' part of global actor 'MainActor'
    public static let dusk = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let dusk = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: warning: static property 'midnight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let midnight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: add '@MainActor' to make static property 'midnight' part of global actor 'MainActor'
    public static let midnight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let midnight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: warning: static property 'tomorrow' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrow = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: add '@MainActor' to make static property 'tomorrow' part of global actor 'MainActor'
    public static let tomorrow = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrow = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: warning: static property 'tomorrowNight' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNight = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: add '@MainActor' to make static property 'tomorrowNight' part of global actor 'MainActor'
    public static let tomorrowNight = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNight = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: warning: static property 'tomorrowNightEighties' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightEighties = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: add '@MainActor' to make static property 'tomorrowNightEighties' part of global actor 'MainActor'
    public static let tomorrowNightEighties = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightEighties = Theme(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: warning: static property 'tomorrowNightBright' is not concurrency-safe because non-'Sendable' type 'Theme' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let tomorrowNightBright = Theme(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:12:12: note: class 'Theme' does not conform to the 'Sendable' protocol
open class Theme: Themes {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: add '@MainActor' to make static property 'tomorrowNightBright' part of global actor 'MainActor'
    public static let tomorrowNightBright = Theme(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/LoggingManager/Theme.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let tomorrowNightBright = Theme(
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EventModel.swift, LruETagCache.swift, NetworkClient.swift, NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ Constants.swift,\ Crypto.swift,\ DecryptionUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:104:16: warning: stored property 'code' of 'Sendable'-conforming class 'SDKError' has non-sendable type 'SDKErrorCode'; this is an error in the Swift 6 language mode
    public let code: SDKErrorCode
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:82:13: note: consider making enum 'SDKErrorCode' conform to the 'Sendable' protocol
public enum SDKErrorCode: String {
            ^
                                , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Crypto.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift:91:7: warning: non-final class 'DecryptionException' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class DecryptionException: Error {
      ^
SwiftDriverJobDiscovery normal arm64 Compiling SSEHandler.swift, StickyBucketService.swift, Common.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k Compiling\ Extensions.swift,\ Logger.swift,\ Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Utils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Extensions.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling FeaturesViewModel.swift, GrowthBookModel.swift, GrowthBookSDK.swift, JsonManager.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ ExperimentHelper.swift,\ FeatureEvaluator.swift,\ FeaturesDataModel.swift,\ FeaturesDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/FeatureEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Extensions.swift, Logger.swift, Utils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ Extensions.swift,\ Logger.swift,\ Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Utils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Extensions.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftDriverJobDiscovery normal armv7k Compiling EventModel.swift, LruETagCache.swift, NetworkClient.swift, NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ GlobalContext.swift,\ RemoteEvalModel.swift,\ StickyAssignmentsDocument.swift,\ EventHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalContext.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/RemoteEvalModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/StickyAssignmentsDocument.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalContext.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/RemoteEvalModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/StickyAssignmentsDocument.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Formatter.swift, LoggingManager.swift, Theme.swift, Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k Compiling\ ExperimentHelper.swift,\ FeatureEvaluator.swift,\ FeaturesDataModel.swift,\ FeaturesDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/FeatureEvaluator.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Evaluators/ExperimentHelper.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Features/FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Formatter.swift, LoggingManager.swift, Theme.swift, Context.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ EvaluationData.swift,\ Experiment.swift,\ Feature.swift,\ GlobalConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/EvaluationData.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Experiment.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/EvaluationData.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Experiment.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:4:20: warning: non-final class 'Feature' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
@objc public class Feature: NSObject, Codable, Sendable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:6:16: warning: stored property 'defaultValue' of 'Sendable'-conforming class 'Feature' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let defaultValue: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:29:16: warning: stored property 'condition' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let condition: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:31:16: warning: stored property 'parentConditions' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[ParentConditionInterface]?'; this is an error in the Swift 6 language mode
    public let parentConditions: [ParentConditionInterface]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:19:15: note: consider making struct 'ParentConditionInterface' conform to the 'Sendable' protocol
public struct ParentConditionInterface: Codable {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:35:16: warning: stored property 'force' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let force: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:37:16: warning: stored property 'variations' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let variations: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:43:16: warning: stored property 'namespace' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let namespace: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:57:16: warning: stored property 'range' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'BucketRange?'; this is an error in the Swift 6 language mode
    public let range: BucketRange?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:59:16: warning: stored property 'ranges' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[BucketRange]?'; this is an error in the Swift 6 language mode
    public let ranges: [BucketRange]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:61:16: warning: stored property 'meta' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[VariationMeta]?'; this is an error in the Swift 6 language mode
    public let meta: [VariationMeta]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:114:15: note: consider making struct 'VariationMeta' conform to the 'Sendable' protocol
public struct VariationMeta: Codable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:63:16: warning: stored property 'filters' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Filter]?'; this is an error in the Swift 6 language mode
    public let filters: [Filter]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:152:20: note: class 'Filter' does not conform to the 'Sendable' protocol
@objc public class Filter: NSObject, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:71:16: warning: stored property 'tracks' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Track]?'; this is an error in the Swift 6 language mode
    public let tracks: [Track]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:129:15: note: consider making struct 'Track' conform to the 'Sendable' protocol
public struct Track: Codable {
              ^
                            , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EvaluationData.swift, Experiment.swift, Feature.swift, GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 Compiling\ EventModel.swift,\ LruETagCache.swift,\ NetworkClient.swift,\ NetworkRetryHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/LruETagCache.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/LruETagCache.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:76:17: warning: capture of 'errorResult' with non-sendable type '(any Error) -> Void' in a '@Sendable' closure
                errorResult(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:76:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                errorResult(error)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:82:39: warning: capture of 'self' with non-sendable type 'CoreNetworkClient' in a '@Sendable' closure
                if method == "GET" && self.matchesFeaturesPattern(urlString) {
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:11:7: note: class 'CoreNetworkClient' does not conform to the 'Sendable' protocol
class CoreNetworkClient: NetworkProtocol {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:122:13: warning: capture of 'successResult' with non-sendable type '(Data) -> Void' in a '@Sendable' closure
            successResult(responseData)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:122:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            successResult(responseData)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:82:39: warning: implicit capture of 'self' requires that 'CoreNetworkClient' conforms to 'Sendable'; this is an error in the Swift 6 language mode
                if method == "GET" && self.matchesFeaturesPattern(urlString) {
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkClient.swift:11:7: note: class 'CoreNetworkClient' does not conform to the 'Sendable' protocol
class CoreNetworkClient: NetworkProtocol {
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:14:30: warning: capture of 'self' with non-sendable type 'NetworkRetryHandler?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
            guard let self = self else { return }
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:4:13: note: class 'NetworkRetryHandler' does not conform to the 'Sendable' protocol
final class NetworkRetryHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:53:17: warning: capture of 'completion' with non-sendable type '(Bool) -> Void' in a '@Sendable' closure
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:53:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(true)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:22:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                            self.onOnlineCallbacks.forEach { $0() }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:22:29: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                            self.onOnlineCallbacks.forEach { $0() }
                            ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:41:17: warning: sending 'onOnline' risks causing data races; this is an error in the Swift 6 language mode
                onOnline()
~~~~~~~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/NetworkRetryHandler.swift:41:17: note: task-isolated 'onOnline' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                onOnline()
                ^~~~~~~~
SwiftDriverJobDiscovery normal arm64 Compiling CachingManager.swift, ContextManager.swift, ConditionEvaluator.swift, ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k Compiling\ Constants.swift,\ Crypto.swift,\ DecryptionUtils.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:104:16: warning: stored property 'code' of 'Sendable'-conforming class 'SDKError' has non-sendable type 'SDKErrorCode'; this is an error in the Swift 6 language mode
    public let code: SDKErrorCode
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:82:13: note: consider making enum 'SDKErrorCode' conform to the 'Sendable' protocol
public enum SDKErrorCode: String {
            ^
                                , Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Crypto.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/DecryptionUtils.swift:91:7: warning: non-final class 'DecryptionException' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class DecryptionException: Error {
      ^
SwiftDriverJobDiscovery normal arm64_32 Compiling CachingManager.swift, ContextManager.swift, ConditionEvaluator.swift, ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal armv7k Compiling CachingManager.swift, ContextManager.swift, ConditionEvaluator.swift, ExperimentEvaluator.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriver\ Compilation GrowthBook normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.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/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook-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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal armv7k Compiling\ GlobalContext.swift,\ RemoteEvalModel.swift,\ StickyAssignmentsDocument.swift,\ EventHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalContext.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/RemoteEvalModel.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/StickyAssignmentsDocument.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalContext.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/RemoteEvalModel.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/StickyAssignmentsDocument.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Network/EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ EvaluationData.swift,\ Experiment.swift,\ Feature.swift,\ GlobalConfig.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/EvaluationData.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Experiment.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/EvaluationData.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Experiment.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:4:20: warning: non-final class 'Feature' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
@objc public class Feature: NSObject, Codable, Sendable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:6:16: warning: stored property 'defaultValue' of 'Sendable'-conforming class 'Feature' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let defaultValue: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:29:16: warning: stored property 'condition' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let condition: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:31:16: warning: stored property 'parentConditions' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[ParentConditionInterface]?'; this is an error in the Swift 6 language mode
    public let parentConditions: [ParentConditionInterface]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:19:15: note: consider making struct 'ParentConditionInterface' conform to the 'Sendable' protocol
public struct ParentConditionInterface: Codable {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:35:16: warning: stored property 'force' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'JSON?'; this is an error in the Swift 6 language mode
    public let force: JSON?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:37:16: warning: stored property 'variations' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let variations: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:43:16: warning: stored property 'namespace' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[JSON]?'; this is an error in the Swift 6 language mode
    public let namespace: [JSON]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/JsonManager/JsonManager.swift:53:15: note: consider making struct 'JSON' conform to the 'Sendable' protocol
public struct JSON {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:57:16: warning: stored property 'range' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type 'BucketRange?'; this is an error in the Swift 6 language mode
    public let range: BucketRange?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:59:16: warning: stored property 'ranges' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[BucketRange]?'; this is an error in the Swift 6 language mode
    public let ranges: [BucketRange]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:48:15: note: consider making struct 'BucketRange' conform to the 'Sendable' protocol
public struct BucketRange: Codable {
              ^
                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:61:16: warning: stored property 'meta' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[VariationMeta]?'; this is an error in the Swift 6 language mode
    public let meta: [VariationMeta]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:114:15: note: consider making struct 'VariationMeta' conform to the 'Sendable' protocol
public struct VariationMeta: Codable {
              ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:63:16: warning: stored property 'filters' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Filter]?'; this is an error in the Swift 6 language mode
    public let filters: [Filter]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:152:20: note: class 'Filter' does not conform to the 'Sendable' protocol
@objc public class Filter: NSObject, Codable {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/Feature.swift:71:16: warning: stored property 'tracks' of 'Sendable'-conforming struct 'FeatureRule' has non-sendable type '[Track]?'; this is an error in the Swift 6 language mode
    public let tracks: [Track]?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Utils/Constants.swift:129:15: note: consider making struct 'Track' conform to the 'Sendable' protocol
public struct Track: Codable {
              ^
                            , Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/CommonMain/Model/GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ExperimentHelper.swift, FeatureEvaluator.swift, FeaturesDataModel.swift, FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal armv7k Compiling Extensions.swift, Logger.swift, Utils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/Binary/GrowthBook.o normal arm64_32 (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/Binary/GrowthBook.o
SwiftDriverJobDiscovery normal arm64 Compiling Constants.swift, Crypto.swift, DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal arm64 Compiling GlobalContext.swift, RemoteEvalModel.swift, StickyAssignmentsDocument.swift, EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal arm64 Compiling Extensions.swift, Logger.swift, Utils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal armv7k Compiling ExperimentHelper.swift, FeatureEvaluator.swift, FeaturesDataModel.swift, FeaturesDataSource.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal armv7k Compiling GlobalContext.swift, RemoteEvalModel.swift, StickyAssignmentsDocument.swift, EventHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal arm64 Compiling EventModel.swift, LruETagCache.swift, NetworkClient.swift, NetworkRetryHandler.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal armv7k Compiling Constants.swift, Crypto.swift, DecryptionUtils.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriverJobDiscovery normal arm64 Compiling EvaluationData.swift, Experiment.swift, Feature.swift, GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriver\ Compilation GrowthBook normal arm64 com.apple.xcode.tools.swift.compiler (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.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/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook-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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook-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/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/Binary/GrowthBook.o normal arm64 (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/Binary/GrowthBook.o
SwiftDriverJobDiscovery normal armv7k Compiling EvaluationData.swift, Experiment.swift, Feature.swift, GlobalConfig.swift (in target 'GrowthBook' from project 'GrowthBook-IOS')
SwiftDriver\ Compilation GrowthBook normal armv7k com.apple.xcode.tools.swift.compiler (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.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/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook-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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.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/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook-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/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/Binary/GrowthBook.o normal armv7k (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/Binary/GrowthBook.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.o normal arm64\ armv7k\ arm64_32 (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/Binary/GrowthBook.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/Binary/GrowthBook.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/Binary/GrowthBook.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.o
ExtractAppIntentsMetadata (in target 'GrowthBook' from project 'GrowthBook-IOS')
    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 GrowthBook --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.GrowthBook --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/GrowthBook.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/GrowthBook.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64/GrowthBook.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/armv7k/GrowthBook.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GrowthBook-IOS.build/Debug-watchos/GrowthBook.build/Objects-normal/arm64_32/GrowthBook.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-30 02:33:06.160 appintentsmetadataprocessor[750:4518] Starting appintentsmetadataprocessor export
2026-04-30 02:33:06.203 appintentsmetadataprocessor[750:4518] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.o (in target 'GrowthBook' from project 'GrowthBook-IOS')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/GrowthBook.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "GrowthBook-IOS",
  "name" : "GrowthBook-IOS",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "GrowthBook-IOS",
      "targets" : [
        "GrowthBook"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "GrowthBookTests",
      "module_type" : "SwiftTarget",
      "name" : "GrowthBookTests",
      "path" : "GrowthBookTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/GrowthBookTests/Source/json.json",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "BackgroundSyncTest.swift",
        "CachingManagerTest.swift",
        "ConditionTests.swift",
        "ContextManagerTests.swift",
        "CryptoTests.swift",
        "ExperimentRunTests.swift",
        "FeatureValueTests.swift",
        "FeaturesViewModelTests.swift",
        "GrowthBookSDKBuilderTests.swift",
        "LruETagCacheTests.swift",
        "MockNetworkClient.swift",
        "ModelTests.swift",
        "StickyBucketingTests.swift",
        "TestHelper.swift",
        "UtilsTests.swift"
      ],
      "target_dependencies" : [
        "GrowthBook"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GrowthBook",
      "module_type" : "SwiftTarget",
      "name" : "GrowthBook",
      "path" : "Sources/CommonMain",
      "product_memberships" : [
        "GrowthBook-IOS"
      ],
      "sources" : [
        "Caching/CachingManager.swift",
        "ContextManager.swift",
        "Evaluators/ConditionEvaluator.swift",
        "Evaluators/ExperimentEvaluator.swift",
        "Evaluators/ExperimentHelper.swift",
        "Evaluators/FeatureEvaluator.swift",
        "Features/FeaturesDataModel.swift",
        "Features/FeaturesDataSource.swift",
        "Features/FeaturesViewModel.swift",
        "GrowthBookModel.swift",
        "GrowthBookSDK.swift",
        "JsonManager/JsonManager.swift",
        "LoggingManager/Formatter.swift",
        "LoggingManager/LoggingManager.swift",
        "LoggingManager/Theme.swift",
        "Model/Context.swift",
        "Model/EvaluationData.swift",
        "Model/Experiment.swift",
        "Model/Feature.swift",
        "Model/GlobalConfig.swift",
        "Model/GlobalContext.swift",
        "Model/RemoteEvalModel.swift",
        "Model/StickyAssignmentsDocument.swift",
        "Network/EventHandler.swift",
        "Network/EventModel.swift",
        "Network/LruETagCache.swift",
        "Network/NetworkClient.swift",
        "Network/NetworkRetryHandler.swift",
        "Network/SSEHandler.swift",
        "StickyBucket/StickyBucketService.swift",
        "Utils/Common.swift",
        "Utils/Constants.swift",
        "Utils/Crypto.swift",
        "Utils/DecryptionUtils.swift",
        "Utils/Extensions.swift",
        "Utils/Logger.swift",
        "Utils/Utils.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.