The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Mindbox, reference 2.15.0 (0f3f06), with Swift 6.1 for iOS using Xcode 16.3 on 6 Apr 2026 12:17:48 UTC.

Swift 6 data race errors: 59

Build Command

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

Build Log

            y = UIScreen.main.bounds.height - finalHeight - safeAreaInset
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:57:49: note: class property declared here
@property(class, nonatomic, readonly) UIScreen *mainScreen API_DEPRECATED("Use a UIScreen instance found through context instead: i.e, view.window.windowScene.screen", ios(2.0, API_TO_BE_DEPRECATED), visionos(1.0, API_TO_BE_DEPRECATED)) API_UNAVAILABLE(watchos); // the device's internal screen
                                                ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/SnackbarPresentationStrategy.swift:117:10: note: add '@MainActor' to make instance method 'getYPosition(gravity:finalHeight:safeAreaInset:)' part of global actor 'MainActor'
    func getYPosition(gravity: GravityVerticalType, finalHeight: CGFloat, safeAreaInset: CGFloat) -> CGFloat {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:20:16: warning: main actor-isolated property 'rootViewController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        window.rootViewController = viewController
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:66:57: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0));  // default is nil
                                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:18:10: note: add '@MainActor' to make instance method 'present(id:in:using:)' part of global actor 'MainActor'
    func present(id: String, in window: UIWindow, using viewController: UIViewController) -> Bool {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:21:16: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        window.backgroundColor = .clear
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:18:10: note: add '@MainActor' to make instance method 'present(id:in:using:)' part of global actor 'MainActor'
    func present(id: String, in window: UIWindow, using viewController: UIViewController) -> Bool {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:24:16: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        window.alpha = 0.00
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic)                 CGFloat           alpha;                      // animatable. default is 1.0
                                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:18:10: note: add '@MainActor' to make instance method 'present(id:in:using:)' part of global actor 'MainActor'
    func present(id: String, in window: UIWindow, using viewController: UIViewController) -> Bool {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:25:16: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        window.isUserInteractionEnabled = false
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;  // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:18:10: note: add '@MainActor' to make instance method 'present(id:in:using:)' part of global actor 'MainActor'
    func present(id: String, in window: UIWindow, using viewController: UIViewController) -> Bool {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:26:16: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        window.isHidden = false
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isHidden) BOOL              hidden;                     // default is NO. doesn't check superviews
                                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:18:10: note: add '@MainActor' to make instance method 'present(id:in:using:)' part of global actor 'MainActor'
    func present(id: String, in window: UIWindow, using viewController: UIViewController) -> Bool {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:32:28: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        _ = viewController.view
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:18:10: note: add '@MainActor' to make instance method 'present(id:in:using:)' part of global actor 'MainActor'
    func present(id: String, in window: UIWindow, using viewController: UIViewController) -> Bool {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:40:37: warning: main actor-isolated property 'isHidden' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.view.window?.isHidden = true
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isHidden) BOOL              hidden;                     // default is NO. doesn't check superviews
                                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:39:10: note: add '@MainActor' to make instance method 'dismiss(viewController:)' part of global actor 'MainActor'
    func dismiss(viewController: UIViewController) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:40:29: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.view.window?.isHidden = true
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow     *window;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:39:10: note: add '@MainActor' to make instance method 'dismiss(viewController:)' part of global actor 'MainActor'
    func dismiss(viewController: UIViewController) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:40:24: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.view.window?.isHidden = true
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:39:10: note: add '@MainActor' to make instance method 'dismiss(viewController:)' part of global actor 'MainActor'
    func dismiss(viewController: UIViewController) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:41:37: warning: main actor-isolated property 'rootViewController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.view.window?.rootViewController = nil
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:66:57: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0));  // default is nil
                                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:39:10: note: add '@MainActor' to make instance method 'dismiss(viewController:)' part of global actor 'MainActor'
    func dismiss(viewController: UIViewController) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:41:29: warning: main actor-isolated property 'window' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.view.window?.rootViewController = nil
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,readonly) UIWindow     *window;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:39:10: note: add '@MainActor' to make instance method 'dismiss(viewController:)' part of global actor 'MainActor'
    func dismiss(viewController: UIViewController) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:41:24: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.view.window?.rootViewController = nil
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:116:54: note: property declared here
@property(null_resettable, nonatomic,strong) UIView *view; // The getter first invokes [self loadView] if the view hasn't been set yet. Subclasses must call super if they override the setter or getter.
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:39:10: note: add '@MainActor' to make instance method 'dismiss(viewController:)' part of global actor 'MainActor'
    func dismiss(viewController: UIViewController) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:57:17: warning: main actor-isolated property 'windowLevel' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        window?.windowLevel = .normal + 3
                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:37:36: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIWindowLevel windowLevel;                   // default = 0.0
                                   ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:49:18: note: add '@MainActor' to make instance method 'makeInAppMessageWindow()' part of global actor 'MainActor'
    private func makeInAppMessageWindow() -> UIWindow? {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:63:52: warning: main actor-isolated property 'connectedScenes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        for connectedScene in UIApplication.shared.connectedScenes {
                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:170:50: note: property declared here
@property(nonatomic, readonly) NSSet<UIScene *> *connectedScenes API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos);
                                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:63:45: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        for connectedScene in UIApplication.shared.connectedScenes {
                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:64:83: warning: main actor-isolated property 'activationState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let windowScene = connectedScene as? UIWindowScene, connectedScene.activationState == .foregroundActive {
                                                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h:38:56: note: property declared here
@property (nonatomic, readonly) UISceneActivationState activationState;
                                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:69:37: warning: main actor-isolated property 'connectedScenes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return UIApplication.shared.connectedScenes.first as? UIWindowScene
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:170:50: note: property declared here
@property(nonatomic, readonly) NSSet<UIScene *> *connectedScenes API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos);
                                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:69:30: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return UIApplication.shared.connectedScenes.first as? UIWindowScene
                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift:75:20: warning: call to main actor-isolated initializer 'init(windowScene:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            return UIWindow(windowScene: mostSuitableScene)
                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:25:1: note: calls to initializer 'init(windowScene:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithWindowScene:(UIWindowScene *)windowScene API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos);
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/CrossView.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:15:31: warning: call to main actor-isolated initializer 'init(lineColorHex:lineWidth:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let closeButton = CrossView(lineColorHex: color, lineWidth: closeButtonElement.lineWidth)
                              ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/CrossView.swift:27:17: note: calls to initializer 'init(lineColorHex:lineWidth:)' from outside of its actor context are implicitly asynchronous
    convenience init(lineColorHex: String?, lineWidth: Int?) {
                ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/CrossView.swift:27:17: note: main actor isolation inferred from inheritance from class 'UIView'
    convenience init(lineColorHex: String?, lineWidth: Int?) {
                ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:12:10: note: add '@MainActor' to make instance method 'create(from:with:)' part of global actor 'MainActor'
    func create(from element: ContentElement, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:16:25: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            closeButton.isUserInteractionEnabled = true
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled;  // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:12:10: note: add '@MainActor' to make instance method 'create(from:with:)' part of global actor 'MainActor'
    func create(from element: ContentElement, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:17:35: warning: call to main actor-isolated initializer 'init(target:action:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let closeRecognizer = UILongPressGestureRecognizer(target: controller, action: #selector(controller.onCloseButton))
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:40:1: note: calls to initializer 'init(target:action:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithTarget:(nullable id)target action:(nullable SEL)action NS_DESIGNATED_INITIALIZER; // designated initializer
^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:12:10: note: add '@MainActor' to make instance method 'create(from:with:)' part of global actor 'MainActor'
    func create(from element: ContentElement, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:18:29: warning: main actor-isolated property 'minimumPressDuration' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            closeRecognizer.minimumPressDuration = 0
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h:27:38: note: mutation of this property is only permitted within the actor
@property (nonatomic) NSTimeInterval minimumPressDuration; // Default is 0.5. Time in seconds the fingers must be held down for the gesture to be recognized
                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:12:10: note: add '@MainActor' to make instance method 'create(from:with:)' part of global actor 'MainActor'
    func create(from element: ContentElement, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:19:25: warning: call to main actor-isolated instance method 'addGestureRecognizer' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            closeButton.addGestureRecognizer(closeRecognizer)
                        ^
UIKit.UIView.addGestureRecognizer:3:24: note: calls to instance method 'addGestureRecognizer' from outside of its actor context are implicitly asynchronous
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:12:10: note: add '@MainActor' to make instance method 'create(from:with:)' part of global actor 'MainActor'
    func create(from element: ContentElement, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:33:48: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let horizontalOffset = (parentView.frame.width - CGFloat(size.width)) * right
                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect            frame;
                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:34:46: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let verticalOffset = (parentView.frame.height - CGFloat(size.height)) * top
                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect            frame;
                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:37:22: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                view.translatesAutoresizingMaskIntoConstraints = false
                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:38:36: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                NSLayoutConstraint.activate([
                                   ^
UIKit.NSLayoutConstraint.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
  @MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
                             ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:39:41: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -horizontalOffset),
                                        ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:39:26: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -horizontalOffset),
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:39:72: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -horizontalOffset),
                                                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:40:36: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    view.topAnchor.constraint(equalTo: parentView.topAnchor, constant: verticalOffset),
                                   ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:40:26: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    view.topAnchor.constraint(equalTo: parentView.topAnchor, constant: verticalOffset),
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:40:67: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    view.topAnchor.constraint(equalTo: parentView.topAnchor, constant: verticalOffset),
                                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:41:38: warning: call to main actor-isolated instance method 'constraint(equalToConstant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    view.widthAnchor.constraint(equalToConstant: CGFloat(size.width)),
                                     ^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalToConstant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalToConstant c: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:41:26: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    view.widthAnchor.constraint(equalToConstant: CGFloat(size.width)),
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:42:39: warning: call to main actor-isolated instance method 'constraint(equalToConstant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    view.heightAnchor.constraint(equalToConstant: CGFloat(size.height))
                                      ^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalToConstant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalToConstant c: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:42:26: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    view.heightAnchor.constraint(equalToConstant: CGFloat(size.height))
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:27:10: note: add '@MainActor' to make instance method 'setupConstraints(for:from:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, from element: ContentElement, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:17:35: warning: sending value of non-Sendable type 'any GestureHandler' risks causing data races; this is an error in the Swift 6 language mode
            let closeRecognizer = UILongPressGestureRecognizer(target: controller, action: #selector(controller.onCloseButton))
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift:17:35: note: sending task-isolated value of non-Sendable type 'any GestureHandler' to main actor-isolated initializer 'init(target:action:)' risks causing races in between task-isolated and main actor-isolated uses
            let closeRecognizer = UILongPressGestureRecognizer(target: controller, action: #selector(controller.onCloseButton))
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/ElementFactory/ElementFactory.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/InAppImageOnlyView.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:15:29: warning: call to main actor-isolated initializer 'init(image:action:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let inAppView = InAppImageOnlyView(image: image, action: imageContentBackgroundLayer.action)
                            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/InAppImageOnlyView.swift:17:5: note: calls to initializer 'init(image:action:)' from outside of its actor context are implicitly asynchronous
    init(image: UIImage, action: ContentBackgroundLayerAction?) {
    ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/InAppImageOnlyView.swift:17:5: note: main actor isolation inferred from inheritance from class 'UIView'
    init(image: UIImage, action: ContentBackgroundLayerAction?) {
    ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:13:10: note: add '@MainActor' to make instance method 'create(from:layer:in:with:)' part of global actor 'MainActor'
    func create(from image: UIImage, layer: ContentBackgroundLayer, in view: UIView, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:16:45: warning: call to main actor-isolated initializer 'init(target:action:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let imageTapGestureRecognizer = UITapGestureRecognizer(target: controller, action: #selector(controller.imageTapped(_:)))
                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h:40:1: note: calls to initializer 'init(target:action:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithTarget:(nullable id)target action:(nullable SEL)action NS_DESIGNATED_INITIALIZER; // designated initializer
^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:13:10: note: add '@MainActor' to make instance method 'create(from:layer:in:with:)' part of global actor 'MainActor'
    func create(from image: UIImage, layer: ContentBackgroundLayer, in view: UIView, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:17:23: warning: call to main actor-isolated instance method 'addGestureRecognizer' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            inAppView.addGestureRecognizer(imageTapGestureRecognizer)
                      ^
UIKit.UIView.addGestureRecognizer:3:24: note: calls to instance method 'addGestureRecognizer' from outside of its actor context are implicitly asynchronous
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:13:10: note: add '@MainActor' to make instance method 'create(from:layer:in:with:)' part of global actor 'MainActor'
    func create(from image: UIImage, layer: ContentBackgroundLayer, in view: UIView, with controller: GestureHandler) -> UIView? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:26:14: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.translatesAutoresizingMaskIntoConstraints = false
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:27:28: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        NSLayoutConstraint.activate([
                           ^
UIKit.NSLayoutConstraint.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
  @MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
                             ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:28:32: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.leadingAnchor.constraint(equalTo: parentView.leadingAnchor, constant: 20),
                               ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:28:18: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.leadingAnchor.constraint(equalTo: parentView.leadingAnchor, constant: 20),
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:28:63: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.leadingAnchor.constraint(equalTo: parentView.leadingAnchor, constant: 20),
                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:29:33: warning: call to main actor-isolated instance method 'constraint(equalTo:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -20),
                                ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:constant:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>, constant c: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:29:18: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -20),
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:29:64: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -20),
                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:30:32: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.centerYAnchor.constraint(equalTo: parentView.centerYAnchor),
                               ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:30:18: warning: main actor-isolated property 'centerYAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.centerYAnchor.constraint(equalTo: parentView.centerYAnchor),
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:581:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *centerYAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:30:63: warning: main actor-isolated property 'centerYAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.centerYAnchor.constraint(equalTo: parentView.centerYAnchor),
                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:581:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *centerYAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:31:30: warning: call to main actor-isolated instance method 'constraint(equalTo:multiplier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.widthAnchor.constraint(equalTo: view.heightAnchor, multiplier: 3 / 4)
                             ^
UIKit.NSLayoutDimension.constraint:2:22: note: calls to instance method 'constraint(equalTo:multiplier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutDimension, multiplier m: CGFloat) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:31:18: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.widthAnchor.constraint(equalTo: view.heightAnchor, multiplier: 3 / 4)
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:31:55: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.widthAnchor.constraint(equalTo: view.heightAnchor, multiplier: 3 / 4)
                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:25:10: note: add '@MainActor' to make instance method 'setupConstraints(for:in:)' part of global actor 'MainActor'
    func setupConstraints(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:36:14: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        view.translatesAutoresizingMaskIntoConstraints = false
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: mutation of this property is only permitted within the actor
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:37:28: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        NSLayoutConstraint.activate([
                           ^
UIKit.NSLayoutConstraint.activate:3:30: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
  @MainActor open class func activate(_ constraints: [NSLayoutConstraint])}
                             ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:38:28: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.topAnchor.constraint(equalTo: parentView.topAnchor),
                           ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:38:18: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.topAnchor.constraint(equalTo: parentView.topAnchor),
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:38:59: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.topAnchor.constraint(equalTo: parentView.topAnchor),
                                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:39:31: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.bottomAnchor.constraint(equalTo: parentView.bottomAnchor),
                              ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:39:18: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.bottomAnchor.constraint(equalTo: parentView.bottomAnchor),
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:39:62: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.bottomAnchor.constraint(equalTo: parentView.bottomAnchor),
                                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:40:32: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.leadingAnchor.constraint(equalTo: parentView.leadingAnchor),
                               ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:40:18: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.leadingAnchor.constraint(equalTo: parentView.leadingAnchor),
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:40:63: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.leadingAnchor.constraint(equalTo: parentView.leadingAnchor),
                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:41:33: warning: call to main actor-isolated instance method 'constraint(equalTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor)
                                ^
UIKit.NSLayoutAnchor.constraint:2:22: note: calls to instance method 'constraint(equalTo:)' from outside of its actor context are implicitly asynchronous
@MainActor open func constraint(equalTo anchor: NSLayoutAnchor<AnchorType>) -> NSLayoutConstraint}
                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:41:18: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor)
                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:41:64: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            view.trailingAnchor.constraint(equalTo: parentView.trailingAnchor)
                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:35:10: note: add '@MainActor' to make instance method 'setupConstraintsSnackbar(for:in:)' part of global actor 'MainActor'
    func setupConstraintsSnackbar(for view: UIView, in parentView: UIView) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:16:45: warning: sending value of non-Sendable type 'any GestureHandler' risks causing data races; this is an error in the Swift 6 language mode
            let imageTapGestureRecognizer = UITapGestureRecognizer(target: controller, action: #selector(controller.imageTapped(_:)))
                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift:16:45: note: sending task-isolated value of non-Sendable type 'any GestureHandler' to main actor-isolated initializer 'init(target:action:)' risks causing races in between task-isolated and main actor-isolated uses
            let imageTapGestureRecognizer = UITapGestureRecognizer(target: controller, action: #selector(controller.imageTapped(_:)))
                                            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/CommonViews/LayersFactory/LayerFactory.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:32:9: warning: main actor-isolated property 'layers' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    var layers = [UIView]()
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:28:52: note: add '@preconcurrency' to the 'InappViewControllerProtocol' conformance to defer isolation checking to run time
final class ModalViewController: UIViewController, InappViewControllerProtocol {
                                                   ^
                                                   @preconcurrency
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:12:9: note: requirement 'layers' declared here
    var layers: [UIView] { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:33:9: warning: main actor-isolated property 'elements' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    var elements = [UIView]()
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:13:9: note: requirement 'elements' declared here
    var elements: [UIView] { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:34:9: warning: main actor-isolated property 'elementFactories' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    let elementFactories: [ContentElementType: ElementFactory] = [
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:14:9: note: requirement 'elementFactories' declared here
    var elementFactories: [ContentElementType: ElementFactory] { get }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:38:9: warning: main actor-isolated property 'layersFactories' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    let layersFactories: [ContentBackgroundLayerType: LayerFactory] = [
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:15:9: note: requirement 'layersFactories' declared here
    var layersFactories: [ContentBackgroundLayerType: LayerFactory] { get }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:166:10: warning: main actor-isolated instance method 'imageTapped' cannot be used to satisfy nonisolated requirement from protocol 'GestureHandler'; this is an error in the Swift 6 language mode
    func imageTapped(_ sender: UITapGestureRecognizer) {
         ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:166:10: note: add 'nonisolated' to 'imageTapped' to make this instance method not isolated to the actor
    func imageTapped(_ sender: UITapGestureRecognizer) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:164:32: note: add '@preconcurrency' to the 'GestureHandler' conformance to defer isolation checking to run time
extension ModalViewController: GestureHandler {
                               ^
                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:22:10: note: mark the protocol requirement 'imageTapped' 'async' to allow actor-isolated conformances
    func imageTapped(_ sender: UITapGestureRecognizer)
         ^
                                                       async
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:182:10: warning: main actor-isolated instance method 'onCloseButton' cannot be used to satisfy nonisolated requirement from protocol 'GestureHandler'; this is an error in the Swift 6 language mode
    func onCloseButton(_ gesture: UILongPressGestureRecognizer) {
         ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:182:10: note: add 'nonisolated' to 'onCloseButton' to make this instance method not isolated to the actor
    func onCloseButton(_ gesture: UILongPressGestureRecognizer) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:25:10: note: mark the protocol requirement 'onCloseButton' 'async' to allow actor-isolated conformances
    func onCloseButton(_ gesture: UILongPressGestureRecognizer)
         ^
                                                                async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarView.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:49:20: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
        static let oneThirdScreenHeight: CGFloat = UIScreen.main.bounds.height / Constants.screenPart
                   ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:16:9: warning: main actor-isolated property 'layers' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    var layers = [UIView]()
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:12:49: note: add '@preconcurrency' to the 'InappViewControllerProtocol' conformance to defer isolation checking to run time
class SnackbarViewController: UIViewController, InappViewControllerProtocol {
                                                ^
                                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:12:9: note: requirement 'layers' declared here
    var layers: [UIView] { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:17:9: warning: main actor-isolated property 'elements' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    var elements = [UIView]()
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:13:9: note: requirement 'elements' declared here
    var elements: [UIView] { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:19:9: warning: main actor-isolated property 'elementFactories' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    let elementFactories: [ContentElementType: ElementFactory] = [
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:14:9: note: requirement 'elementFactories' declared here
    var elementFactories: [ContentElementType: ElementFactory] { get }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:23:9: warning: main actor-isolated property 'layersFactories' cannot be used to satisfy nonisolated requirement from protocol 'InappViewControllerProtocol'; this is an error in the Swift 6 language mode
    let layersFactories: [ContentBackgroundLayerType: LayerFactory] = [
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:15:9: note: requirement 'layersFactories' declared here
    var layersFactories: [ContentBackgroundLayerType: LayerFactory] { get }
        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:230:10: warning: main actor-isolated instance method 'imageTapped' cannot be used to satisfy nonisolated requirement from protocol 'GestureHandler'; this is an error in the Swift 6 language mode
    func imageTapped(_ sender: UITapGestureRecognizer) {
         ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:230:10: note: add 'nonisolated' to 'imageTapped' to make this instance method not isolated to the actor
    func imageTapped(_ sender: UITapGestureRecognizer) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:228:35: note: add '@preconcurrency' to the 'GestureHandler' conformance to defer isolation checking to run time
extension SnackbarViewController: GestureHandler {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:22:10: note: mark the protocol requirement 'imageTapped' 'async' to allow actor-isolated conformances
    func imageTapped(_ sender: UITapGestureRecognizer)
         ^
                                                       async
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:246:10: warning: main actor-isolated instance method 'onCloseButton' cannot be used to satisfy nonisolated requirement from protocol 'GestureHandler'; this is an error in the Swift 6 language mode
    func onCloseButton(_ gesture: UILongPressGestureRecognizer) {
         ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift:246:10: note: add 'nonisolated' to 'onCloseButton' to make this instance method not isolated to the actor
    func onCloseButton(_ gesture: UILongPressGestureRecognizer) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:25:10: note: mark the protocol requirement 'onCloseButton' 'async' to allow actor-isolated conformances
    func onCloseButton(_ gesture: UILongPressGestureRecognizer)
         ^
                                                                async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: warning: call to main actor-isolated initializer 'init(model:id:imagesDict:onPresented:onTapAction:onClose:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:60:5: note: calls to initializer 'init(model:id:imagesDict:onPresented:onTapAction:onClose:)' from outside of its actor context are implicitly asynchronous
    init(
    ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ModalView/ModalViewController.swift:60:5: note: main actor isolation inferred from inheritance from class 'UIViewController'
    init(
    ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:15:10: note: add '@MainActor' to make instance method 'create(with:)' part of global actor 'MainActor'
    func create(with params: ViewFactoryParameters) -> UIViewController? {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: warning: sending 'modalFormVariant' risks causing data races; this is an error in the Swift 6 language mode
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: note: sending task-isolated 'modalFormVariant' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: warning: sending 'params.onPresented' risks causing data races; this is an error in the Swift 6 language mode
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: note: sending task-isolated 'params.onPresented' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: warning: sending 'params.onTapAction' risks causing data races; this is an error in the Swift 6 language mode
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: note: sending task-isolated 'params.onTapAction' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: warning: sending 'params.onClose' risks causing data races; this is an error in the Swift 6 language mode
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift:17:34: note: sending task-isolated 'params.onClose' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
            let viewController = ModalViewController(model: modalFormVariant,
                                 ^
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, ClickNotificationManager.swift, CoreController.swift, TimerManager.swift, InjectABTestUtilities.swift, InjectCore.swift, InjectInappTools.swift, InjectReplaceable.swift, InjectUtilities.swift, MBContainer.swift, MBInject.swift, DatabaseLoader.swift, DatabaseLoaderProtocol.swift, MBDatabaseError.swift, StubDatabaseLoader.swift, DatabaseRepositoryProtocol.swift, MBDatabaseRepository.swift, NoopDatabaseRepository.swift, CDEvent+CoreDataClass.swift, CDEvent+CoreDataProperties.swift, Date+Extensions.swift, NSError+Extensions.swift, Notification+Extensions.swift, UIApplication+Extensions.swift, UIColor+Extensions.swift (in target 'Mindbox' from project 'Mindbox')
SwiftCompile normal arm64 Compiling\ CheckerFactory.swift,\ InternalTargetingChecker.swift,\ TargetingChecker.swift,\ AndTargetingChecker.swift,\ CategoryIDChecker.swift,\ CategoryIDInChecker.swift,\ CustomOperationChecker.swift,\ GeoTargetingChecker.swift,\ OrTargetingChecker.swift,\ ProductIDChecker.swift,\ ProductSegmentChecker.swift,\ PushEnabledTargetingChecker.swift,\ SegmentTargetingChecker.swift,\ TrueTargetingChecker.swift,\ VisitTargetingChecker.swift,\ MindboxPayloadCopierDelegate.swift,\ MindboxURLHandlerDelegate.swift,\ CompositeInappMessageDelegate.swift,\ CopyInappMessageDelegate.swift,\ DefaultInappMessageDelegate.swift,\ InAppMessagesDelegate.swift,\ URLInappMessageDelegate.swift,\ InappScheduleManager.swift,\ InappSessionManager.swift,\ InappShowFailureManager.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/CheckerFactory/CheckerFactory.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/InternalTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/AndTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CategoryIDChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CategoryIDInChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CustomOperationChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/GeoTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/OrTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/ProductIDChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/ProductSegmentChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/PushEnabledTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/SegmentTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/TrueTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/VisitTargetingChecker.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxPayloadCopierDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CompositeInappMessageDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CopyInappMessageDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/DefaultInappMessageDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/InAppMessagesDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/URLInappMessageDelegate.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappSessionManager/InappSessionManager.swift /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift (in target 'Mindbox' from project 'Mindbox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/CheckerFactory/CheckerFactory.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/InternalTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/AndTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CategoryIDChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CategoryIDInChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CustomOperationChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/GeoTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/OrTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/ProductIDChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/ProductSegmentChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/PushEnabledTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/SegmentTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/TrueTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/VisitTargetingChecker.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxPayloadCopierDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift:19:44: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        guard let url = url, UIApplication.shared.canOpenURL(url) else {
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift:18:10: note: add '@MainActor' to make instance method 'openURL' part of global actor 'MainActor'
    func openURL(_ url: URL?) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift:24:30: warning: call to main actor-isolated instance method 'open(_:options:completionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
                             ^
UIKit.UIApplication.open:3:24: note: calls to instance method 'open(_:options:completionHandler:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func open(_ url: URL, options: [UIApplication.OpenExternalURLOptionsKey : Any] = [:], completionHandler completion: (@MainActor @Sendable (Bool) -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift:18:10: note: add '@MainActor' to make instance method 'openURL' part of global actor 'MainActor'
    func openURL(_ url: URL?) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift:24:23: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:87:54: note: class property declared here
@property(class, nonatomic, readonly) UIApplication *sharedApplication NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.");
                                                     ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift:18:10: note: add '@MainActor' to make instance method 'openURL' part of global actor 'MainActor'
    func openURL(_ url: URL?) {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CompositeInappMessageDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/CopyInappMessageDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/DefaultInappMessageDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/InAppMessagesDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappMessagesDelegate/URLInappMessageDelegate.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:75:13: warning: capture of 'self' with non-sendable type 'InappScheduleManager' in a '@Sendable' closure
            self.inappsByPresentationTime[presentationTime, default: []].append(scheduledInapp)
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:25:13: note: class 'InappScheduleManager' does not conform to the 'Sendable' protocol
final class InappScheduleManager: InappScheduleManagerProtocol {
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:75:81: warning: capture of 'scheduledInapp' with non-sendable type 'ScheduledInapp' in a '@Sendable' closure
            self.inappsByPresentationTime[presentationTime, default: []].append(scheduledInapp)
                                                                                ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:14:17: note: consider making struct 'ScheduledInapp' conform to the 'Sendable' protocol
internal struct ScheduledInapp {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:77:72: warning: capture of 'inapp' with non-sendable type 'InAppFormData' in a '@Sendable' closure
            Logger.common(message: "[InappScheduleManager] Scheduled \(inapp.inAppId) at \(presentationTime.asReadableDateTime) priority=\(inapp.isPriority) processingDuration=\(processingDuration.toTimeSpan())")
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/Models/InAppFormData.swift:13:8: note: consider making struct 'InAppFormData' conform to the 'Sendable' protocol
struct InAppFormData {
       ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:85:41: warning: capture of 'self' with non-sendable type 'InappScheduleManager' in a '@Sendable' closure
            guard let scheduledInapps = self.inappsByPresentationTime[presentationTime], !scheduledInapps.isEmpty else {
                                        ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:25:13: note: class 'InappScheduleManager' does not conform to the 'Sendable' protocol
final class InappScheduleManager: InappScheduleManagerProtocol {
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:175:13: warning: capture of 'self' with non-sendable type 'InappScheduleManager?' in a '@Sendable' closure
            self?.checkExpiredInapps()
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:25:13: note: class 'InappScheduleManager' does not conform to the 'Sendable' protocol
final class InappScheduleManager: InappScheduleManagerProtocol {
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:186:44: warning: capture of 'self' with non-sendable type 'InappScheduleManager' in a '@Sendable' closure
                    for scheduledInapps in self.inappsByPresentationTime.values {
                                           ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:25:13: note: class 'InappScheduleManager' does not conform to the 'Sendable' protocol
final class InappScheduleManager: InappScheduleManagerProtocol {
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:64:95: warning: sending 'inapp' risks causing data races; this is an error in the Swift 6 language mode
                    Logger.common(message: "[InappScheduleManager] Skipping presentation of \(inapp.inAppId) because app is in background.")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:64:95: note: task-isolated 'inapp' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    Logger.common(message: "[InappScheduleManager] Skipping presentation of \(inapp.inAppId) because app is in background.")
                                                                                              ^~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:68:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self?.showEligibleInapp(presentationTime)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappScheduleManager.swift:68:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self?.showEligibleInapp(presentationTime)
                ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappSessionManager/InappSessionManager.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappSessionManager/InappSessionManager.swift:117:13: warning: capture of 'self' with non-sendable type 'InappSessionManager?' in a '@Sendable' closure
            self?.logNearestInappSessionExpirationTime()
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappSessionManager/InappSessionManager.swift:16:13: note: class 'InappSessionManager' does not conform to the 'Sendable' protocol
final class InappSessionManager: InappSessionManagerProtocol {
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift:41:36: warning: capture of 'self' with non-sendable type 'InappShowFailureManager' in a '@Sendable' closure
            if let existingIndex = failures.firstIndex(where: { $0.inappId == inappId }) {
                                   ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift:18:13: note: class 'InappShowFailureManager' does not conform to the 'Sendable' protocol
final class InappShowFailureManager: InappShowFailureManagerProtocol {
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift:63:13: warning: capture of 'self' with non-sendable type 'InappShowFailureManager' in a '@Sendable' closure
            failures.removeAll()
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift:18:13: note: class 'InappShowFailureManager' does not conform to the 'Sendable' protocol
final class InappShowFailureManager: InappShowFailureManagerProtocol {
            ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift:78:20: warning: capture of 'self' with non-sendable type 'InappShowFailureManager' in a '@Sendable' closure
            guard !failures.isEmpty else {
                   ^
/Users/admin/builder/spi-builder-workspace/Mindbox/InAppMessages/InappShowFailureManager.swift:18:13: note: class 'InappShowFailureManager' does not conform to the 'Sendable' protocol
final class InappShowFailureManager: InappShowFailureManagerProtocol {
            ^
SwiftDriverJobDiscovery normal arm64 Compiling InAppConfigurationRepository.swift, TTLValidationService.swift, FeatureToggleManager.swift, ForegroundStopwatch.swift, ImageFormat.swift, InAppImagesStorage.swift, InappMapper.swift, GeoService.swift, ImageDownloadService.swift, InAppConfigurationDataFacade.swift, ContentPositionFilter.swift, ElementsColorFilter.swift, ElementsFilter.swift, ElementsPositionFilter.swift, ElementsSizeFilter.swift, InappFilter.swift, LayerActionFilter.swift, LayersFilter.swift, LayersSourceFilter.swift, VariantsFilter.swift, SegmentationService.swift, VariantImageUrlExtractorService.swift, InAppCoreManager.swift, InAppMessagesEventSender.swift, InAppMessagesTracker.swift (in target 'Mindbox' from project 'Mindbox')
SwiftCompile normal arm64 Compiling\ ItemProductResponse.swift,\ ItemResponse.swift,\ LimitBenefitsResponse.swift,\ LimitResponse.swift,\ LimitTypeResponse.swift,\ ManufacturerResponse.swift,\ NearestExpirationResponse.swift,\ PeriodTypeResponse.swift,\ PersonalOffersResponse.swift,\ PlaceholderResponse.swift,\ PoolResponse.swift,\ PossibleDiscountsResponse.swift,\ ProcessingStatusResponse.swift,\ ProductElementReponse.swift,\ ProductGroupResponse.swift,\ ProductListItemsResponse.swift,\ ProductListResponse.swift,\ ProductResponse.swift,\ PromoActionsResponse.swift,\ PromoCodeResponse.swift,\ PromotionResponse.swift,\ PromotionTypeResponse.swift,\ RecommendationResponse.swift,\ RetailOrderStatisticsResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ItemProductResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ItemResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/LimitBenefitsResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/LimitResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/LimitTypeResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ManufacturerResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/NearestExpirationResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PeriodTypeResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PersonalOffersResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PlaceholderResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PoolResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PossibleDiscountsResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProcessingStatusResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductElementReponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductGroupResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductListItemsResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductListResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromoActionsResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromoCodeResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromotionResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromotionTypeResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/RecommendationResponse.swift /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/RetailOrderStatisticsResponse.swift (in target 'Mindbox' from project 'Mindbox')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ItemProductResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ItemResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/LimitBenefitsResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/LimitResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/LimitTypeResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ManufacturerResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/NearestExpirationResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PeriodTypeResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PersonalOffersResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PlaceholderResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PoolResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PossibleDiscountsResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProcessingStatusResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductElementReponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductGroupResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductListItemsResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductListResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/ProductResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromoActionsResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromoCodeResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromotionResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/PromotionTypeResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/RecommendationResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Mindbox/Model/Response/RetailOrderStatisticsResponse.swift (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UNAuthorizationStatus+Extensions.swift, BGTaskManager.swift, BackgroundTaskManagerProxy.swift, BackgroundTaskManagerType.swift, UIBackgroundTaskManager.swift, CheckNotificationsStatusOperation.swift, DeliveryOperation.swift, GuaranteedDeliveryManager+State.swift, GuaranteedDeliveryManager.swift, InAppConfigurationAPI.swift, TargetingModel.swift, AndTargeting.swift, CategoryIDInTargeting.swift, CategoryIDTargeting.swift, CustomOperationTargeting.swift, GeoTargeting.swift, OrTargeting.swift, ProductIDTargeting.swift, ProductSegmentTargeting.swift, PushEnabledTargeting.swift, SegmentTargeting.swift, TrueTargeting.swift, VisitTargeting.swift, InAppConfig.swift, InAppConfigurationManager.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling InappFormVariantContent.swift, SnackbarFormVariantContent.swift, ModalFormVariant.swift, SnackbarFormVariant.swift, iFormVariant.swift, InappFrequency.swift, OnceFrequency.swift, PeriodicFrequency.swift, MonitoringModel.swift, SdkVersionModel.swift, SettingsModel.swift, SettingsOperationsModel.swift, SlidingExpirationModel.swift, TimeToLiveModel.swift, SegmentationCheckRequest.swift, SegmentationCheckResponse.swift, DictionaryKeyValueModel.swift, InAppFormData.swift, InAppGeoResponse.swift, InAppOperationJSONModel.swift, InAppProductSegmentResponse.swift, InAppResponse.swift, InAppShowFailure.swift, InAppsCheckRequest.swift (in target 'Mindbox' from project 'Mindbox')
ExtractAppIntentsMetadata (in target 'SDKVersionProvider' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SDKVersionProvider --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.SDKVersionProvider --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SDKVersionProvider.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SDKVersionProvider.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/SDKVersionProvider.build/Objects-normal/arm64/SDKVersionProvider_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/SDKVersionProvider.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/SDKVersionProvider.build/Objects-normal/arm64/SDKVersionProvider.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/SDKVersionProvider.build/SDKVersionProvider.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/SDKVersionProvider.build/SDKVersionProvider.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/SDKVersionProvider.build/Objects-normal/arm64/SDKVersionProvider.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-06 05:17:45.038 appintentsmetadataprocessor[765:4633] Starting appintentsmetadataprocessor export
2026-04-06 05:17:45.110 appintentsmetadataprocessor[765:4633] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'MindboxLogger' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MindboxLogger --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.MindboxLogger --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxLogger.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxLogger.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxLogger.build/Objects-normal/arm64/MindboxLogger_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxLogger.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxLogger.build/Objects-normal/arm64/MindboxLogger.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxLogger.build/MindboxLogger.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxLogger.build/MindboxLogger.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxLogger.build/Objects-normal/arm64/MindboxLogger.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-06 05:17:45.095 appintentsmetadataprocessor[766:4637] Starting appintentsmetadataprocessor export
2026-04-06 05:17:45.139 appintentsmetadataprocessor[766:4637] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Emitting module for Mindbox (in target 'Mindbox' from project 'Mindbox')
SwiftDriver\ Compilation\ Requirements Mindbox normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Mindbox' from project 'Mindbox')
    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 Mindbox -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox-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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.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/Mindbox.build/Debug-iphoneos/Mindbox.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Mindbox-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox-Swift.h (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Mindbox-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftmodule (in target 'Mindbox' from project 'Mindbox')
    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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftdoc (in target 'Mindbox' from project 'Mindbox')
    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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.abi.json (in target 'Mindbox' from project 'Mindbox')
    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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftsourceinfo (in target 'Mindbox' from project 'Mindbox')
    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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling StatusResponse.swift, SubscriptionResponse.swift, UsageServiceStatusResponse.swift, UsedPointOfContactResponse.swift, UsedResponse.swift, NetworkFetcher.swift, Route.swift, DeviceModelHelper.swift, URLRequestBuilder.swift, MBNetworkFetcher.swift, HTTPMethod.swift, HTTPTypealiases.swift, HTTPURLResponseStatusCodeValidator.swift, EventRepository.swift, EventRoute.swift, EventWrapper.swift, MBEventRepository.swift, MBPermissionProvider.swift, PermissionProvider.swift, PermissionStatus.swift, MBPersistenceStorage.swift, PersistenceStorage.swift, MBPushNotification.swift, MindboxApp.swift (in target 'Mindbox' from project 'Mindbox')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SDKVersionProvider.o (in target 'SDKVersionProvider' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SDKVersionProvider.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxLogger.o (in target 'MindboxLogger' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxLogger.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxNotifications.o normal (in target 'MindboxNotifications' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxNotifications.o
ExtractAppIntentsMetadata (in target 'MindboxNotifications' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MindboxNotifications --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.MindboxNotifications --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxNotifications.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxNotifications.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/MindboxNotifications.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/MindboxNotifications.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/MindboxNotifications.build/Objects-normal/arm64/MindboxNotifications.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-06 05:17:45.208 appintentsmetadataprocessor[769:4660] Starting appintentsmetadataprocessor export
2026-04-06 05:17:45.242 appintentsmetadataprocessor[769:4660] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxNotifications.o (in target 'MindboxNotifications' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/MindboxNotifications.o
SwiftDriverJobDiscovery normal arm64 Compiling MindboxErrors.swift, NotificationDecoder.swift, SessionTemporaryStorage.swift, String+Regex.swift, MBSystemInfoProvider.swift, SystemInfoProvider.swift, TimeInterval+TimeSpan.swift, UNAuthorizationStatusProvider.swift, UNAuthorizationStatusProviding.swift, PasteboardUUIDDebugService.swift, UUIDDebugService.swift, MBUtilitiesFetcher.swift, UtilitiesFetcher.swift, ABTestValidator.swift, ABTestVariantsValidator.swift, InappFrequencyValidator.swift, InappPresentationValidator.swift, MindboxPushValidator.swift, SDKVersionValidator.swift, String+Extensions.swift, UDIDValidator.swift, URLValidator.swift, Validator.swift, GeneratedAssetSymbols.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling ItemProductResponse.swift, ItemResponse.swift, LimitBenefitsResponse.swift, LimitResponse.swift, LimitTypeResponse.swift, ManufacturerResponse.swift, NearestExpirationResponse.swift, PeriodTypeResponse.swift, PersonalOffersResponse.swift, PlaceholderResponse.swift, PoolResponse.swift, PossibleDiscountsResponse.swift, ProcessingStatusResponse.swift, ProductElementReponse.swift, ProductGroupResponse.swift, ProductListItemsResponse.swift, ProductListResponse.swift, ProductResponse.swift, PromoActionsResponse.swift, PromoCodeResponse.swift, PromotionResponse.swift, PromotionTypeResponse.swift, RecommendationResponse.swift, RetailOrderStatisticsResponse.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling CheckerFactory.swift, InternalTargetingChecker.swift, TargetingChecker.swift, AndTargetingChecker.swift, CategoryIDChecker.swift, CategoryIDInChecker.swift, CustomOperationChecker.swift, GeoTargetingChecker.swift, OrTargetingChecker.swift, ProductIDChecker.swift, ProductSegmentChecker.swift, PushEnabledTargetingChecker.swift, SegmentTargetingChecker.swift, TrueTargetingChecker.swift, VisitTargetingChecker.swift, MindboxPayloadCopierDelegate.swift, MindboxURLHandlerDelegate.swift, CompositeInappMessageDelegate.swift, CopyInappMessageDelegate.swift, DefaultInappMessageDelegate.swift, InAppMessagesDelegate.swift, URLInappMessageDelegate.swift, InappScheduleManager.swift, InappSessionManager.swift, InappShowFailureManager.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling PermissionHandler.swift, PushNotificationsPermissionHandler.swift, PushPermissionHelper.swift, CustomerSegmentsAPI.swift, ActionUseCaseFactory.swift, InAppPresentationManager.swift, PresentationClickTracker.swift, PushPermissionActionUseCase.swift, RedirectURLActionUseCase.swift, PresentationDisplayUseCase.swift, ModalPresentationStrategy.swift, PresentationStrategyProtocol.swift, SnackbarPresentationStrategy.swift, WebviewPresentationStrategy.swift, CrossView.swift, CloseButtonElementFactory.swift, ElementFactory.swift, InAppImageOnlyView.swift, ImageLayerFactory.swift, LayerFactory.swift, ModalViewController.swift, SnackbarView.swift, SnackbarViewController.swift, ModalViewFactory.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling BaseResponse.swift, CustomEvent.swift, MobileApplicationInfoUpdated.swift, MobileApplicationInstalled.swift, TokenData.swift, TrackClick.swift, TrackVisit.swift, CodableDictionary.swift, CustomDecodingError.swift, CustomFields.swift, FailableDecodableArray.swift, IDS.swift, MBDate.swift, Sex.swift, Event.swift, SwiftyJSON.swift, MindboxError.swift, ProtocolError.swift, Status.swift, UnknownDecodable.swift, ValidationError.swift, NotificationsPayloads.swift, OperationBodyRequest.swift, OperationBodyRequestType.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling InappTrackingService.swift, ABTestModel.swift, ConfigResponse.swift, FeatureTogglesModel.swift, InAppSettingsModel.swift, InAppModel.swift, InappForm.swift, ContentBackground.swift, ContentBackgroundLayer.swift, PushPermissionLayerAction.swift, RedirectUrlLayerAction.swift, ContentBackgroundLayerAction.swift, ContentBackgroundLayerSource.swift, UrlLayerSource.swift, ImageContentBackgroundLayer.swift, WebviewContentBackgroundLayer.swift, ContentElement.swift, ContentElementPosition.swift, ContentElementPositionMargin.swift, ContentElementSize.swift, ContentElementSizeType.swift, CloseButtonElement.swift, ContentPosition.swift, ContentPositionGravity.swift, ContentPositionMargin.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriverJobDiscovery normal arm64 Compiling SnackbarViewFactory.swift, ViewFactoryProtocol.swift, WebViewFactory.swift, BridgeMessage.swift, BridgeMessageDispatcher.swift, MindboxWebBridge.swift, MindboxWebViewFacade.swift, WebBridgeWKScriptMessageDelegate.swift, HapticRequest.swift, HapticRequestParser.swift, HapticRequestValidator.swift, HapticService.swift, WebViewLocalStateStorage.swift, MotionService.swift, SettingsRequestParser.swift, TransparentView.swift, WebViewController.swift, MBConfiguration.swift, Mindbox.swift, MindboxAppDelegate.swift, MindboxDelegate.swift, SDKLogsManager.swift, SDKLogsRequest.swift, MindboxSceneDelegate.swift (in target 'Mindbox' from project 'Mindbox')
SwiftDriver\ Compilation Mindbox normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Mindbox' from project 'Mindbox')
    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 Mindbox -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox-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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.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/Mindbox.build/Debug-iphoneos/Mindbox.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.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/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.o normal (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.o
ExtractAppIntentsMetadata (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Mindbox --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.Mindbox --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Mindbox.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Mindbox.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Mindbox.build/Debug-iphoneos/Mindbox.build/Objects-normal/arm64/Mindbox.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-06 05:17:47.126 appintentsmetadataprocessor[772:4820] Starting appintentsmetadataprocessor export
2026-04-06 05:17:47.165 appintentsmetadataprocessor[772:4820] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.o (in target 'Mindbox' from project 'Mindbox')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Mindbox.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Mindbox",
  "name" : "Mindbox",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Mindbox",
      "targets" : [
        "Mindbox"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MindboxNotificationsService",
      "targets" : [
        "MindboxNotifications"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MindboxNotificationsContent",
      "targets" : [
        "MindboxNotifications"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SDKVersionProvider",
      "module_type" : "SwiftTarget",
      "name" : "SDKVersionProvider",
      "path" : "SDKVersionProvider",
      "product_memberships" : [
        "Mindbox",
        "MindboxNotificationsService",
        "MindboxNotificationsContent"
      ],
      "sources" : [
        "SDKVersionProvider.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MindboxNotifications",
      "module_type" : "SwiftTarget",
      "name" : "MindboxNotifications",
      "path" : "MindboxNotifications",
      "product_memberships" : [
        "MindboxNotificationsService",
        "MindboxNotificationsContent"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/MindboxNotifications/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "MindboxNotificationService.swift",
        "MindboxPushNotification.swift",
        "Models/ImageFormat.swift",
        "Models/MBPushNotification.swift",
        "Models/Payload.swift",
        "NotificationContent.swift",
        "NotificationService.swift",
        "PushNotifications/NotificationFormatter.swift",
        "PushNotifications/PushNotificationFormatStrategies/NotificationFormatStrategy.swift",
        "PushNotifications/PushNotificationFormatStrategies/NotificationStrategyFactory.swift",
        "PushNotifications/PushValidator.swift",
        "SharedInternalMethods.swift",
        "Utilities/Constants.swift"
      ],
      "target_dependencies" : [
        "SDKVersionProvider"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MindboxLogger",
      "module_type" : "SwiftTarget",
      "name" : "MindboxLogger",
      "path" : "MindboxLogger",
      "product_memberships" : [
        "Mindbox"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/MindboxLogger/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Network/Enums/SDKLogsStatus.swift",
        "Shared/Extensions/Date+Extension.swift",
        "Shared/Extensions/FileManager+Extensions.swift",
        "Shared/Extensions/MBLoggerUtilitiesFetcher.swift",
        "Shared/Extensions/NSManagedObjectContext+Extension.swift",
        "Shared/Extensions/String+Extensions.swift",
        "Shared/Extensions/URL+Extensions.swift",
        "Shared/Group/LogCategory.swift",
        "Shared/Group/LogLevel.swift",
        "Shared/Group/LogMessage.swift",
        "Shared/Group/LogWriter.swift",
        "Shared/LoggerRepository/CDLogMessage+CoreDataClass.swift",
        "Shared/LoggerRepository/LogStoreTrimmer.swift",
        "Shared/LoggerRepository/LoggerDBConfig.swift",
        "Shared/LoggerRepository/LoggerDatabaseLoader.swift",
        "Shared/LoggerRepository/MBLoggerCoreDataManager.swift",
        "Shared/LoggerRepository/MBPersistentContainer.swift",
        "Shared/LoggerRepository/SQLiteLogicalSizeMeasurer.swift",
        "Shared/MBLogger.swift",
        "Shared/MindboxError/LoggerErrorModel.swift",
        "Shared/MindboxError/MindboxError.swift",
        "Shared/MindboxError/ProtocolError.swift",
        "Shared/MindboxError/Status.swift",
        "Shared/MindboxError/UnknownDecodable.swift",
        "Shared/MindboxError/ValidationError.swift",
        "Shared/MindboxLogger.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Mindbox",
      "module_type" : "SwiftTarget",
      "name" : "Mindbox",
      "path" : "Mindbox",
      "product_memberships" : [
        "Mindbox"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Mindbox/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "ClickNotificationManager/ClickNotificationManager.swift",
        "CoreController/CoreController.swift",
        "CoreController/TimerManager.swift",
        "DI/Injections/InjectABTestUtilities.swift",
        "DI/Injections/InjectCore.swift",
        "DI/Injections/InjectInappTools.swift",
        "DI/Injections/InjectReplaceable.swift",
        "DI/Injections/InjectUtilities.swift",
        "DI/MBContainer.swift",
        "DI/MBInject.swift",
        "Database/DatabaseLoader/DatabaseLoader.swift",
        "Database/DatabaseLoader/DatabaseLoaderProtocol.swift",
        "Database/DatabaseLoader/MBDatabaseError.swift",
        "Database/DatabaseLoader/StubDatabaseLoader.swift",
        "Database/DatabaseRepository/DatabaseRepositoryProtocol.swift",
        "Database/DatabaseRepository/MBDatabaseRepository.swift",
        "Database/DatabaseRepository/NoopDatabaseRepository.swift",
        "Database/Entities/CDEvent+CoreDataClass.swift",
        "Database/Entities/CDEvent+CoreDataProperties.swift",
        "Extensions/Date+Extensions.swift",
        "Extensions/NSError+Extensions.swift",
        "Extensions/Notification+Extensions.swift",
        "Extensions/UIApplication+Extensions.swift",
        "Extensions/UIColor+Extensions.swift",
        "Extensions/UNAuthorizationStatus+Extensions.swift",
        "GuaranteedDeliveryManager/Background/BGTaskManager.swift",
        "GuaranteedDeliveryManager/Background/BackgroundTaskManagerProxy.swift",
        "GuaranteedDeliveryManager/Background/BackgroundTaskManagerType.swift",
        "GuaranteedDeliveryManager/Background/UIBackgroundTaskManager.swift",
        "GuaranteedDeliveryManager/CheckNotificationsStatusOperation.swift",
        "GuaranteedDeliveryManager/DeliveryOperation.swift",
        "GuaranteedDeliveryManager/GuaranteedDeliveryManager+State.swift",
        "GuaranteedDeliveryManager/GuaranteedDeliveryManager.swift",
        "InAppMessages/Configuration/API/InAppConfigurationAPI.swift",
        "InAppMessages/Configuration/API/TargetingModel.swift",
        "InAppMessages/Configuration/API/Targetings/AndTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/CategoryIDInTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/CategoryIDTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/CustomOperationTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/GeoTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/OrTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/ProductIDTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/ProductSegmentTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/PushEnabledTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/SegmentTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/TrueTargeting.swift",
        "InAppMessages/Configuration/API/Targetings/VisitTargeting.swift",
        "InAppMessages/Configuration/InAppConfig.swift",
        "InAppMessages/Configuration/InAppConfigurationManager.swift",
        "InAppMessages/Configuration/InAppConfigurationRepository.swift",
        "InAppMessages/Configuration/Services/TTLValidationService.swift",
        "InAppMessages/FeatureToggleManager/FeatureToggleManager.swift",
        "InAppMessages/ForegroundStopwatch.swift",
        "InAppMessages/Images/ImageFormat.swift",
        "InAppMessages/Images/InAppImagesStorage.swift",
        "InAppMessages/InAppConfigurationMapper/InappMapper.swift",
        "InAppMessages/InAppConfigurationMapper/Services/GeoService.swift",
        "InAppMessages/InAppConfigurationMapper/Services/ImageDownloadService.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InAppConfigurationDataFacade.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/ContentPositionFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/ElementsFiter/ElementsColorFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/ElementsFiter/ElementsFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/ElementsFiter/ElementsPositionFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/ElementsFiter/ElementsSizeFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/InappFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/LayersFilter/LayerActionFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/LayersFilter/LayersFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/LayersFilter/LayersSourceFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/InappFilterService/VariantsFilter.swift",
        "InAppMessages/InAppConfigurationMapper/Services/SegmentationService.swift",
        "InAppMessages/InAppConfigurationMapper/Services/VariantImageUrlExtractorService.swift",
        "InAppMessages/InAppCoreManager.swift",
        "InAppMessages/InAppMessagesEventSender.swift",
        "InAppMessages/InAppMessagesTracker.swift",
        "InAppMessages/InAppTargetingChecker/CheckerFactory/CheckerFactory.swift",
        "InAppMessages/InAppTargetingChecker/InternalTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/AndTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CategoryIDChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CategoryIDInChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/CustomOperationChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/GeoTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/OrTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/ProductIDChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/ProductSegmentChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/PushEnabledTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/SegmentTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/TrueTargetingChecker.swift",
        "InAppMessages/InAppTargetingChecker/TargetingCheckerTypes/VisitTargetingChecker.swift",
        "InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxPayloadCopierDelegate.swift",
        "InAppMessages/InappMessagesDelegate/CommonProtocols/MindboxURLHandlerDelegate.swift",
        "InAppMessages/InappMessagesDelegate/CompositeInappMessageDelegate.swift",
        "InAppMessages/InappMessagesDelegate/CopyInappMessageDelegate.swift",
        "InAppMessages/InappMessagesDelegate/DefaultInappMessageDelegate.swift",
        "InAppMessages/InappMessagesDelegate/InAppMessagesDelegate.swift",
        "InAppMessages/InappMessagesDelegate/URLInappMessageDelegate.swift",
        "InAppMessages/InappScheduleManager.swift",
        "InAppMessages/InappSessionManager/InappSessionManager.swift",
        "InAppMessages/InappShowFailureManager.swift",
        "InAppMessages/InappTrackingService.swift",
        "InAppMessages/Models/Config/ABTestModel.swift",
        "InAppMessages/Models/Config/ConfigResponse.swift",
        "InAppMessages/Models/Config/FeatureTogglesModel.swift",
        "InAppMessages/Models/Config/InAppSettingsModel.swift",
        "InAppMessages/Models/Config/InappModel/InAppModel.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappForm.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackground.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/ContentBackgroundLayer.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/ContentBackgroundLayerAction/Actions/PushPermissionLayerAction.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/ContentBackgroundLayerAction/Actions/RedirectUrlLayerAction.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/ContentBackgroundLayerAction/ContentBackgroundLayerAction.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/ContentBackgroundSource/ContentBackgroundLayerSource.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/ContentBackgroundSource/Sources/UrlLayerSource.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/Layers/ImageContentBackgroundLayer.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentBackground/ContentBackgroundLayer/Layers/WebviewContentBackgroundLayer.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentElement/ContentElement.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentElement/ContentElementPosition/ContentElementPosition.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentElement/ContentElementPosition/ContentElementPositionMargin/ContentElementPositionMargin.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentElement/ContentElementSize/ContentElementSize.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentElement/ContentElementSize/Kind/ContentElementSizeType.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentElement/Elements/CloseButtonElement.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentPosition/ContentPosition.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentPosition/ContentPositionGravity/ContentPositionGravity.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/ContentPosition/ContentPositionMargin/ContentPositionMargin.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/InappFormVariantContent.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/InappFormVariantContent/SnackbarFormVariantContent.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/Variants/ModalFormVariant.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/Variants/SnackbarFormVariant.swift",
        "InAppMessages/Models/Config/InappModel/InappForm/InappFormVariant/iFormVariant.swift",
        "InAppMessages/Models/Config/InappModel/InappFrequency/InappFrequency.swift",
        "InAppMessages/Models/Config/InappModel/InappFrequency/Types/OnceFrequency.swift",
        "InAppMessages/Models/Config/InappModel/InappFrequency/Types/PeriodicFrequency.swift",
        "InAppMessages/Models/Config/MonitoringModel.swift",
        "InAppMessages/Models/Config/SdkVersionModel.swift",
        "InAppMessages/Models/Config/SettingsModel.swift",
        "InAppMessages/Models/Config/SettingsOperationsModel.swift",
        "InAppMessages/Models/Config/SlidingExpirationModel.swift",
        "InAppMessages/Models/Config/TimeToLiveModel.swift",
        "InAppMessages/Models/CustomerSegment/SegmentationCheckRequest.swift",
        "InAppMessages/Models/CustomerSegment/SegmentationCheckResponse.swift",
        "InAppMessages/Models/DictionaryKeyValueModel.swift",
        "InAppMessages/Models/InAppFormData.swift",
        "InAppMessages/Models/InAppGeoResponse.swift",
        "InAppMessages/Models/InAppOperationJSONModel.swift",
        "InAppMessages/Models/InAppProductSegmentResponse.swift",
        "InAppMessages/Models/InAppResponse.swift",
        "InAppMessages/Models/InAppShowFailure.swift",
        "InAppMessages/Models/InAppsCheckRequest.swift",
        "InAppMessages/Permissions/PermissionHandler.swift",
        "InAppMessages/Permissions/PushNotificationsPermissionHandler.swift",
        "InAppMessages/Permissions/PushPermissionHelper.swift",
        "InAppMessages/PresentChecker/CustomerSegmentsAPI.swift",
        "InAppMessages/Presentation/ActionHandler/ActionUseCaseFactory.swift",
        "InAppMessages/Presentation/InAppPresentationManager.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationActionUseCase/PresentationClickTracker.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationActionUseCase/PushPermissionActionUseCase.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationActionUseCase/RedirectURLActionUseCase.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/PresentationDisplayUseCase.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/ModalPresentationStrategy.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/PresentationStrategyProtocol.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/SnackbarPresentationStrategy.swift",
        "InAppMessages/Presentation/Manager/UseCases/PresentationDisplayUseCase/Strategy/WebviewPresentationStrategy.swift",
        "InAppMessages/Presentation/Views/CommonViews/CrossView.swift",
        "InAppMessages/Presentation/Views/CommonViews/ElementFactory/CloseButtonFactory/CloseButtonElementFactory.swift",
        "InAppMessages/Presentation/Views/CommonViews/ElementFactory/ElementFactory.swift",
        "InAppMessages/Presentation/Views/CommonViews/InAppImageOnlyView.swift",
        "InAppMessages/Presentation/Views/CommonViews/LayersFactory/ImageLayer/ImageLayerFactory.swift",
        "InAppMessages/Presentation/Views/CommonViews/LayersFactory/LayerFactory.swift",
        "InAppMessages/Presentation/Views/ModalView/ModalViewController.swift",
        "InAppMessages/Presentation/Views/SnackbarView/SnackbarView.swift",
        "InAppMessages/Presentation/Views/SnackbarView/SnackbarViewController.swift",
        "InAppMessages/Presentation/Views/ViewFactory/ModalViewFactory.swift",
        "InAppMessages/Presentation/Views/ViewFactory/SnackbarViewFactory.swift",
        "InAppMessages/Presentation/Views/ViewFactory/ViewFactoryProtocol.swift",
        "InAppMessages/Presentation/Views/ViewFactory/WebViewFactory.swift",
        "InAppMessages/Presentation/Views/WebView/Bridge/BridgeMessage.swift",
        "InAppMessages/Presentation/Views/WebView/Bridge/BridgeMessageDispatcher.swift",
        "InAppMessages/Presentation/Views/WebView/Bridge/MindboxWebBridge.swift",
        "InAppMessages/Presentation/Views/WebView/Debug/MindboxWebViewFacade.swift",
        "InAppMessages/Presentation/Views/WebView/Debug/WebBridgeWKScriptMessageDelegate.swift",
        "InAppMessages/Presentation/Views/WebView/Haptic/HapticRequest.swift",
        "InAppMessages/Presentation/Views/WebView/Haptic/HapticRequestParser.swift",
        "InAppMessages/Presentation/Views/WebView/Haptic/HapticRequestValidator.swift",
        "InAppMessages/Presentation/Views/WebView/Haptic/HapticService.swift",
        "InAppMessages/Presentation/Views/WebView/LocalState/WebViewLocalStateStorage.swift",
        "InAppMessages/Presentation/Views/WebView/Motion/MotionService.swift",
        "InAppMessages/Presentation/Views/WebView/Settings/SettingsRequestParser.swift",
        "InAppMessages/Presentation/Views/WebView/TransparentView.swift",
        "InAppMessages/Presentation/Views/WebView/WebViewController.swift",
        "MBConfiguration.swift",
        "Mindbox.swift",
        "MindboxAppDelegate.swift",
        "MindboxDelegate.swift",
        "MindboxLogger/SDKLogsManager.swift",
        "MindboxLogger/SDKLogsRequest.swift",
        "MindboxSceneDelegate.swift",
        "Model/BaseResponse.swift",
        "Model/Bodies/CustomEvent.swift",
        "Model/Bodies/MobileApplicationInfoUpdated.swift",
        "Model/Bodies/MobileApplicationInstalled.swift",
        "Model/Bodies/TokenData.swift",
        "Model/Bodies/TrackClick.swift",
        "Model/Bodies/TrackVisit.swift",
        "Model/Common/CodableDictionary.swift",
        "Model/Common/CustomDecodingError.swift",
        "Model/Common/CustomFields.swift",
        "Model/Common/FailableDecodableArray.swift",
        "Model/Common/IDS.swift",
        "Model/Common/MBDate.swift",
        "Model/Common/Sex.swift",
        "Model/Event.swift",
        "Model/Helpers/SwiftyJSON.swift",
        "Model/MindboxError/MindboxError.swift",
        "Model/MindboxError/ProtocolError.swift",
        "Model/MindboxError/Status.swift",
        "Model/MindboxError/UnknownDecodable.swift",
        "Model/MindboxError/ValidationError.swift",
        "Model/NotificationPayload/NotificationsPayloads.swift",
        "Model/OperationBodyRequest.swift",
        "Model/OperationBodyRequestType.swift",
        "Model/OperationResponse.swift",
        "Model/OperationResponseType.swift",
        "Model/Request/AreaRequest.swift",
        "Model/Request/CashdeskRequest.swift",
        "Model/Request/CatalogProductListRequest.swift",
        "Model/Request/Channel.swift",
        "Model/Request/CouponRequest.swift",
        "Model/Request/CustomerActionRequest.swift",
        "Model/Request/CustomerRequest.swift",
        "Model/Request/DiscountCardRequest.swift",
        "Model/Request/DiscountPromoCodeRequest.swift",
        "Model/Request/DiscountRequest.swift",
        "Model/Request/DiscountTypeRequest.swift",
        "Model/Request/ItemRequest.swift",
        "Model/Request/LineRequest.swift",
        "Model/Request/OrderRequest.swift",
        "Model/Request/PoolRequest.swift",
        "Model/Request/ProductCategoryRequest.swift",
        "Model/Request/ProductGroupRequest.swift",
        "Model/Request/ProductListRequest.swift",
        "Model/Request/ProductRequest.swift",
        "Model/Request/PromoCodeRequest.swift",
        "Model/Request/RecommendationRequest.swift",
        "Model/Request/RequestedPromotionRequest.swift",
        "Model/Request/SegmentationRequest.swift",
        "Model/Request/SubViewProductRequest.swift",
        "Model/Request/SubscriptionRequest.swift",
        "Model/Request/ViewProductCategoryRequest.swift",
        "Model/Request/ViewProductRequest.swift",
        "Model/Response/AmountBenefisTypeResponse.swift",
        "Model/Response/AmountBenefitsResponse.swift",
        "Model/Response/AmountResponse.swift",
        "Model/Response/AmountTypeResponse.swift",
        "Model/Response/AppliedPromotionResponse.swift",
        "Model/Response/AppliedPromotionTypeResponse.swift",
        "Model/Response/AreaResponse.swift",
        "Model/Response/BalanceResponse.swift",
        "Model/Response/BalanceTypeReponse.swift",
        "Model/Response/BenefitResponse.swift",
        "Model/Response/ContentResponse.swift",
        "Model/Response/ContentTypeResponse.swift",
        "Model/Response/CouponResponse.swift",
        "Model/Response/CustomerResponse.swift",
        "Model/Response/CustomerSegmentationsResponse.swift",
        "Model/Response/DiscountAmountTypeResponse.swift",
        "Model/Response/DiscountCardResponse.swift",
        "Model/Response/DiscountResponse.swift",
        "Model/Response/IssuedPointOfContactResponse.swift",
        "Model/Response/ItemProductResponse.swift",
        "Model/Response/ItemResponse.swift",
        "Model/Response/LimitBenefitsResponse.swift",
        "Model/Response/LimitResponse.swift",
        "Model/Response/LimitTypeResponse.swift",
        "Model/Response/ManufacturerResponse.swift",
        "Model/Response/NearestExpirationResponse.swift",
        "Model/Response/PeriodTypeResponse.swift",
        "Model/Response/PersonalOffersResponse.swift",
        "Model/Response/PlaceholderResponse.swift",
        "Model/Response/PoolResponse.swift",
        "Model/Response/PossibleDiscountsResponse.swift",
        "Model/Response/ProcessingStatusResponse.swift",
        "Model/Response/ProductElementReponse.swift",
        "Model/Response/ProductGroupResponse.swift",
        "Model/Response/ProductListItemsResponse.swift",
        "Model/Response/ProductListResponse.swift",
        "Model/Response/ProductResponse.swift",
        "Model/Response/PromoActionsResponse.swift",
        "Model/Response/PromoCodeResponse.swift",
        "Model/Response/PromotionResponse.swift",
        "Model/Response/PromotionTypeResponse.swift",
        "Model/Response/RecommendationResponse.swift",
        "Model/Response/RetailOrderStatisticsResponse.swift",
        "Model/Response/StatusResponse.swift",
        "Model/Response/SubscriptionResponse.swift",
        "Model/Response/UsageServiceStatusResponse.swift",
        "Model/Response/UsedPointOfContactResponse.swift",
        "Model/Response/UsedResponse.swift",
        "Network/Abstract/NetworkFetcher.swift",
        "Network/Abstract/Route.swift",
        "Network/Helpers/DeviceModelHelper.swift",
        "Network/Helpers/URLRequestBuilder.swift",
        "Network/MBNetworkFetcher.swift",
        "Network/Types/HTTPMethod.swift",
        "Network/Types/HTTPTypealiases.swift",
        "Network/Validators/HTTPURLResponseStatusCodeValidator.swift",
        "NetworkRepository/Event/EventRepository.swift",
        "NetworkRepository/Event/EventRoute.swift",
        "NetworkRepository/Event/EventWrapper.swift",
        "NetworkRepository/Event/MBEventRepository.swift",
        "Permissions/MBPermissionProvider.swift",
        "Permissions/PermissionProvider.swift",
        "Permissions/PermissionStatus.swift",
        "PersistenceStorage/MBPersistenceStorage.swift",
        "PersistenceStorage/PersistenceStorage.swift",
        "PublicModels/MBPushNotification.swift",
        "PublicModels/MindboxApp.swift",
        "PushNotifications/PushNotificationFormatStrategies/NotificationFormatFactory.swift",
        "PushNotifications/PushNotificationFormatStrategies/NotificationFormatStrategy.swift",
        "PushNotifications/PushNotificationFormatter.swift",
        "SessionManager/MBSessionManager.swift",
        "SessionManager/SessionManager.swift",
        "TrackVisitManager/TrackVisitManager.swift",
        "UserVisitManager/UserVisitManager.swift",
        "Utilities/ABTestDeviceMixer/ABTestDeviceMixer.swift",
        "Utilities/AppDelegateProxy/MindboxAppDelegateProxy.swift",
        "Utilities/Body+/BodyDecoder.swift",
        "Utilities/Body+/BodyEncoder.swift",
        "Utilities/Constants.swift",
        "Utilities/DispatchSemaphore.swift",
        "Utilities/IDFetcher/IDFAFetcher.swift",
        "Utilities/IDFetcher/IDFVFetcher.swift",
        "Utilities/Migrations/ImplementationOfMigrations/DatabaseMetadataMigration.swift",
        "Utilities/Migrations/ImplementationOfMigrations/FirstInitializationDateTimeMigration.swift",
        "Utilities/Migrations/ImplementationOfMigrations/RemoveBackgroundTaskDataMigration.swift",
        "Utilities/Migrations/ImplementationOfMigrations/ShownInAppsDictionaryMigration.swift",
        "Utilities/Migrations/ImplementationOfMigrations/ShownInAppsIDsMigration.swift",
        "Utilities/Migrations/MigrationAbstractions/BaseMigration.swift",
        "Utilities/Migrations/MigrationAbstractions/MigrationProtocol.swift",
        "Utilities/Migrations/MigrationManager/MigrationManager.swift",
        "Utilities/Migrations/MigrationManager/MigrationManagerProtocol.swift",
        "Utilities/MindboxErrors.swift",
        "Utilities/NotificationDecoder.swift",
        "Utilities/SessionTemporaryStorage.swift",
        "Utilities/String+Regex.swift",
        "Utilities/SystemInfo/MBSystemInfoProvider.swift",
        "Utilities/SystemInfo/SystemInfoProvider.swift",
        "Utilities/TimeInterval+TimeSpan.swift",
        "Utilities/UNAuthorizationStatusProviding/UNAuthorizationStatusProvider.swift",
        "Utilities/UNAuthorizationStatusProviding/UNAuthorizationStatusProviding.swift",
        "Utilities/UUIDDebugService/PasteboardUUIDDebugService.swift",
        "Utilities/UUIDDebugService/UUIDDebugService.swift",
        "Utilities/UtilitiesFetcher/MBUtilitiesFetcher.swift",
        "Utilities/UtilitiesFetcher/UtilitiesFetcher.swift",
        "Validators/ABTestValidator.swift",
        "Validators/ABTestVariantsValidator.swift",
        "Validators/InappFrequencyValidator.swift",
        "Validators/InappPresentationValidator.swift",
        "Validators/MindboxPushValidator.swift",
        "Validators/SDKVersionValidator.swift",
        "Validators/String+Extensions.swift",
        "Validators/UDIDValidator.swift",
        "Validators/URLValidator.swift",
        "Validators/Validator.swift"
      ],
      "target_dependencies" : [
        "SDKVersionProvider",
        "MindboxLogger"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.