Build Information
Failed to build IterableSDK, reference 6.5.11 (10e8f4
), with Swift 6.1 for visionOS using Xcode 16.3 on 1 May 2025 11:52:09 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme IterableSDK-Package -destination generic/platform=xrOS
Build Log
static let undefinedTrigger = create(withTriggerType: .undefinedTriggerType)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift:71:16: warning: static property 'neverTrigger' is not concurrency-safe because non-'Sendable' type 'IterableInAppTrigger' may have shared mutable state; this is an error in the Swift 6 language mode
static let neverTrigger = create(withTriggerType: .never)
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift:95:33: note: class 'IterableInAppTrigger' does not conform to the 'Sendable' protocol
@objcMembers public final class IterableInAppTrigger: NSObject {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift:71:16: note: add '@MainActor' to make static property 'neverTrigger' part of global actor 'MainActor'
static let neverTrigger = create(withTriggerType: .never)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift:71:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let neverTrigger = create(withTriggerType: .never)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift:8:16: warning: static property 'isPresenting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var isPresenting = false
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift:8:16: note: convert 'isPresenting' to a 'let' constant to make 'Sendable' shared state immutable
static var isPresenting = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift:8:16: note: add '@MainActor' to make static property 'isPresenting' part of global actor 'MainActor'
static var isPresenting = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift:8:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var isPresenting = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift:743:16: warning: static property 'implementation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var implementation: InternalIterableAPI?
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift:743:16: note: convert 'implementation' to a 'let' constant to make 'Sendable' shared state immutable
static var implementation: InternalIterableAPI?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift:743:16: note: add '@MainActor' to make static property 'implementation' part of global actor 'MainActor'
static var implementation: InternalIterableAPI?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift:743:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var implementation: InternalIterableAPI?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift:57:16: warning: static property 'implementation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var implementation: InternalIterableAppIntegration?
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift:57:16: note: convert 'implementation' to a 'let' constant to make 'Sendable' shared state immutable
static var implementation: InternalIterableAppIntegration?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift:57:16: note: add '@MainActor' to make static property 'implementation' part of global actor 'MainActor'
static var implementation: InternalIterableAppIntegration?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift:57:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var implementation: InternalIterableAppIntegration?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:20:27: warning: static property 'descending' is not concurrency-safe because non-'Sendable' type '(IterableInAppMessage, IterableInAppMessage) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
public static let descending: (IterableInAppMessage, IterableInAppMessage) -> Bool = {
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:20:27: note: add '@MainActor' to make static property 'descending' part of global actor 'MainActor'
public static let descending: (IterableInAppMessage, IterableInAppMessage) -> Bool = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:20:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let descending: (IterableInAppMessage, IterableInAppMessage) -> Bool = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:25:27: warning: static property 'ascending' is not concurrency-safe because non-'Sendable' type '(IterableInAppMessage, IterableInAppMessage) -> Bool' may have shared mutable state; this is an error in the Swift 6 language mode
public static let ascending: (IterableInAppMessage, IterableInAppMessage) -> Bool = {
^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:25:27: note: add '@MainActor' to make static property 'ascending' part of global actor 'MainActor'
public static let ascending: (IterableInAppMessage, IterableInAppMessage) -> Bool = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:25:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let ascending: (IterableInAppMessage, IterableInAppMessage) -> Bool = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:33:27: warning: static property 'localizedShortDateShortTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var localizedShortDateShortTime: (IterableInAppMessage) -> String? = {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:33:27: note: convert 'localizedShortDateShortTime' to a 'let' constant to make 'Sendable' shared state immutable
public static var localizedShortDateShortTime: (IterableInAppMessage) -> String? = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:33:27: note: add '@MainActor' to make static property 'localizedShortDateShortTime' part of global actor 'MainActor'
public static var localizedShortDateShortTime: (IterableInAppMessage) -> String? = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:33:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var localizedShortDateShortTime: (IterableInAppMessage) -> String? = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:38:27: warning: static property 'localizedMediumDateShortTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var localizedMediumDateShortTime: (IterableInAppMessage) -> String? = {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:38:27: note: convert 'localizedMediumDateShortTime' to a 'let' constant to make 'Sendable' shared state immutable
public static var localizedMediumDateShortTime: (IterableInAppMessage) -> String? = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:38:27: note: add '@MainActor' to make static property 'localizedMediumDateShortTime' part of global actor 'MainActor'
public static var localizedMediumDateShortTime: (IterableInAppMessage) -> String? = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:38:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var localizedMediumDateShortTime: (IterableInAppMessage) -> String? = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:363:10: warning: main actor-isolated instance method 'onViewModelChanged(diffs:)' cannot be used to satisfy nonisolated requirement from protocol 'InboxViewControllerViewModelView'; this is an error in the Swift 6 language mode
func onViewModelChanged(diffs: [RowDiff]) {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:363:10: note: add 'nonisolated' to 'onViewModelChanged(diffs:)' to make this instance method not isolated to the actor
func onViewModelChanged(diffs: [RowDiff]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:362:40: note: add '@preconcurrency' to the 'InboxViewControllerViewModelView' conformance to defer isolation checking to run time
extension IterableInboxViewController: InboxViewControllerViewModelView {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift:9:10: note: mark the protocol requirement 'onViewModelChanged(diffs:)' 'async' to allow actor-isolated conformances
func onViewModelChanged(diffs: [RowDiff])
^
async
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:375:10: warning: main actor-isolated instance method 'onImageLoaded(for:)' cannot be used to satisfy nonisolated requirement from protocol 'InboxViewControllerViewModelView'; this is an error in the Swift 6 language mode
func onImageLoaded(for indexPath: IndexPath) {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:375:10: note: add 'nonisolated' to 'onImageLoaded(for:)' to make this instance method not isolated to the actor
func onImageLoaded(for indexPath: IndexPath) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift:10:10: note: mark the protocol requirement 'onImageLoaded(for:)' 'async' to allow actor-isolated conformances
func onImageLoaded(for indexPath: IndexPath)
^
async
/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift:385:9: warning: main actor-isolated property 'currentlyVisibleRowIndexPaths' cannot be used to satisfy nonisolated requirement from protocol 'InboxViewControllerViewModelView'; this is an error in the Swift 6 language mode
var currentlyVisibleRowIndexPaths: [IndexPath] {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift:11:9: note: requirement 'currentlyVisibleRowIndexPaths' declared here
var currentlyVisibleRowIndexPaths: [IndexPath] { get }
^
SwiftCompile normal arm64 Compiling\ RequestHandler.swift,\ RequestProcessorProtocol.swift,\ InAppCalculations.swift,\ InAppContentParser.swift,\ InAppDisplayer.swift,\ InAppHelper.swift,\ InAppInternal.swift,\ InAppManager+Functions.swift,\ InAppManager.swift,\ InAppMessageParser.swift,\ InAppPersistence.swift,\ InAppPresenter.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestHandler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppCalculations.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppContentParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppDisplayer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppInternal.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager+Functions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppMessageParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestHandler.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppCalculations.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppContentParser.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppDisplayer.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppInternal.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager+Functions.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppMessageParser.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ IterableTaskProcessor.swift,\ IterableTaskResult.swift,\ IterableTaskRunner.swift,\ IterableTaskScheduler.swift,\ IterableUserDefaults.swift,\ MiscEmbeddedClasses.swift,\ MiscInboxClasses.swift,\ Models.swift,\ NetworkConnectivityChecker.swift,\ NetworkConnectivityManager.swift,\ NetworkHelper.swift,\ NetworkMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskResult.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskScheduler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableUserDefaults.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscEmbeddedClasses.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscInboxClasses.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Models.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkMonitor.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskResult.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskRunner.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskScheduler.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableUserDefaults.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscEmbeddedClasses.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscInboxClasses.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Models.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityChecker.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkMonitor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for IterableAppExtensions (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftDriver\ Compilation\ Requirements IterableAppExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'IterableAppExtensions' from project 'IterableSDK')
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 IterableAppExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ITBNotificationServiceExtension.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 Compiling\ IterableAPI.swift,\ IterableAppIntegration.swift,\ IterableConfig.swift,\ IterableLogging.swift,\ IterableMessaging.swift,\ InboxViewRepresentable.swift,\ IterableInboxView.swift,\ IterableEmbeddedView.swift,\ IterableInboxCell.swift,\ IterableInboxNavigationViewController.swift,\ IterableInboxViewController.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableConfig.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableLogging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/IterableInboxView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxCell.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableConfig.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableLogging.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/IterableInboxView.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxCell.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/IterableAppExtensions-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-Swift.h (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/IterableAppExtensions-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling TestFile.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftmodule (in target 'IterableAppExtensions' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftdoc (in target 'IterableAppExtensions' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling NotificationExtensionConstants.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.abi.json (in target 'IterableAppExtensions' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.abi.json
SwiftCompile normal arm64 Compiling\ IterableInAppManagerProtocol.swift,\ IterableInboxViewControllerViewDelegate.swift,\ AuthFailure.swift,\ AuthFailureReason.swift,\ APNSTypeChecker.swift,\ ActionRunner.swift,\ AppExtensionHelper.swift,\ Auth.swift,\ AuthManager.swift,\ ClassExtensions.swift,\ CoreDataUtil.swift,\ DataFieldsHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailure.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailureReason.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/APNSTypeChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ActionRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AppExtensionHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Auth.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AuthManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ClassExtensions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/CoreDataUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DataFieldsHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailure.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailureReason.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/APNSTypeChecker.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ActionRunner.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AppExtensionHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Auth.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AuthManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ClassExtensions.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/CoreDataUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DataFieldsHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftsourceinfo (in target 'IterableAppExtensions' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling NotificationContentParser.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 Compiling\ LocalStorageProtocol.swift,\ NotificationHelper.swift,\ OrderedDictionary.swift,\ PersistenceHelper.swift,\ ResourceHelper.swift,\ UIColor+Extension.swift,\ WebViewProtocol.swift,\ ApiClient.swift,\ ApiClientProtocol.swift,\ OfflineRequestProcessor.swift,\ OnlineRequestProcessor.swift,\ RequestCreator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/NotificationHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/OrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/PersistenceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/ResourceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/UIColor+Extension.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/WebViewProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClient.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClientProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestCreator.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/NotificationHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/OrderedDictionary.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/PersistenceHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/ResourceHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/UIColor+Extension.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/WebViewProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClient.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClientProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestCreator.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ HealthMonitor.swift,\ InboxImpressionTracker.swift,\ InboxMessageViewModel.swift,\ InboxSessionManager.swift,\ InboxState.swift,\ InboxViewControllerViewModel.swift,\ InboxViewControllerViewModelProtocol.swift,\ InboxViewControllerViewModelView.swift,\ InternalIterableAPI.swift,\ InternalIterableAppIntegration.swift,\ IterableAPICallRequest.swift,\ IterableAPICallTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/HealthMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxImpressionTracker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxMessageViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxState.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallTaskProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/HealthMonitor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxImpressionTracker.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxMessageViewModel.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxSessionManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxState.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModel.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAPI.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAppIntegration.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallRequest.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallTaskProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ IterableAPIMobileFrameworkDetector.swift,\ IterableCoreDataPersistence.swift,\ IterableEmbeddedManager.swift,\ IterableHtmlMessageViewController.swift,\ IterableInboxCell+Layout.swift,\ IterableNotifications.swift,\ IterablePersistence.swift,\ IterableRequest.swift,\ IterableRequestUtil.swift,\ IterableTask.swift,\ IterableTaskError.swift,\ IterableTaskManagedObject.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableCoreDataPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableHtmlMessageViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableInboxCell+Layout.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableNotifications.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterablePersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequestUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTask.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskError.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskManagedObject.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableCoreDataPersistence.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableEmbeddedManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableHtmlMessageViewController.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableInboxCell+Layout.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableNotifications.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterablePersistence.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequest.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequestUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTask.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskError.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskManagedObject.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ Constants.swift,\ CommerceItem.swift,\ IterableAction.swift,\ IterableActionContext.swift,\ IterableAttributionInfo.swift,\ IterableEmbeddedMessage.swift,\ IterableInAppMessage.swift,\ IterablePushNotificationMetadata.swift,\ RetryPolicy.swift,\ IterableAuthManagerProtocol.swift,\ IterableEmbeddedManagerProtocol.swift,\ IterableEmbeddedUpdateDelegate.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Constants.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/CommerceItem.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAction.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableActionContext.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAttributionInfo.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableEmbeddedMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableInAppMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/RetryPolicy.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/resource_bundle_accessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Constants.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/CommerceItem.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAction.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableActionContext.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAttributionInfo.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableEmbeddedMessage.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableInAppMessage.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/RetryPolicy.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DateProvider.swift,\ DeepLinkManager.swift,\ AbstractDiffCalculator.swift,\ Dwifft+UIKit.swift,\ Dwifft.swift,\ SectionedValues.swift,\ EmbeddedHelper.swift,\ EmbeddedMessagingProcessor.swift,\ EmbeddedMessagingSerialization.swift,\ EmbeddedSessionManager.swift,\ EmptyEmbeddedManager.swift,\ EmptyInAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Constants.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/CommerceItem.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAction.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableActionContext.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAttributionInfo.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableEmbeddedMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableInAppMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/RetryPolicy.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailure.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailureReason.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/APNSTypeChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ActionRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AppExtensionHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Auth.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AuthManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ClassExtensions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/CoreDataUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DataFieldsHelper.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/HealthMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxImpressionTracker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxMessageViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxState.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableCoreDataPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableHtmlMessageViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableInboxCell+Layout.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableNotifications.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterablePersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequestUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTask.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskError.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskManagedObject.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskResult.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskScheduler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableUserDefaults.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscEmbeddedClasses.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscInboxClasses.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Models.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkSession.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Pending.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestHandlerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestProcessorUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestSender.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableLogUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/NotificationHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/OrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/PersistenceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/ResourceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/UIColor+Extension.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/WebViewProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClient.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClientProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestCreator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestHandler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppCalculations.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppContentParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppDisplayer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppInternal.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager+Functions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppMessageParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableConfig.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableLogging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/IterableInboxView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxCell.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/GeneratedAssetSymbols.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name IterableSDK -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.4 -target-sdk-name xros2.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DateProvider.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DeepLinkManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/AbstractDiffCalculator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft+UIKit.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/SectionedValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedHelper.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingProcessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingSerialization.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedSessionManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyEmbeddedManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyInAppManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DateProvider.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DeepLinkManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/AbstractDiffCalculator.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft+UIKit.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/SectionedValues.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedHelper.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingProcessor.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingSerialization.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedSessionManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyEmbeddedManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyInAppManager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift:63:58: error: cannot find 'row' in scope
return self.sectionedValues[indexPath.section].1[row]
^~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift:11:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmbeddedSessionManager' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = EmbeddedSessionManager()
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift:10:14: note: class 'EmbeddedSessionManager' does not conform to the 'Sendable' protocol
public class EmbeddedSessionManager {
^
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift:11:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static let shared = EmbeddedSessionManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = EmbeddedSessionManager()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
LinkAssetCatalog /Users/admin/builder/spi-builder-workspace/swift-sdk/Resources/Assets.xcassets (in target 'IterableSDK_IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-linkAssetCatalog --thinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_output/thinned --thinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_generated_info.plist_unthinned --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle --plist-output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_generated_info.plist
note: Emplaced /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle/Assets.car (in target 'IterableSDK_IterableSDK' from project 'IterableSDK')
SwiftDriverJobDiscovery normal arm64 Emitting module for IterableSDK (in target 'IterableSDK' from project 'IterableSDK')
SwiftDriver\ Compilation\ Requirements IterableSDK normal arm64 com.apple.xcode.tools.swift.compiler (in target 'IterableSDK' from project 'IterableSDK')
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 IterableSDK -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK-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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/empty-IterableSDK_IterableSDK.plist (in target 'IterableSDK_IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/empty-IterableSDK_IterableSDK.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform xros -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/IterableEmbeddedView-PartialInfo.plist -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/SampleInboxCell-PartialInfo.plist -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_generated_info.plist -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle/Info.plist
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/IterableSDK-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK-Swift.h (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/IterableSDK-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftmodule (in target 'IterableSDK' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftdoc (in target 'IterableSDK' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.abi.json (in target 'IterableSDK' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftsourceinfo (in target 'IterableSDK' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ NetworkSession.swift,\ Pending.swift,\ RequestHandlerProtocol.swift,\ RequestProcessorUtil.swift,\ RequestSender.swift,\ DependencyContainer.swift,\ DependencyContainerProtocol.swift,\ IterableLogUtil.swift,\ IterableUtil.swift,\ IterableKeychain.swift,\ KeychainWrapper.swift,\ LocalStorage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkSession.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Pending.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestHandlerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestProcessorUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestSender.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableLogUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorage.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkSession.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Pending.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestHandlerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestProcessorUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestSender.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainer.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableLogUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorage.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriver\ Compilation IterableAppExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'IterableAppExtensions' from project 'IterableSDK')
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 IterableAppExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ DateProvider.swift,\ DeepLinkManager.swift,\ AbstractDiffCalculator.swift,\ Dwifft+UIKit.swift,\ Dwifft.swift,\ SectionedValues.swift,\ EmbeddedHelper.swift,\ EmbeddedMessagingProcessor.swift,\ EmbeddedMessagingSerialization.swift,\ EmbeddedSessionManager.swift,\ EmptyEmbeddedManager.swift,\ EmptyInAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift (in target 'IterableSDK' from project 'IterableSDK')
Building workspace spi-builder-workspace with scheme IterableSDK-Package
(3 failures)
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
IterableSDK: /Users/admin/builder/spi-builder-workspace
resolved source packages: IterableSDK
{
"dependencies" : [
],
"manifest_display_name" : "IterableSDK",
"name" : "IterableSDK",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "10.0"
}
],
"products" : [
{
"name" : "IterableSDK",
"targets" : [
"IterableSDK"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "IterableAppExtensions",
"targets" : [
"IterableAppExtensions"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "IterableSDK",
"module_type" : "SwiftTarget",
"name" : "IterableSDK",
"path" : "swift-sdk",
"product_memberships" : [
"IterableSDK"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/swift-sdk/Resources/Assets.xcassets",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/swift-sdk/Resources/IterableDataModel.xcdatamodeld",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/swift-sdk/Resources/PrivacyInfo.xcprivacy",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.xib",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/SampleInboxCell.xib",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Core/Constants.swift",
"Core/Models/CommerceItem.swift",
"Core/Models/IterableAction.swift",
"Core/Models/IterableActionContext.swift",
"Core/Models/IterableAttributionInfo.swift",
"Core/Models/IterableEmbeddedMessage.swift",
"Core/Models/IterableInAppMessage.swift",
"Core/Models/IterablePushNotificationMetadata.swift",
"Core/Models/RetryPolicy.swift",
"Core/Protocols/IterableAuthManagerProtocol.swift",
"Core/Protocols/IterableEmbeddedManagerProtocol.swift",
"Core/Protocols/IterableEmbeddedUpdateDelegate.swift",
"Core/Protocols/IterableInAppManagerProtocol.swift",
"Core/Protocols/IterableInboxViewControllerViewDelegate.swift",
"Core/Utilities/AuthFailure.swift",
"Core/Utilities/AuthFailureReason.swift",
"Internal/APNSTypeChecker.swift",
"Internal/ActionRunner.swift",
"Internal/AppExtensionHelper.swift",
"Internal/Auth.swift",
"Internal/AuthManager.swift",
"Internal/ClassExtensions.swift",
"Internal/CoreDataUtil.swift",
"Internal/DataFieldsHelper.swift",
"Internal/DateProvider.swift",
"Internal/DeepLinkManager.swift",
"Internal/Dwifft/AbstractDiffCalculator.swift",
"Internal/Dwifft/Dwifft+UIKit.swift",
"Internal/Dwifft/Dwifft.swift",
"Internal/Dwifft/SectionedValues.swift",
"Internal/EmbeddedHelper.swift",
"Internal/EmbeddedMessagingProcessor.swift",
"Internal/EmbeddedMessagingSerialization.swift",
"Internal/EmbeddedSessionManager.swift",
"Internal/EmptyEmbeddedManager.swift",
"Internal/EmptyInAppManager.swift",
"Internal/HealthMonitor.swift",
"Internal/InboxImpressionTracker.swift",
"Internal/InboxMessageViewModel.swift",
"Internal/InboxSessionManager.swift",
"Internal/InboxState.swift",
"Internal/InboxViewControllerViewModel.swift",
"Internal/InboxViewControllerViewModelProtocol.swift",
"Internal/InboxViewControllerViewModelView.swift",
"Internal/InternalIterableAPI.swift",
"Internal/InternalIterableAppIntegration.swift",
"Internal/IterableAPICallRequest.swift",
"Internal/IterableAPICallTaskProcessor.swift",
"Internal/IterableAPIMobileFrameworkDetector.swift",
"Internal/IterableCoreDataPersistence.swift",
"Internal/IterableEmbeddedManager.swift",
"Internal/IterableHtmlMessageViewController.swift",
"Internal/IterableInboxCell+Layout.swift",
"Internal/IterableNotifications.swift",
"Internal/IterablePersistence.swift",
"Internal/IterableRequest.swift",
"Internal/IterableRequestUtil.swift",
"Internal/IterableTask.swift",
"Internal/IterableTaskError.swift",
"Internal/IterableTaskManagedObject.swift",
"Internal/IterableTaskProcessor.swift",
"Internal/IterableTaskResult.swift",
"Internal/IterableTaskRunner.swift",
"Internal/IterableTaskScheduler.swift",
"Internal/IterableUserDefaults.swift",
"Internal/MiscEmbeddedClasses.swift",
"Internal/MiscInboxClasses.swift",
"Internal/Models.swift",
"Internal/Network/NetworkConnectivityChecker.swift",
"Internal/Network/NetworkConnectivityManager.swift",
"Internal/Network/NetworkHelper.swift",
"Internal/Network/NetworkMonitor.swift",
"Internal/Network/NetworkSession.swift",
"Internal/Pending.swift",
"Internal/RequestHandlerProtocol.swift",
"Internal/RequestProcessorUtil.swift",
"Internal/RequestSender.swift",
"Internal/Utilities/DependencyContainer.swift",
"Internal/Utilities/DependencyContainerProtocol.swift",
"Internal/Utilities/IterableLogUtil.swift",
"Internal/Utilities/IterableUtil.swift",
"Internal/Utilities/Keychain/IterableKeychain.swift",
"Internal/Utilities/Keychain/KeychainWrapper.swift",
"Internal/Utilities/LocalStorage.swift",
"Internal/Utilities/LocalStorageProtocol.swift",
"Internal/Utilities/NotificationHelper.swift",
"Internal/Utilities/OrderedDictionary.swift",
"Internal/Utilities/PersistenceHelper.swift",
"Internal/Utilities/ResourceHelper.swift",
"Internal/Utilities/UIColor+Extension.swift",
"Internal/Utilities/WebViewProtocol.swift",
"Internal/api-client/ApiClient.swift",
"Internal/api-client/ApiClientProtocol.swift",
"Internal/api-client/Request/OfflineRequestProcessor.swift",
"Internal/api-client/Request/OnlineRequestProcessor.swift",
"Internal/api-client/Request/RequestCreator.swift",
"Internal/api-client/Request/RequestHandler.swift",
"Internal/api-client/Request/RequestProcessorProtocol.swift",
"Internal/in-app/InAppCalculations.swift",
"Internal/in-app/InAppContentParser.swift",
"Internal/in-app/InAppDisplayer.swift",
"Internal/in-app/InAppHelper.swift",
"Internal/in-app/InAppInternal.swift",
"Internal/in-app/InAppManager+Functions.swift",
"Internal/in-app/InAppManager.swift",
"Internal/in-app/InAppMessageParser.swift",
"Internal/in-app/InAppPersistence.swift",
"Internal/in-app/InAppPresenter.swift",
"SDK/IterableAPI.swift",
"SDK/IterableAppIntegration.swift",
"SDK/IterableConfig.swift",
"SDK/IterableLogging.swift",
"SDK/IterableMessaging.swift",
"ui-components/swiftui/InboxViewRepresentable.swift",
"ui-components/swiftui/IterableInboxView.swift",
"ui-components/uikit/IterableEmbeddedView.swift",
"ui-components/uikit/IterableInboxCell.swift",
"ui-components/uikit/IterableInboxNavigationViewController.swift",
"ui-components/uikit/IterableInboxViewController.swift"
],
"type" : "library"
},
{
"c99name" : "IterableAppExtensions",
"module_type" : "SwiftTarget",
"name" : "IterableAppExtensions",
"path" : "notification-extension",
"product_memberships" : [
"IterableAppExtensions"
],
"sources" : [
"ITBNotificationServiceExtension.swift",
"NotificationContentParser.swift",
"NotificationExtensionConstants.swift",
"TestFile.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"IterableAppExtensions",
"IterableSDK",
"IterableSDK-Package"
]
}
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"IterableAppExtensions",
"IterableSDK",
"IterableSDK-Package"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme IterableSDK-Package -destination generic/platform=xrOS
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme IterableSDK-Package -destination generic/platform=xrOS
Resolve Package Graph
Resolved source packages:
IterableSDK: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (5 targets)
Target 'IterableSDK' in project 'IterableSDK'
➜ Explicit dependency on target 'IterableSDK' in project 'IterableSDK'
➜ Explicit dependency on target 'IterableSDK_IterableSDK' in project 'IterableSDK'
Target 'IterableSDK' in project 'IterableSDK'
➜ Explicit dependency on target 'IterableSDK_IterableSDK' in project 'IterableSDK'
Target 'IterableSDK_IterableSDK' in project 'IterableSDK' (no dependencies)
Target 'IterableAppExtensions' in project 'IterableSDK'
➜ Explicit dependency on target 'IterableAppExtensions' in project 'IterableSDK'
Target 'IterableAppExtensions' in project 'IterableSDK' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/ibtool --version --output-format xml1
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/momc --dry-run --action generate --swift-version 5 --sdkroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xros-deployment-target 1.0 --module IterableSDK /Users/admin/builder/spi-builder-workspace/swift-sdk/Resources/IterableDataModel.xcdatamodeld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/CoreDataGenerated/IterableDataModel
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool --version --output-format xml1
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 2b42b4bc3c02c90263ef9c9437fe1b9a
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/2b42b4bc3c02c90263ef9c9437fe1b9a.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/empty-IterableSDK_IterableSDK.plist (in target 'IterableSDK_IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/empty-IterableSDK_IterableSDK.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform xros -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/IterableEmbeddedView-PartialInfo.plist -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/SampleInboxCell-PartialInfo.plist -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK_IterableSDK.build/assetcatalog_generated_info.plist -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle/Info.plist
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle (in target 'IterableSDK_IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle (in target 'IterableSDK_IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableSDK_IterableSDK.bundle
SwiftDriver IterableSDK normal arm64 com.apple.xcode.tools.swift.compiler (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name IterableSDK -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK-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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.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/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver IterableAppExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name IterableAppExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ ITBNotificationServiceExtension.swift /Users/admin/builder/spi-builder-workspace/notification-extension/ITBNotificationServiceExtension.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/notification-extension/ITBNotificationServiceExtension.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ TestFile.swift /Users/admin/builder/spi-builder-workspace/notification-extension/TestFile.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/notification-extension/TestFile.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ NotificationExtensionConstants.swift /Users/admin/builder/spi-builder-workspace/notification-extension/NotificationExtensionConstants.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/notification-extension/NotificationExtensionConstants.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ NotificationContentParser.swift /Users/admin/builder/spi-builder-workspace/notification-extension/NotificationContentParser.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/notification-extension/NotificationContentParser.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ IterableAppExtensions (in target 'IterableAppExtensions' from project 'IterableSDK')
EmitSwiftModule normal arm64 (in target 'IterableAppExtensions' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ IterableInAppManagerProtocol.swift,\ IterableInboxViewControllerViewDelegate.swift,\ AuthFailure.swift,\ AuthFailureReason.swift,\ APNSTypeChecker.swift,\ ActionRunner.swift,\ AppExtensionHelper.swift,\ Auth.swift,\ AuthManager.swift,\ ClassExtensions.swift,\ CoreDataUtil.swift,\ DataFieldsHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailure.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailureReason.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/APNSTypeChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ActionRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AppExtensionHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Auth.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AuthManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ClassExtensions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/CoreDataUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DataFieldsHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailure.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailureReason.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/APNSTypeChecker.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ActionRunner.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AppExtensionHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Auth.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AuthManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ClassExtensions.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/CoreDataUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DataFieldsHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ RequestHandler.swift,\ RequestProcessorProtocol.swift,\ InAppCalculations.swift,\ InAppContentParser.swift,\ InAppDisplayer.swift,\ InAppHelper.swift,\ InAppInternal.swift,\ InAppManager+Functions.swift,\ InAppManager.swift,\ InAppMessageParser.swift,\ InAppPersistence.swift,\ InAppPresenter.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestHandler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppCalculations.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppContentParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppDisplayer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppInternal.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager+Functions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppMessageParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestHandler.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppCalculations.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppContentParser.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppDisplayer.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppInternal.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager+Functions.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppMessageParser.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ IterableSDK (in target 'IterableSDK' from project 'IterableSDK')
EmitSwiftModule normal arm64 (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ IterableAPI.swift,\ IterableAppIntegration.swift,\ IterableConfig.swift,\ IterableLogging.swift,\ IterableMessaging.swift,\ InboxViewRepresentable.swift,\ IterableInboxView.swift,\ IterableEmbeddedView.swift,\ IterableInboxCell.swift,\ IterableInboxNavigationViewController.swift,\ IterableInboxViewController.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableConfig.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableLogging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/IterableInboxView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxCell.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableConfig.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableLogging.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/IterableInboxView.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxCell.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ NetworkSession.swift,\ Pending.swift,\ RequestHandlerProtocol.swift,\ RequestProcessorUtil.swift,\ RequestSender.swift,\ DependencyContainer.swift,\ DependencyContainerProtocol.swift,\ IterableLogUtil.swift,\ IterableUtil.swift,\ IterableKeychain.swift,\ KeychainWrapper.swift,\ LocalStorage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkSession.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Pending.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestHandlerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestProcessorUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestSender.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableLogUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorage.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkSession.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Pending.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestHandlerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestProcessorUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestSender.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainer.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableLogUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorage.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ HealthMonitor.swift,\ InboxImpressionTracker.swift,\ InboxMessageViewModel.swift,\ InboxSessionManager.swift,\ InboxState.swift,\ InboxViewControllerViewModel.swift,\ InboxViewControllerViewModelProtocol.swift,\ InboxViewControllerViewModelView.swift,\ InternalIterableAPI.swift,\ InternalIterableAppIntegration.swift,\ IterableAPICallRequest.swift,\ IterableAPICallTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/HealthMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxImpressionTracker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxMessageViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxState.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallTaskProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/HealthMonitor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxImpressionTracker.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxMessageViewModel.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxSessionManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxState.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModel.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAPI.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAppIntegration.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallRequest.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallTaskProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling TestFile.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 Compiling\ DateProvider.swift,\ DeepLinkManager.swift,\ AbstractDiffCalculator.swift,\ Dwifft+UIKit.swift,\ Dwifft.swift,\ SectionedValues.swift,\ EmbeddedHelper.swift,\ EmbeddedMessagingProcessor.swift,\ EmbeddedMessagingSerialization.swift,\ EmbeddedSessionManager.swift,\ EmptyEmbeddedManager.swift,\ EmptyInAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Constants.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/CommerceItem.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAction.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableActionContext.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAttributionInfo.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableEmbeddedMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableInAppMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/RetryPolicy.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInAppManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableInboxViewControllerViewDelegate.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailure.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Utilities/AuthFailureReason.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/APNSTypeChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ActionRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AppExtensionHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Auth.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/AuthManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/ClassExtensions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/CoreDataUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DataFieldsHelper.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/HealthMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxImpressionTracker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxMessageViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxState.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModel.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InboxViewControllerViewModelView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/InternalIterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPICallTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableCoreDataPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableHtmlMessageViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableInboxCell+Layout.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableNotifications.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterablePersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequestUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTask.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskError.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskManagedObject.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskResult.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskRunner.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskScheduler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableUserDefaults.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscEmbeddedClasses.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/MiscInboxClasses.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Models.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityChecker.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkConnectivityManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkMonitor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Network/NetworkSession.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Pending.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestHandlerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestProcessorUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/RequestSender.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/DependencyContainerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableLogUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/IterableUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/IterableKeychain.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/Keychain/KeychainWrapper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/NotificationHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/OrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/PersistenceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/ResourceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/UIColor+Extension.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/WebViewProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClient.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClientProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestCreator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestHandler.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestProcessorProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppCalculations.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppContentParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppDisplayer.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppInternal.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager+Functions.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppMessageParser.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/in-app/InAppPresenter.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAPI.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableAppIntegration.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableConfig.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableLogging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/SDK/IterableMessaging.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/InboxViewRepresentable.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/swiftui/IterableInboxView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableEmbeddedView.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxCell.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxNavigationViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/ui-components/uikit/IterableInboxViewController.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/GeneratedAssetSymbols.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/IterableSDK_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name IterableSDK -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.4 -target-sdk-name xros2.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DateProvider.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DeepLinkManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/AbstractDiffCalculator.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft+UIKit.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/SectionedValues.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedHelper.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingProcessor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingSerialization.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedSessionManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyEmbeddedManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyInAppManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DateProvider.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/DeepLinkManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/AbstractDiffCalculator.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft+UIKit.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/Dwifft.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/SectionedValues.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedHelper.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingProcessor.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedMessagingSerialization.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmbeddedSessionManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyEmbeddedManager.o -index-unit-output-path /IterableSDK.build/Debug-xros/IterableSDK.build/Objects-normal/arm64/EmptyInAppManager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift:63:58: error: cannot find 'row' in scope
return self.sectionedValues[indexPath.section].1[row]
^~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling NotificationExtensionConstants.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 Compiling\ LocalStorageProtocol.swift,\ NotificationHelper.swift,\ OrderedDictionary.swift,\ PersistenceHelper.swift,\ ResourceHelper.swift,\ UIColor+Extension.swift,\ WebViewProtocol.swift,\ ApiClient.swift,\ ApiClientProtocol.swift,\ OfflineRequestProcessor.swift,\ OnlineRequestProcessor.swift,\ RequestCreator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/NotificationHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/OrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/PersistenceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/ResourceHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/UIColor+Extension.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/WebViewProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClient.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClientProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestCreator.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/LocalStorageProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/NotificationHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/OrderedDictionary.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/PersistenceHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/ResourceHelper.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/UIColor+Extension.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Utilities/WebViewProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClient.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/ApiClientProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OfflineRequestProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/OnlineRequestProcessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/api-client/Request/RequestCreator.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for IterableAppExtensions (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftDriver\ Compilation\ Requirements IterableAppExtensions normal arm64 com.apple.xcode.tools.swift.compiler (in target 'IterableAppExtensions' from project 'IterableSDK')
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 IterableAppExtensions -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling NotificationContentParser.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ Constants.swift,\ CommerceItem.swift,\ IterableAction.swift,\ IterableActionContext.swift,\ IterableAttributionInfo.swift,\ IterableEmbeddedMessage.swift,\ IterableInAppMessage.swift,\ IterablePushNotificationMetadata.swift,\ RetryPolicy.swift,\ IterableAuthManagerProtocol.swift,\ IterableEmbeddedManagerProtocol.swift,\ IterableEmbeddedUpdateDelegate.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Constants.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/CommerceItem.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAction.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableActionContext.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAttributionInfo.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableEmbeddedMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableInAppMessage.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/RetryPolicy.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableSDK.build/DerivedSources/resource_bundle_accessor.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Constants.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/CommerceItem.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAction.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableActionContext.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableAttributionInfo.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableEmbeddedMessage.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterableInAppMessage.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/IterablePushNotificationMetadata.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Models/RetryPolicy.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableAuthManagerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedManagerProtocol.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Core/Protocols/IterableEmbeddedUpdateDelegate.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ IterableAPIMobileFrameworkDetector.swift,\ IterableCoreDataPersistence.swift,\ IterableEmbeddedManager.swift,\ IterableHtmlMessageViewController.swift,\ IterableInboxCell+Layout.swift,\ IterableNotifications.swift,\ IterablePersistence.swift,\ IterableRequest.swift,\ IterableRequestUtil.swift,\ IterableTask.swift,\ IterableTaskError.swift,\ IterableTaskManagedObject.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableCoreDataPersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableHtmlMessageViewController.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableInboxCell+Layout.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableNotifications.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterablePersistence.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequest.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequestUtil.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTask.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskError.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskManagedObject.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableAPIMobileFrameworkDetector.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableCoreDataPersistence.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableEmbeddedManager.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableHtmlMessageViewController.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableInboxCell+Layout.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableNotifications.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterablePersistence.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequest.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableRequestUtil.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTask.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskError.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/IterableTaskManagedObject.swift (in target 'IterableSDK' from project 'IterableSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ITBNotificationServiceExtension.swift (in target 'IterableAppExtensions' from project 'IterableSDK')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.abi.json (in target 'IterableAppExtensions' from project 'IterableSDK')
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/IterableSDK.build/Debug-xros/IterableAppExtensions.build/Objects-normal/arm64/IterableAppExtensions.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/IterableAppExtensions.swiftmodule/arm64-apple-xros.abi.json
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ DateProvider.swift,\ DeepLinkManager.swift,\ AbstractDiffCalculator.swift,\ Dwifft+UIKit.swift,\ Dwifft.swift,\ SectionedValues.swift,\ EmbeddedHelper.swift,\ EmbeddedMessagingProcessor.swift,\ EmbeddedMessagingSerialization.swift,\ EmbeddedSessionManager.swift,\ EmptyEmbeddedManager.swift,\ EmptyInAppManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DateProvider.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/DeepLinkManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft+UIKit.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/Dwifft.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/SectionedValues.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedHelper.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingProcessor.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedMessagingSerialization.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmbeddedSessionManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyEmbeddedManager.swift /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/EmptyInAppManager.swift (in target 'IterableSDK' from project 'IterableSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/swift-sdk/Internal/Dwifft/AbstractDiffCalculator.swift (in target 'IterableSDK' from project 'IterableSDK')
Building workspace spi-builder-workspace with scheme IterableSDK-Package
(3 failures)
BUILD FAILURE 6.1 visionOS