Build Information
Successful build of Applivery, reference master (9c7e33), with Swift 6.1 for iOS using Xcode 16.3 on 18 Nov 2025 16:15:22 UTC.
Swift 6 data race errors: 9
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Applivery-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 InferSendableFromCapturesBuild Log
let safariVC = SFSafariViewController(url: url)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SFSafariViewController.h:60:1: note: calls to initializer 'init(url:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithURL:(NSURL *)URL;
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SFSafariViewController.h:60:1: note: main actor isolation inferred from inheritance from class 'UIViewController'
- (instancetype)initWithURL:(NSURL *)URL;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:31:10: note: add '@MainActor' to make instance method 'openSafari(from:from:)' part of global actor 'MainActor'
func openSafari(from url: URL, from viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:34:18: warning: main actor-isolated property 'delegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
safariVC.delegate = self
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SFSafariViewController.h:66:75: note: mutation of this property is only permitted within the actor
@property (nonatomic, weak, nullable) id <SFSafariViewControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:31:10: note: add '@MainActor' to make instance method 'openSafari(from:from:)' part of global actor 'MainActor'
func openSafari(from url: URL, from viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:35:18: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
safariVC.modalPresentationStyle = .fullScreen
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:31:10: note: add '@MainActor' to make instance method 'openSafari(from:from:)' part of global actor 'MainActor'
func openSafari(from url: URL, from viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:37:24: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
viewController.present(safariVC, animated: true, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:31:10: note: add '@MainActor' to make instance method 'openSafari(from:from:)' part of global actor 'MainActor'
func openSafari(from url: URL, from viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:43:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self?.safariViewController?.dismiss(animated: true, completion: completion)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:43:13: 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?.safariViewController?.dismiss(animated: true, completion: completion)
^~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:43:77: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
self?.safariViewController?.dismiss(animated: true, completion: completion)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:43:77: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self?.safariViewController?.dismiss(animated: true, completion: completion)
^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/ErrorManager.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ NSError+Applivery.swift,\ Ram.swift,\ Result.swift,\ Storyboard+Applivery.swift,\ UIDevice+ModelName.swift,\ UIImageExtension.swift,\ UserDefaultsExtension.swift,\ Wifi.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/NSError+Applivery.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Ram.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Result.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Storyboard+Applivery.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIDevice+ModelName.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UserDefaultsExtension.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Wifi.swift (in target 'Applivery' from project 'Applivery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/NSError+Applivery.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Ram.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Result.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Storyboard+Applivery.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIDevice+ModelName.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:16:24: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let rotatedViewBox = UIView(frame: CGRect(x: 0, y: 0, width: self.size.width, height: self.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:149:1: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:14:7: note: add '@MainActor' to make instance method 'imageRotatedByDegrees(degrees:)' part of global actor 'MainActor'
func imageRotatedByDegrees(degrees: CGFloat) -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:18:18: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
rotatedViewBox.transform = transform
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform; // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:14:7: note: add '@MainActor' to make instance method 'imageRotatedByDegrees(degrees:)' part of global actor 'MainActor'
func imageRotatedByDegrees(degrees: CGFloat) -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:19:36: 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 rotatedSize = rotatedViewBox.frame.size
^
/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/AppliverySDK/Utils/UIImageExtension.swift:14:7: note: add '@MainActor' to make instance method 'imageRotatedByDegrees(degrees:)' part of global actor 'MainActor'
func imageRotatedByDegrees(degrees: CGFloat) -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:21:76: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(rotatedSize, false, UIScreen.main.scale)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:14:7: note: add '@MainActor' to make instance method 'imageRotatedByDegrees(degrees:)' part of global actor 'MainActor'
func imageRotatedByDegrees(degrees: CGFloat) -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIImageExtension.swift:21:71: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(rotatedSize, false, UIScreen.main.scale)
^
/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/AppliverySDK/Utils/UIImageExtension.swift:14:7: note: add '@MainActor' to make instance method 'imageRotatedByDegrees(degrees:)' part of global actor 'MainActor'
func imageRotatedByDegrees(degrees: CGFloat) -> UIImage {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UserDefaultsExtension.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Wifi.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ Applivery (in target 'Applivery' from project 'Applivery')
EmitSwiftModule normal arm64 (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Applivery/AppliverySDK.swift:130:29: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppliverySDK' may have shared mutable state; this is an error in the Swift 6 language mode
@objc public static let shared = AppliverySDK()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Applivery/AppliverySDK.swift:124:14: note: class 'AppliverySDK' does not conform to the 'Sendable' protocol
public class AppliverySDK: NSObject, AppliveryService {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Applivery/AppliverySDK.swift:130:29: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
@objc public static let shared = AppliverySDK()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Applivery/AppliverySDK.swift:130:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@objc public static let shared = AppliverySDK()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:19:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppliverySafariManager' may have shared mutable state; this is an error in the Swift 6 language mode
static let shared = AppliverySafariManager()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:17:13: note: class 'AppliverySafariManager' does not conform to the 'Sendable' protocol
final class AppliverySafariManager: NSObject, AppliverySafariManagerProtocol {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:19:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
static let shared = AppliverySafariManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/AppliverySafariManager.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let shared = AppliverySafariManager()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AppliverySDK/SDKConfig/GlobalConfig.swift:13:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var shared = GlobalConfig()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/SDKConfig/GlobalConfig.swift:13:13: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
static var shared = GlobalConfig()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AppliverySDK/SDKConfig/GlobalConfig.swift:13:13: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
static var shared = GlobalConfig()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/SDKConfig/GlobalConfig.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var shared = GlobalConfig()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:41:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertOta: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:42:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertPostpone: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:43:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertError: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:44:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertLogin: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ScreenRecorderManager' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = ScreenRecorderManager()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:13:20: note: class 'ScreenRecorderManager' does not conform to the 'Sendable' protocol
public final class ScreenRecorderManager: NSObject, RPScreenRecorderDelegate, RPPreviewViewControllerDelegate {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:15:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static let shared = ScreenRecorderManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:15:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = ScreenRecorderManager()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:24:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
var recordViewController: RecordingViewController = RecordingViewController()
^
SwiftCompile normal arm64 Compiling\ AppliveryWindow.swift,\ App.swift,\ AppliveryNavigationController.swift,\ Device.swift,\ EventDetector.swift,\ Keyboard.swift,\ ScreenRecorderManager.swift,\ Screenshot.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Views/AppliveryWindow.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/AppliveryNavigationController.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/EventDetector.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Keyboard.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift (in target 'Applivery' from project 'Applivery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Views/AppliveryWindow.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:41:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertOta: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:42:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertPostpone: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:43:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertError: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:44:22: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
private lazy var alertLogin: UIAlertController = UIAlertController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:96: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)
^
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/AppliverySDK/Wrappers/App.swift:93:10: note: add '@MainActor' to make instance method 'openUrl' part of global actor 'MainActor'
func openUrl(_ urlString: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:96: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)
^
/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/AppliverySDK/Wrappers/App.swift:93:10: note: add '@MainActor' to make instance method 'openUrl' part of global actor 'MainActor'
func openUrl(_ urlString: String) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:102:21: warning: call to main actor-isolated initializer 'init(title:message:preferredStyle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let alert = UIAlertController(title: literal(.appName), message: message, preferredStyle: .alert)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:45:1: note: calls to initializer 'init(title:message:preferredStyle:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:101:10: note: add '@MainActor' to make instance method 'showAlert' part of global actor 'MainActor'
func showAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:104:27: warning: call to main actor-isolated initializer 'init(title:style:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let actionLater = UIAlertAction(title: literal(.alertButtonOK), style: .cancel, handler: nil)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:34:1: note: calls to initializer 'init(title:style:handler:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)actionWithTitle:(nullable NSString *)title style:(UIAlertActionStyle)style handler:(void (^ __nullable)(UIAlertAction *action))handler;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:101:10: note: add '@MainActor' to make instance method 'showAlert' part of global actor 'MainActor'
func showAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:105:15: warning: call to main actor-isolated instance method 'addAction' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
alert.addAction(actionLater)
^
UIKit.UIAlertController.addAction:2:22: note: calls to instance method 'addAction' from outside of its actor context are implicitly asynchronous
@MainActor open func addAction(_ action: UIAlertAction)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:101:10: note: add '@MainActor' to make instance method 'showAlert' part of global actor 'MainActor'
func showAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:109:16: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
topVC?.present(alert, animated: true, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:101:10: note: add '@MainActor' to make instance method 'showAlert' part of global actor 'MainActor'
func showAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:116:25: warning: call to main actor-isolated initializer 'init(title:message:preferredStyle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertOta = UIAlertController(title: literal(.appName), message: literal(.loginMessage), preferredStyle: .alert)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:45:1: note: calls to initializer 'init(title:message:preferredStyle:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:112:10: note: add '@MainActor' to make instance method 'showLoginAlert(isCancellable:downloadHandler:)' part of global actor 'MainActor'
func showLoginAlert(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:118:27: warning: call to main actor-isolated initializer 'init(title:style:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let aceptAction = UIAlertAction(title: literal(.loginButton), style: .default) { _ in
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:34:1: note: calls to initializer 'init(title:style:handler:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)actionWithTitle:(nullable NSString *)title style:(UIAlertActionStyle)style handler:(void (^ __nullable)(UIAlertAction *action))handler;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:112:10: note: add '@MainActor' to make instance method 'showLoginAlert(isCancellable:downloadHandler:)' part of global actor 'MainActor'
func showLoginAlert(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:122:23: warning: call to main actor-isolated instance method 'addAction' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertOta.addAction(aceptAction)
^
UIKit.UIAlertController.addAction:2:22: note: calls to instance method 'addAction' from outside of its actor context are implicitly asynchronous
@MainActor open func addAction(_ action: UIAlertAction)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:112:10: note: add '@MainActor' to make instance method 'showLoginAlert(isCancellable:downloadHandler:)' part of global actor 'MainActor'
func showLoginAlert(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:125:32: warning: call to main actor-isolated initializer 'init(title:style:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let cancelAction = UIAlertAction(
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:34:1: note: calls to initializer 'init(title:style:handler:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)actionWithTitle:(nullable NSString *)title style:(UIAlertActionStyle)style handler:(void (^ __nullable)(UIAlertAction *action))handler;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:112:10: note: add '@MainActor' to make instance method 'showLoginAlert(isCancellable:downloadHandler:)' part of global actor 'MainActor'
func showLoginAlert(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:130:27: warning: call to main actor-isolated instance method 'addAction' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertOta.addAction(cancelAction)
^
UIKit.UIAlertController.addAction:2:22: note: calls to instance method 'addAction' from outside of its actor context are implicitly asynchronous
@MainActor open func addAction(_ action: UIAlertAction)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:112:10: note: add '@MainActor' to make instance method 'showLoginAlert(isCancellable:downloadHandler:)' part of global actor 'MainActor'
func showLoginAlert(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:135:16: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
topVC?.present(self.alertOta, animated: true, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:112:10: note: add '@MainActor' to make instance method 'showLoginAlert(isCancellable:downloadHandler:)' part of global actor 'MainActor'
func showLoginAlert(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:139:25: warning: call to main actor-isolated initializer 'init(title:message:preferredStyle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertOta = UIAlertController(title: literal(.appName), message: message, preferredStyle: .alert)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:45:1: note: calls to initializer 'init(title:message:preferredStyle:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:138:10: note: add '@MainActor' to make instance method 'showOtaAlert(_:allowPostpone:downloadHandler:postponeHandler:)' part of global actor 'MainActor'
func showOtaAlert(_ message: String, allowPostpone: Bool, downloadHandler: @escaping () -> Void, postponeHandler: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:141:30: warning: call to main actor-isolated initializer 'init(title:style:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let actionPostpone = UIAlertAction(title: literal(.alertButtonPostpone), style: .default) { _ in
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:34:1: note: calls to initializer 'init(title:style:handler:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)actionWithTitle:(nullable NSString *)title style:(UIAlertActionStyle)style handler:(void (^ __nullable)(UIAlertAction *action))handler;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:138:10: note: add '@MainActor' to make instance method 'showOtaAlert(_:allowPostpone:downloadHandler:postponeHandler:)' part of global actor 'MainActor'
func showOtaAlert(_ message: String, allowPostpone: Bool, downloadHandler: @escaping () -> Void, postponeHandler: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:144:30: warning: call to main actor-isolated initializer 'init(title:style:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let actionDownload = UIAlertAction(title: literal(.alertButtonUpdate), style: .default) { _ in
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:34:1: note: calls to initializer 'init(title:style:handler:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)actionWithTitle:(nullable NSString *)title style:(UIAlertActionStyle)style handler:(void (^ __nullable)(UIAlertAction *action))handler;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:138:10: note: add '@MainActor' to make instance method 'showOtaAlert(_:allowPostpone:downloadHandler:postponeHandler:)' part of global actor 'MainActor'
func showOtaAlert(_ message: String, allowPostpone: Bool, downloadHandler: @escaping () -> Void, postponeHandler: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:149:27: warning: call to main actor-isolated instance method 'addAction' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertOta.addAction(actionPostpone)
^
UIKit.UIAlertController.addAction:2:22: note: calls to instance method 'addAction' from outside of its actor context are implicitly asynchronous
@MainActor open func addAction(_ action: UIAlertAction)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:138:10: note: add '@MainActor' to make instance method 'showOtaAlert(_:allowPostpone:downloadHandler:postponeHandler:)' part of global actor 'MainActor'
func showOtaAlert(_ message: String, allowPostpone: Bool, downloadHandler: @escaping () -> Void, postponeHandler: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:151:23: warning: call to main actor-isolated instance method 'addAction' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertOta.addAction(actionDownload)
^
UIKit.UIAlertController.addAction:2:22: note: calls to instance method 'addAction' from outside of its actor context are implicitly asynchronous
@MainActor open func addAction(_ action: UIAlertAction)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:138:10: note: add '@MainActor' to make instance method 'showOtaAlert(_:allowPostpone:downloadHandler:postponeHandler:)' part of global actor 'MainActor'
func showOtaAlert(_ message: String, allowPostpone: Bool, downloadHandler: @escaping () -> Void, postponeHandler: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:155:16: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
topVC?.present(self.alertOta, animated: true, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:138:10: note: add '@MainActor' to make instance method 'showOtaAlert(_:allowPostpone:downloadHandler:postponeHandler:)' part of global actor 'MainActor'
func showOtaAlert(_ message: String, allowPostpone: Bool, downloadHandler: @escaping () -> Void, postponeHandler: @escaping () -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:159:30: warning: call to main actor-isolated initializer 'init(title:message:preferredStyle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertPostpone = UIAlertController(title: literal(.appName), message: message, preferredStyle: .alert)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:45:1: note: calls to initializer 'init(title:message:preferredStyle:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:158:10: note: add '@MainActor' to make instance method 'showPostponeSelectionAlert(_:options:selectionHandler:)' part of global actor 'MainActor'
func showPostponeSelectionAlert(_ message: String, options: [TimeInterval], selectionHandler: @escaping (TimeInterval) -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:162:27: warning: call to main actor-isolated initializer 'init(title:options:selectionHandler:selectedOption:presentationMode:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let optionsView = OptionsListView(title: "Postpone alert for", options: Array(options.prefix(3))) { selectedOption in
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Core/Views/OptionsListView.swift:10:8: note: calls to initializer 'init(title:options:selectionHandler:selectedOption:presentationMode:)' from outside of its actor context are implicitly asynchronous
struct OptionsListView: View {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Core/Views/OptionsListView.swift:10:8: note: main actor isolation inferred from conformance to protocol 'View'
struct OptionsListView: View {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:158:10: note: add '@MainActor' to make instance method 'showPostponeSelectionAlert(_:options:selectionHandler:)' part of global actor 'MainActor'
func showPostponeSelectionAlert(_ message: String, options: [TimeInterval], selectionHandler: @escaping (TimeInterval) -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:166:33: warning: call to main actor-isolated initializer 'init(rootView:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let hostingController = UIHostingController(rootView: optionsView)
^
SwiftUI.UIHostingController.init:2:35: note: calls to initializer 'init(rootView:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(rootView: Content)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:158:10: note: add '@MainActor' to make instance method 'showPostponeSelectionAlert(_:options:selectionHandler:)' part of global actor 'MainActor'
func showPostponeSelectionAlert(_ message: String, options: [TimeInterval], selectionHandler: @escaping (TimeInterval) -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:169:27: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
hostingController.modalPresentationStyle = .overFullScreen
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:158:10: note: add '@MainActor' to make instance method 'showPostponeSelectionAlert(_:options:selectionHandler:)' part of global actor 'MainActor'
func showPostponeSelectionAlert(_ message: String, options: [TimeInterval], selectionHandler: @escaping (TimeInterval) -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:170:27: warning: main actor-isolated property 'modalTransitionStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
hostingController.modalTransitionStyle = .crossDissolve
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:267:52: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalTransitionStyle modalTransitionStyle API_AVAILABLE(ios(3.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:158:10: note: add '@MainActor' to make instance method 'showPostponeSelectionAlert(_:options:selectionHandler:)' part of global actor 'MainActor'
func showPostponeSelectionAlert(_ message: String, options: [TimeInterval], selectionHandler: @escaping (TimeInterval) -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:174:16: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
topVC?.present(hostingController, animated: true, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:158:10: note: add '@MainActor' to make instance method 'showPostponeSelectionAlert(_:options:selectionHandler:)' part of global actor 'MainActor'
func showPostponeSelectionAlert(_ message: String, options: [TimeInterval], selectionHandler: @escaping (TimeInterval) -> Void) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:178:30: warning: call to main actor-isolated initializer 'init(rootView:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = UIHostingController(rootView: ForceUpdateScreen())
^
SwiftUI.UIHostingController.init:2:35: note: calls to initializer 'init(rootView:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(rootView: Content)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:177:10: note: add '@MainActor' to make instance method 'showForceUpdate()' part of global actor 'MainActor'
func showForceUpdate() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:178:60: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = UIHostingController(rootView: ForceUpdateScreen())
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/ForceUpdateScreen.swift:10:8: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
struct ForceUpdateScreen: View {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/ForceUpdateScreen.swift:10:8: note: main actor isolation inferred from conformance to protocol 'View'
struct ForceUpdateScreen: View {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:177:10: note: add '@MainActor' to make instance method 'showForceUpdate()' part of global actor 'MainActor'
func showForceUpdate() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:179:36: warning: call to main actor-isolated initializer 'init(rootViewController:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let navigationController = AppliveryNavigationController(rootViewController: viewController)
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/AppliveryNavigationController.swift:12:61: note: calls to initializer 'init(rootViewController:)' from outside of its actor context are implicitly asynchronous
class AppliveryNavigationController: UINavigationController {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/AppliveryNavigationController.swift:12:61: note: main actor isolation inferred from inheritance from class 'UINavigationController'
class AppliveryNavigationController: UINavigationController {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:177:10: note: add '@MainActor' to make instance method 'showForceUpdate()' part of global actor 'MainActor'
func showForceUpdate() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:187:27: warning: call to main actor-isolated initializer 'init(title:message:preferredStyle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self.alertError = UIAlertController(title: literal(.appName), message: message, preferredStyle: .alert)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:45:1: note: calls to initializer 'init(title:message:preferredStyle:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(UIAlertControllerStyle)preferredStyle;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:186:10: note: add '@MainActor' to make instance method 'showErrorAlert' part of global actor 'MainActor'
func showErrorAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:189:28: warning: call to main actor-isolated initializer 'init(title:style:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let actionCancel = UIAlertAction(title: literal(.alertButtonCancel), style: .default, handler: nil)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h:34:1: note: calls to initializer 'init(title:style:handler:)' from outside of its actor context are implicitly asynchronous
+ (instancetype)actionWithTitle:(nullable NSString *)title style:(UIAlertActionStyle)style handler:(void (^ __nullable)(UIAlertAction *action))handler;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:186:10: note: add '@MainActor' to make instance method 'showErrorAlert' part of global actor 'MainActor'
func showErrorAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:191:20: warning: call to main actor-isolated instance method 'addAction' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
alertError.addAction(actionCancel)
^
UIKit.UIAlertController.addAction:2:22: note: calls to instance method 'addAction' from outside of its actor context are implicitly asynchronous
@MainActor open func addAction(_ action: UIAlertAction)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:186:10: note: add '@MainActor' to make instance method 'showErrorAlert' part of global actor 'MainActor'
func showErrorAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:193:16: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
topVC?.present(self.alertError, animated: true, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:186:10: note: add '@MainActor' to make instance method 'showErrorAlert' part of global actor 'MainActor'
func showErrorAlert(_ message: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:197:24: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.modalPresentationStyle = .fullScreen
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:196:10: note: add '@MainActor' to make instance method 'presentModal(_:animated:)' part of global actor 'MainActor'
func presentModal(_ viewController: UIViewController, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:199:16: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
topVC?.present(viewController, animated: animated, completion: nil)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:196:10: note: add '@MainActor' to make instance method 'presentModal(_:animated:)' part of global actor 'MainActor'
func presentModal(_ viewController: UIViewController, animated: Bool) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:203:45: warning: main actor-isolated property 'connectedScenes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let scene = 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/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:203:38: 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
if let scene = 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/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:204:31: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let window = scene.windows.filter({ $0 is AppliveryWindow }).first {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h:38:54: note: property declared here
@property (nonatomic, readonly) NSArray<UIWindow *> *windows;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:205:20: warning: call to main actor-isolated instance method 'makeKeyAndVisible()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
window.makeKeyAndVisible()
^
UIKit.UIWindow.makeKeyAndVisible:2:22: note: calls to instance method 'makeKeyAndVisible()' from outside of its actor context are implicitly asynchronous
@MainActor open func makeKeyAndVisible()}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:206:43: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if var topController = window.rootViewController {
^
/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: property declared here
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0)); // default is nil
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:207:63: warning: main actor-isolated property 'presentedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
while let presentedController = topController.presentedViewController {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:210:59: note: property declared here
@property(nullable, nonatomic,readonly) UIViewController *presentedViewController API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:211:30: warning: call to main actor-isolated instance method 'presentActionSheet()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
vcToPresent?.presentActionSheet()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/VideoReport/RecordingViewController.swift:116:10: note: calls to instance method 'presentActionSheet()' from outside of its actor context are implicitly asynchronous
func presentActionSheet() {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/VideoReport/RecordingViewController.swift:116:10: note: main actor isolation inferred from inheritance from class 'UIViewController'
func presentActionSheet() {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:202:10: note: add '@MainActor' to make instance method 'presentFeedbackForm()' part of global actor 'MainActor'
func presentFeedbackForm() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:226:18: warning: main actor-isolated property 'connectedScenes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.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/AppliverySDK/Wrappers/App.swift:223:10: note: add '@MainActor' to make instance method 'topViewController()' part of global actor 'MainActor'
func topViewController() -> UIViewController? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:225:43: 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
let keyWindow = UIApplication.shared
^
/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/AppliverySDK/Wrappers/App.swift:223:10: note: add '@MainActor' to make instance method 'topViewController()' part of global actor 'MainActor'
func topViewController() -> UIViewController? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:228:31: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.flatMap({ $0.windows })
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h:38:54: note: property declared here
@property (nonatomic, readonly) NSArray<UIWindow *> *windows;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:229:36: warning: main actor-isolated property 'isKeyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.first(where: { $0.isKeyWindow }),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:42:55: note: property declared here
@property(nonatomic,readonly,getter=isKeyWindow) BOOL keyWindow;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:230:36: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let rootVC = keyWindow.rootViewController
^
/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: property declared here
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0)); // default is nil
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:223:10: note: add '@MainActor' to make instance method 'topViewController()' part of global actor 'MainActor'
func topViewController() -> UIViewController? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:251:6: warning: 'keyWindow' was deprecated in iOS 13.0: Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes
.keyWindow?
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:253:6: warning: main actor-isolated property 'isViewLoaded' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.isViewLoaded ?? false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:125:58: note: property declared here
@property(nonatomic, readonly, getter=isViewLoaded) BOOL viewLoaded API_AVAILABLE(ios(3.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:252:6: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.rootViewController?
^
/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: property declared here
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0)); // default is nil
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:251:6: warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.keyWindow?
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:108:51: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *keyWindow API_DEPRECATED("Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes", ios(2.0, 13.0)) API_UNAVAILABLE(visionos, watchos);
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:250:28: 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
isReady = UIApplication.shared
^
/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/AppliverySDK/Wrappers/App.swift:259:35: warning: main actor-isolated property 'presentedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let presentedVC = root.presentedViewController {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:210:59: note: property declared here
@property(nullable, nonatomic,readonly) UIViewController *presentedViewController API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:258:10: note: add '@MainActor' to make instance method 'findTopViewController(from:)' part of global actor 'MainActor'
func findTopViewController(from root: UIViewController) -> UIViewController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:265:42: warning: main actor-isolated property 'visibleViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let visibleVC = navController.visibleViewController {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:68:66: note: property declared here
@property(nullable, nonatomic,readonly,strong) UIViewController *visibleViewController; // Return modal view controller if it exists. Otherwise the top view controller.
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:258:10: note: add '@MainActor' to make instance method 'findTopViewController(from:)' part of global actor 'MainActor'
func findTopViewController(from root: UIViewController) -> UIViewController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:271:43: warning: main actor-isolated property 'selectedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let selectedVC = tabController.selectedViewController {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h:94:67: note: property declared here
@property(nullable, nonatomic, assign) __kindof UIViewController *selectedViewController; // This may return the "More" navigation controller if it exists.
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:258:10: note: add '@MainActor' to make instance method 'findTopViewController(from:)' part of global actor 'MainActor'
func findTopViewController(from root: UIViewController) -> UIViewController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:118:27: warning: sending value of non-Sendable type '(UIAlertAction) -> Void' risks causing data races; this is an error in the Swift 6 language mode
let aceptAction = UIAlertAction(title: literal(.loginButton), style: .default) { _ in
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:118:27: note: sending task-isolated value of non-Sendable type '(UIAlertAction) -> Void' to main actor-isolated initializer 'init(title:style:handler:)' risks causing races in between task-isolated and main actor-isolated uses
let aceptAction = UIAlertAction(title: literal(.loginButton), style: .default) { _ in
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:141:30: warning: sending value of non-Sendable type '(UIAlertAction) -> Void' risks causing data races; this is an error in the Swift 6 language mode
let actionPostpone = UIAlertAction(title: literal(.alertButtonPostpone), style: .default) { _ in
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:141:30: note: sending task-isolated value of non-Sendable type '(UIAlertAction) -> Void' to main actor-isolated initializer 'init(title:style:handler:)' risks causing races in between task-isolated and main actor-isolated uses
let actionPostpone = UIAlertAction(title: literal(.alertButtonPostpone), style: .default) { _ in
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:144:30: warning: sending value of non-Sendable type '(UIAlertAction) -> Void' risks causing data races; this is an error in the Swift 6 language mode
let actionDownload = UIAlertAction(title: literal(.alertButtonUpdate), style: .default) { _ in
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:144:30: note: sending task-isolated value of non-Sendable type '(UIAlertAction) -> Void' to main actor-isolated initializer 'init(title:style:handler:)' risks causing races in between task-isolated and main actor-isolated uses
let actionDownload = UIAlertAction(title: literal(.alertButtonUpdate), style: .default) { _ in
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:162:27: warning: sending value of non-Sendable type '(TimeInterval) -> Void' (aka '(Double) -> ()') risks causing data races; this is an error in the Swift 6 language mode
let optionsView = OptionsListView(title: "Postpone alert for", options: Array(options.prefix(3))) { selectedOption in
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/App.swift:162:27: note: sending task-isolated value of non-Sendable type '(TimeInterval) -> Void' (aka '(Double) -> ()') to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
let optionsView = OptionsListView(title: "Postpone alert for", options: Array(options.prefix(3))) { selectedOption in
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/AppliveryNavigationController.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:34:33: warning: main actor-isolated property 'modelName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.modelName
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/UIDevice+ModelName.swift:17:9: note: property declared here
var modelName: String {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:33:10: note: add '@MainActor' to make instance method 'model()' part of global actor 'MainActor'
func model() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:34:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.modelName
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:33:10: note: add '@MainActor' to make instance method 'model()' part of global actor 'MainActor'
func model() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:38:33: warning: main actor-isolated property 'model' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.model
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:40:51: note: property declared here
@property(nonatomic,readonly,strong) NSString *model; // e.g. @"iPhone", @"iPod touch"
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:37:10: note: add '@MainActor' to make instance method 'type()' part of global actor 'MainActor'
func type() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:38:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.model
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:37:10: note: add '@MainActor' to make instance method 'type()' part of global actor 'MainActor'
func type() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:42:33: warning: main actor-isolated property 'systemVersion' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.systemVersion
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:43:51: note: property declared here
@property(nonatomic,readonly,strong) NSString *systemVersion; // e.g. @"4.0"
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:41:10: note: add '@MainActor' to make instance method 'systemVersion()' part of global actor 'MainActor'
func systemVersion() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:42:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.systemVersion
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:41:10: note: add '@MainActor' to make instance method 'systemVersion()' part of global actor 'MainActor'
func systemVersion() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:46:33: warning: main actor-isolated property 'systemName' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.systemName
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:42:51: note: property declared here
@property(nonatomic,readonly,strong) NSString *systemName; // e.g. @"iOS"
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:45:10: note: add '@MainActor' to make instance method 'systemName()' part of global actor 'MainActor'
func systemName() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:46:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.systemName
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:45:10: note: add '@MainActor' to make instance method 'systemName()' part of global actor 'MainActor'
func systemName() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:50:33: warning: main actor-isolated property 'identifierForVendor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.identifierForVendor?.uuidString ?? "NO_ID"
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:46:61: note: property declared here
@property(nullable, nonatomic,readonly,strong) NSUUID *identifierForVendor API_AVAILABLE(ios(6.0)); // a UUID that may be used to uniquely identify the device, same across apps from a single vendor.
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:49:10: note: add '@MainActor' to make instance method 'vendorId()' part of global actor 'MainActor'
func vendorId() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:50:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return UIDevice.current.identifierForVendor?.uuidString ?? "NO_ID"
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:49:10: note: add '@MainActor' to make instance method 'vendorId()' part of global actor 'MainActor'
func vendorId() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:54:26: warning: main actor-isolated property 'isBatteryMonitoringEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
UIDevice.current.isBatteryMonitoringEnabled = true
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:52:61: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isBatteryMonitoringEnabled) BOOL batteryMonitoringEnabled API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos); // default is NO
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:53:10: note: add '@MainActor' to make instance method 'enableBatteryMonitoring()' part of global actor 'MainActor'
func enableBatteryMonitoring() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:54:18: warning: main actor-isolated class property 'current' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
UIDevice.current.isBatteryMonitoringEnabled = true
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: mutation of this class property is only permitted within the actor
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:53:10: note: add '@MainActor' to make instance method 'enableBatteryMonitoring()' part of global actor 'MainActor'
func enableBatteryMonitoring() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:58:26: warning: main actor-isolated property 'isBatteryMonitoringEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
UIDevice.current.isBatteryMonitoringEnabled = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:52:61: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isBatteryMonitoringEnabled) BOOL batteryMonitoringEnabled API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos); // default is NO
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:57:10: note: add '@MainActor' to make instance method 'disableBatteryMonitoring()' part of global actor 'MainActor'
func disableBatteryMonitoring() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:58:18: warning: main actor-isolated class property 'current' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
UIDevice.current.isBatteryMonitoringEnabled = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: mutation of this class property is only permitted within the actor
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:57:10: note: add '@MainActor' to make instance method 'disableBatteryMonitoring()' part of global actor 'MainActor'
func disableBatteryMonitoring() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:62:37: warning: main actor-isolated property 'batteryLevel' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return Int(UIDevice.current.batteryLevel * 100)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:54:61: note: property declared here
@property(nonatomic,readonly) float batteryLevel API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos); // 0 .. 1.0. -1.0 if UIDeviceBatteryStateUnknown
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:61:10: note: add '@MainActor' to make instance method 'batteryLevel()' part of global actor 'MainActor'
func batteryLevel() -> Int {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:62:29: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return Int(UIDevice.current.batteryLevel * 100)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:61:10: note: add '@MainActor' to make instance method 'batteryLevel()' part of global actor 'MainActor'
func batteryLevel() -> Int {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:66:33: warning: main actor-isolated property 'batteryState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
switch UIDevice.current.batteryState {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:53:61: note: property declared here
@property(nonatomic,readonly) UIDeviceBatteryState batteryState API_AVAILABLE(ios(3.0)) API_UNAVAILABLE(tvos); // UIDeviceBatteryStateUnknown if monitoring disabled
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:65:10: note: add '@MainActor' to make instance method 'batteryState()' part of global actor 'MainActor'
func batteryState() -> Bool? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:66:25: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
switch UIDevice.current.batteryState {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:65:10: note: add '@MainActor' to make instance method 'batteryState()' part of global actor 'MainActor'
func batteryState() -> Bool? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:120:35: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let width = UIScreen.main.bounds.width * UIScreen.main.scale
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:59:39: note: property declared here
@property(nonatomic,readonly) CGRect bounds; // Bounds of entire screen in points
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:120:30: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let width = UIScreen.main.bounds.width * UIScreen.main.scale
^
/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/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:120:64: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let width = UIScreen.main.bounds.width * UIScreen.main.scale
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:120:59: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let width = UIScreen.main.bounds.width * UIScreen.main.scale
^
/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/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:121:36: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let height = UIScreen.main.bounds.height * UIScreen.main.scale
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:59:39: note: property declared here
@property(nonatomic,readonly) CGRect bounds; // Bounds of entire screen in points
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:121:31: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let height = UIScreen.main.bounds.height * UIScreen.main.scale
^
/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/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:121:66: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let height = UIScreen.main.bounds.height * UIScreen.main.scale
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:121:61: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let height = UIScreen.main.bounds.height * UIScreen.main.scale
^
/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/AppliverySDK/Wrappers/Device.swift:119:10: note: add '@MainActor' to make instance method 'resolution()' part of global actor 'MainActor'
func resolution() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:127:33: warning: 'statusBarOrientation' was deprecated in iOS 13.0: Use the interfaceOrientation property of the window scene instead.
if UIApplication.shared.statusBarOrientation.isLandscape {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:127:33: warning: main actor-isolated property 'statusBarOrientation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if UIApplication.shared.statusBarOrientation.isLandscape {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:119:55: note: property declared here
@property(readonly, nonatomic) UIInterfaceOrientation statusBarOrientation API_UNAVAILABLE(tvos) API_DEPRECATED("Use the interfaceOrientation property of the window scene instead.", ios(2.0, 13.0)) API_UNAVAILABLE(visionos);
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:126:10: note: add '@MainActor' to make instance method 'orientation()' part of global actor 'MainActor'
func orientation() -> String {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Device.swift:127:26: 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
if UIApplication.shared.statusBarOrientation.isLandscape {
^
/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/AppliverySDK/Wrappers/Device.swift:126:10: note: add '@MainActor' to make instance method 'orientation()' part of global actor 'MainActor'
func orientation() -> String {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/EventDetector.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/EventDetector.swift:32:6: warning: capture of 'onDetection' with non-sendable type '() -> Void' in a '@Sendable' closure
onDetection()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/EventDetector.swift:32:6: note: a function type must be marked '@Sendable' to conform to 'Sendable'
onDetection()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/EventDetector.swift:54:21: warning: capture of 'onDetection' with non-sendable type '() -> Void' in a '@Sendable' closure
onDetection()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/EventDetector.swift:54:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
onDetection()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Keyboard.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Keyboard.swift:78:12: warning: passing non-sendable parameter 'notificationHandler' to function expecting a @Sendable closure
using: notificationHandler
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Keyboard.swift:72:52: note: parameter 'notificationHandler' is implicitly non-sendable
private class func keyboardEvent(_ event: String, notificationHandler: @escaping (Notification) -> Void) {
^
@Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:15:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ScreenRecorderManager' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = ScreenRecorderManager()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:13:20: note: class 'ScreenRecorderManager' does not conform to the 'Sendable' protocol
public final class ScreenRecorderManager: NSObject, RPScreenRecorderDelegate, RPPreviewViewControllerDelegate {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:15:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static let shared = ScreenRecorderManager()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:15:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = ScreenRecorderManager()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:24:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
var recordViewController: RecordingViewController = RecordingViewController()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:46:48: warning: call to main actor-isolated instance method 'showRecordButton()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self?.recordViewController.showRecordButton()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/VideoReport/RecordingViewController.swift:93:10: note: calls to instance method 'showRecordButton()' from outside of its actor context are implicitly asynchronous
func showRecordButton() {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/VideoReport/RecordingViewController.swift:93:10: note: main actor isolation inferred from inheritance from class 'UIViewController'
func showRecordButton() {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:56:48: warning: call to main actor-isolated instance method 'showRecordButton()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self?.recordViewController.showRecordButton()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/VideoReport/RecordingViewController.swift:93:10: note: calls to instance method 'showRecordButton()' from outside of its actor context are implicitly asynchronous
func showRecordButton() {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Modules/VideoReport/RecordingViewController.swift:93:10: note: main actor isolation inferred from inheritance from class 'UIViewController'
func showRecordButton() {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:103:45: warning: main actor-isolated property 'connectedScenes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let scene = 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/AppliverySDK/Wrappers/ScreenRecorderManager.swift:102:10: note: add '@MainActor' to make instance method 'presentPreviewWithScreenshoot()' part of global actor 'MainActor'
func presentPreviewWithScreenshoot() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:103:38: 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
if let scene = 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/AppliverySDK/Wrappers/ScreenRecorderManager.swift:102:10: note: add '@MainActor' to make instance method 'presentPreviewWithScreenshoot()' part of global actor 'MainActor'
func presentPreviewWithScreenshoot() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:104:31: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let window = scene.windows.first {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h:38:54: note: property declared here
@property (nonatomic, readonly) NSArray<UIWindow *> *windows;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:102:10: note: add '@MainActor' to make instance method 'presentPreviewWithScreenshoot()' part of global actor 'MainActor'
func presentPreviewWithScreenshoot() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:108:43: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if var topController = window.rootViewController {
^
/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: property declared here
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0)); // default is nil
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:102:10: note: add '@MainActor' to make instance method 'presentPreviewWithScreenshoot()' part of global actor 'MainActor'
func presentPreviewWithScreenshoot() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:109:63: warning: main actor-isolated property 'presentedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
while let presentedController = topController.presentedViewController {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:210:59: note: property declared here
@property(nullable, nonatomic,readonly) UIViewController *presentedViewController API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:102:10: note: add '@MainActor' to make instance method 'presentPreviewWithScreenshoot()' part of global actor 'MainActor'
func presentPreviewWithScreenshoot() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:124:45: warning: main actor-isolated property 'connectedScenes' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let scene = 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/AppliverySDK/Wrappers/ScreenRecorderManager.swift:123:10: note: add '@MainActor' to make instance method 'presentVideoFeedback(clipURL:)' part of global actor 'MainActor'
func presentVideoFeedback(clipURL: URL) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:124:38: 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
if let scene = 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/AppliverySDK/Wrappers/ScreenRecorderManager.swift:123:10: note: add '@MainActor' to make instance method 'presentVideoFeedback(clipURL:)' part of global actor 'MainActor'
func presentVideoFeedback(clipURL: URL) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:125:31: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let window = scene.windows.first {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h:38:54: note: property declared here
@property (nonatomic, readonly) NSArray<UIWindow *> *windows;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:123:10: note: add '@MainActor' to make instance method 'presentVideoFeedback(clipURL:)' part of global actor 'MainActor'
func presentVideoFeedback(clipURL: URL) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:127:43: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if var topController = window.rootViewController {
^
/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: property declared here
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0)); // default is nil
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:123:10: note: add '@MainActor' to make instance method 'presentVideoFeedback(clipURL:)' part of global actor 'MainActor'
func presentVideoFeedback(clipURL: URL) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:128:63: warning: main actor-isolated property 'presentedViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
while let presentedController = topController.presentedViewController {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:210:59: note: property declared here
@property(nullable, nonatomic,readonly) UIViewController *presentedViewController API_AVAILABLE(ios(5.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:123:10: note: add '@MainActor' to make instance method 'presentVideoFeedback(clipURL:)' part of global actor 'MainActor'
func presentVideoFeedback(clipURL: URL) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:144:13: warning: capture of 'self' with non-sendable type 'ScreenRecorderManager?' in a '@Sendable' closure
self?.stopClipBuffering()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:13:20: note: class 'ScreenRecorderManager' does not conform to the 'Sendable' protocol
public final class ScreenRecorderManager: NSObject, RPScreenRecorderDelegate, RPPreviewViewControllerDelegate {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:161:46: warning: main actor-isolated property 'windows' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let window = UIApplication.shared.windows.first {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:109:62: note: property declared here
@property(nonatomic,readonly) NSArray<__kindof UIWindow *> *windows API_DEPRECATED("Use UIWindowScene.windows on a relevant window scene instead", ios(2.0, 15.0), visionos(1.0, 1.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:160:10: note: add '@MainActor' to make instance method 'takeScreenshotIncludingAlertBackground()' part of global actor 'MainActor'
func takeScreenshotIncludingAlertBackground() -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:161:39: 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
if let window = UIApplication.shared.windows.first {
^
/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/AppliverySDK/Wrappers/ScreenRecorderManager.swift:160:10: note: add '@MainActor' to make instance method 'takeScreenshotIncludingAlertBackground()' part of global actor 'MainActor'
func takeScreenshotIncludingAlertBackground() -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:162:65: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let renderer = UIGraphicsImageRenderer(size: window.bounds.size)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:160:10: note: add '@MainActor' to make instance method 'takeScreenshotIncludingAlertBackground()' part of global actor 'MainActor'
func takeScreenshotIncludingAlertBackground() -> UIImage? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:164:24: warning: call to main actor-isolated instance method 'drawHierarchy(in:afterScreenUpdates:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
window.drawHierarchy(in: window.bounds, afterScreenUpdates: true)
^
UIKit.UIView.drawHierarchy:3:24: note: calls to instance method 'drawHierarchy(in:afterScreenUpdates:)' from outside of its actor context are implicitly asynchronous
@MainActor open func drawHierarchy(in rect: CGRect, afterScreenUpdates afterUpdates: Bool) -> Bool}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:164:49: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
window.drawHierarchy(in: window.bounds, afterScreenUpdates: 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:188:40: note: property declared here
@property(nonatomic) CGRect bounds; // default bounds is zero origin, frame size. animatable
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:86:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/ScreenRecorderManager.swift:88:27: note: closure captures 'self' which is accessible to code in the current task
await exportClip()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:28:42: warning: 'keyWindow' was deprecated in iOS 13.0: Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes
guard let layer = UIApplication.shared.keyWindow?.layer else {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:28:53: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let layer = UIApplication.shared.keyWindow?.layer else {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong) CALayer *layer; // returns view's layer. Will always return a non-nil value. view is layer's delegate
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:28:42: warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let layer = UIApplication.shared.keyWindow?.layer 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:108:51: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *keyWindow API_DEPRECATED("Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes", ios(2.0, 13.0)) API_UNAVAILABLE(visionos, watchos);
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:28:35: 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 layer = UIApplication.shared.keyWindow?.layer 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/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:33:81: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(layer.frame.size, false, UIScreen.main.scale)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:33:76: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
UIGraphicsBeginImageContextWithOptions(layer.frame.size, false, UIScreen.main.scale)
^
/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/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:50:27: warning: main actor-isolated property 'orientation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
switch UIDevice.current.orientation {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:44:51: note: property declared here
@property(nonatomic,readonly) UIDeviceOrientation orientation API_UNAVAILABLE(tvos, visionos); // return current device orientation. this will return UIDeviceOrientationUnknown unless device orientation notifications are being generated.
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:50:19: warning: main actor-isolated class property 'current' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
switch UIDevice.current.orientation {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h:37:49: note: class property declared here
@property(class, nonatomic, readonly) UIDevice *currentDevice;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Wrappers/Screenshot.swift:27:22: note: add '@MainActor' to make static method 'takeScreenshot()' part of global actor 'MainActor'
private static func takeScreenshot() -> UIImage {
^
@MainActor
SwiftCompile normal arm64 Compiling\ ImageManager.swift,\ LoginManager.swift,\ WindowManager.swift,\ AccessToken.swift,\ Config.swift,\ ConfigurationUpdate.swift,\ CustomLogin.swift,\ Feedback.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/ImageManager.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/LoginManager.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/AccessToken.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/Config.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/ConfigurationUpdate.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/CustomLogin.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/Feedback.swift (in target 'Applivery' from project 'Applivery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/ImageManager.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/LoginManager.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:24:37: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let hostingViewController = UIViewController()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:25:25: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let newWindow = UIWindow(frame: UIScreen.main.bounds)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:149:1: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:25:55: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let newWindow = UIWindow(frame: UIScreen.main.bounds)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:59:39: note: property declared here
@property(nonatomic,readonly) CGRect bounds; // Bounds of entire screen in points
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:25:50: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let newWindow = UIWindow(frame: UIScreen.main.bounds)
^
/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/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:26:19: warning: main actor-isolated property 'rootViewController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
newWindow.rootViewController = hostingViewController
^
/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/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:27:19: warning: main actor-isolated property 'windowLevel' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
newWindow.windowLevel = UIWindow.Level(rawValue: CGFloat.greatestFiniteMagnitude)
^
/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/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:28:19: warning: call to main actor-isolated instance method 'makeKeyAndVisible()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
newWindow.makeKeyAndVisible()
^
UIKit.UIWindow.makeKeyAndVisible:2:22: note: calls to instance method 'makeKeyAndVisible()' from outside of its actor context are implicitly asynchronous
@MainActor open func makeKeyAndVisible()}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:30:31: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
hostingViewController.present(viewController, animated: true)
^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:23:10: note: add '@MainActor' to make instance method 'present(viewController:)' part of global actor 'MainActor'
func present(viewController: UIViewController) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:35:24: warning: call to main actor-isolated instance method 'dismiss(animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
viewController.dismiss(animated: true)
^
UIKit.UIViewController.dismiss:3:24: note: calls to instance method 'dismiss(animated:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open func dismiss(animated flag: Bool, completion: (() -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Managers/WindowManager.swift:34: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/AppliverySDK/Managers/WindowManager.swift:39:17: 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 = 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/AppliverySDK/Managers/WindowManager.swift:38:10: note: add '@MainActor' to make instance method 'hide()' part of global actor 'MainActor'
func hide() {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/AccessToken.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/Config.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/ConfigurationUpdate.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/CustomLogin.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Model/Feedback.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery_Applivery.build/empty-Applivery_Applivery.plist (in target 'Applivery_Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery_Applivery.build/empty-Applivery_Applivery.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery_Applivery.build/Applivery-SBPartialInfo.plist -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle/Info.plist
SwiftDriverJobDiscovery normal arm64 Emitting module for Applivery (in target 'Applivery' from project 'Applivery')
SwiftDriver\ Compilation\ Requirements Applivery normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Applivery' from project 'Applivery')
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 Applivery -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery-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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.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/Applivery.build/Debug-iphoneos/Applivery.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery_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/Applivery.build/Debug-iphoneos/Applivery.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
LinkStoryboards (in target 'Applivery_Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module Applivery_Applivery --target-device iphone --target-device ipad --minimum-deployment-target 13.0 --output-format human-readable-text --link /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery_Applivery.build/Applivery.storyboardc
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Applivery-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery-Swift.h (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Applivery-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftmodule (in target 'Applivery' from project 'Applivery')
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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftdoc (in target 'Applivery' from project 'Applivery')
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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.abi.json (in target 'Applivery' from project 'Applivery')
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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftsourceinfo (in target 'Applivery' from project 'Applivery')
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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ ConfigService.swift,\ DownloadService.swift,\ FeedbackService.swift,\ LoginService.swift,\ UpdateService.swift,\ Background.swift,\ DateExtension.swift,\ DiskStatus.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/ConfigService.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/DownloadService.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/FeedbackService.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Background.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/DateExtension.swift /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/DiskStatus.swift (in target 'Applivery' from project 'Applivery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/ConfigService.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/DownloadService.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/FeedbackService.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:131:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.app.showErrorAlert("Insufficient storage")
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:131:21: 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.app.showErrorAlert("Insufficient storage")
^~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:142:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:143:32: note: closure captures 'self' which is accessible to code in the current task
if let url = await downloadService.downloadURL(lastBuildId) {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:138:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.app.showErrorAlert("Could not read if there is enough storage in the device")
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:138: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.app.showErrorAlert("Could not read if there is enough storage in the device")
^~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:93:57: warning: sending 'self.loginRepository' risks causing data races; this is an error in the Swift 6 language mode
let redirectURL = try await loginRepository.getRedirctURL()
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:93:57: note: sending main actor-isolated 'self.loginRepository' to nonisolated instance method 'getRedirctURL()' risks causing data races between nonisolated and main actor-isolated uses
let redirectURL = try await loginRepository.getRedirctURL()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:74:19: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
await store(accessToken: accessToken, userName: loginData.payload.user)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:74:19: note: sending task-isolated 'self' to main actor-isolated instance method 'store(accessToken:userName:)' risks causing data races between main actor-isolated and task-isolated uses
await store(accessToken: accessToken, userName: loginData.payload.user)
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:78:23: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
await openAuthWebView()
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:78:23: note: sending task-isolated 'self' to main actor-isolated instance method 'openAuthWebView()' risks causing data races between main actor-isolated and task-isolated uses
await openAuthWebView()
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:108:54: warning: sending 'self.loginRepository' risks causing data races; this is an error in the Swift 6 language mode
let userData = try await loginRepository.bind(user: user)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:108:54: note: sending main actor-isolated 'self.loginRepository' to nonisolated instance method 'bind(user:)' risks causing data races between nonisolated and main actor-isolated uses
let userData = try await loginRepository.bind(user: user)
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:145:24: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
if app.openUrl(url) {
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:145:24: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
if app.openUrl(url) {
^~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:146:25: warning: sending 'onResult' risks causing data races; this is an error in the Swift 6 language mode
onResult?(.success())
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/LoginService.swift:146:25: note: task-isolated 'onResult' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
onResult?(.success())
^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift:56:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self?.app.showForceUpdate()
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift:56:13: 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?.app.showForceUpdate()
^~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift:64:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self?.userDefaults.setValue(Date(), forKey: AppliveryUserDefaultsKeys.appliveryLastUpdatePopupShown)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift:64:13: 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?.userDefaults.setValue(Date(), forKey: AppliveryUserDefaultsKeys.appliveryLastUpdatePopupShown)
^~~~
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift:181:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
Task {
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Services/UpdateService.swift:184:53: note: closure captures 'self' which is accessible to code in the current task
let freshConfig = try await self.configService.updateConfig()
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Background.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Background.swift:12:79: warning: passing non-sendable parameter 'code' to function expecting a @Sendable closure
DispatchQueue.global(qos: DispatchQoS.QoSClass.userInitiated).async(execute: code)
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Background.swift:11:24: note: parameter 'code' is implicitly non-sendable
func runInBackground(_ code: @escaping () -> Void) {
^
@Sendable
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Background.swift:16:36: warning: passing non-sendable parameter 'code' to function expecting a @Sendable closure
DispatchQueue.main.async(execute: code)
^
/Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/Background.swift:15:29: note: parameter 'code' is implicitly non-sendable
func runOnMainThreadAsync(_ code: @escaping () -> Void) {
^
@Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/DateExtension.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AppliverySDK/Utils/DiskStatus.swift (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ImageManager.swift, LoginManager.swift, WindowManager.swift, AccessToken.swift, Config.swift, ConfigurationUpdate.swift, CustomLogin.swift, Feedback.swift (in target 'Applivery' from project 'Applivery')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle (in target 'Applivery_Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle
SwiftDriverJobDiscovery normal arm64 Compiling ConfigService.swift, DownloadService.swift, FeedbackService.swift, LoginService.swift, UpdateService.swift, Background.swift, DateExtension.swift, DiskStatus.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling Environments.swift, GeometryExtensions.swift, Json.swift, Layout.swift, ListHelper.swift, Localize.swift, Log.swift, NSBundle+Applivery.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, APIClient.swift, APIError.swift, APIErrorResponse.swift, AppliveryEndpoint.swift, Endpoint.swift, HTTPMethod.swift, AppliverySDK.swift, AppliveryService.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling NSError+Applivery.swift, Ram.swift, Result.swift, Storyboard+Applivery.swift, UIDevice+ModelName.swift, UIImageExtension.swift, UserDefaultsExtension.swift, Wifi.swift (in target 'Applivery' from project 'Applivery')
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle (in target 'Applivery_Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery_Applivery.bundle
SwiftDriverJobDiscovery normal arm64 Compiling TimeInterval+Extensions.swift, UserDefaults+keys.swift, OptionsListView.swift, ConfigPersister.swift, Keychain.swift, SessionPersister.swift, StartInteractor.swift, AppliverySafariManager.swift, ErrorManager.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling ScreenshootPreviewScreen.swift, ScreenshootViewModel.swift, EditScreenshotView.swift, EmailTextFieldView.swift, MultilineTextView.swift, ReportTypeView.swift, ScreenShootRowView.swift, RecordingViewController.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling FeedbackData.swift, Palette.swift, TextLiterals.swift, TokenData.swift, UpdateConfigResponse.swift, User.swift, VideoFile.swift, ForceUpdateScreen.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling AppliveryWindow.swift, App.swift, AppliveryNavigationController.swift, Device.swift, EventDetector.swift, Keyboard.swift, ScreenRecorderManager.swift, Screenshot.swift (in target 'Applivery' from project 'Applivery')
SwiftDriverJobDiscovery normal arm64 Compiling VideoPreviewRow.swift, VideoPreviewScreen.swift, ViedeoPlayerView.swift, LoginRepository.swift, LocalizableConstants.swift, Colors.swift, ErrorCodes.swift, GlobalConfig.swift (in target 'Applivery' from project 'Applivery')
SwiftDriver\ Compilation Applivery normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Applivery' from project 'Applivery')
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 Applivery -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery-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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.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/Applivery.build/Debug-iphoneos/Applivery.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery_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/Applivery.build/Debug-iphoneos/Applivery.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery-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/Applivery.o normal (in target 'Applivery' from project 'Applivery')
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-ios13.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 -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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery_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/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.o
ExtractAppIntentsMetadata (in target 'Applivery' from project 'Applivery')
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 Applivery --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.Applivery --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Applivery.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Applivery.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-11-18 08:15:21.077 appintentsmetadataprocessor[1067:5978] Starting appintentsmetadataprocessor export
2025-11-18 08:15:21.117 appintentsmetadataprocessor[1067:5978] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.o (in target 'Applivery' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Applivery.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework/AppliveryDynamic normal (in target 'AppliveryDynamic' from project 'Applivery')
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-ios13.0 -dynamiclib -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/Applivery.build/Debug-iphoneos/AppliveryDynamic\ product.build/Objects-normal/arm64/AppliveryDynamic.LinkFileList -install_name @rpath/AppliveryDynamic.framework/AppliveryDynamic -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/AppliveryDynamic\ product.build/Objects-normal/arm64/AppliveryDynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/AppliveryDynamic\ product.build/Objects-normal/arm64/AppliveryDynamic_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework/AppliveryDynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/Applivery.build/Objects-normal/arm64/Applivery.swiftmodule
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/AppliveryDynamic\ product.build/empty-AppliveryDynamic.plist (in target 'AppliveryDynamic' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Applivery.build/Debug-iphoneos/AppliveryDynamic\ product.build/empty-AppliveryDynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework/Info.plist
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos/AppliveryDynamic.framework/AppliveryDynamic.tbd (in target 'AppliveryDynamic' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -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 -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 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework/AppliveryDynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos/AppliveryDynamic.framework/AppliveryDynamic.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework (in target 'AppliveryDynamic' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework (in target 'AppliveryDynamic' from project 'Applivery')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/AppliveryDynamic.framework
** BUILD SUCCEEDED **
Build complete.
{
"default_localization" : "en",
"dependencies" : [
{
"identity" : "quick",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Quick.git"
},
{
"identity" : "nimble",
"requirement" : {
"range" : [
{
"lower_bound" : "9.0.0",
"upper_bound" : "10.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Nimble.git"
},
{
"identity" : "ohhttpstubs",
"requirement" : {
"range" : [
{
"lower_bound" : "9.0.0",
"upper_bound" : "10.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/AliSoftware/OHHTTPStubs.git"
}
],
"manifest_display_name" : "Applivery",
"name" : "Applivery",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "Applivery",
"targets" : [
"Applivery"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "AppliveryDynamic",
"targets" : [
"Applivery"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "AppliveryBehaviorTests",
"module_type" : "SwiftTarget",
"name" : "AppliveryBehaviorTests",
"path" : "AppliveryBehaviorTests",
"product_dependencies" : [
"Quick",
"Nimble",
"OHHTTPStubs",
"OHHTTPStubsSwift"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/Images/test_images.xcassets",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/config_success.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/error_4002.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/error_5003.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/error_5004.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/feedback_ok.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/invalid_credentials.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/ko.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/login_success.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/request_token_ok.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Mocks/JSON/request_token_ok_no_token.json",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"EnvironmentTests.swift",
"EventDetectorTests.swift",
"Fakes/UserDefaults.swift",
"Helpers/StubResponseHelper.swift",
"MockData/ConfigMockData.swift",
"Mockits/MockAPIClient.swift",
"Mocks/AppMock.swift",
"Mocks/ConfigPersisterMock.swift",
"Mocks/ConfigServiceMock.swift",
"Mocks/DeviceMock.swift",
"Mocks/DownloadServiceMock.swift",
"Mocks/EventDetectorMock.swift",
"Mocks/FeedbackServiceMock.swift",
"Mocks/ImageManagerMock.swift",
"Mocks/LoginRepositoryMock.swift",
"Mocks/MockEnvironments.swift",
"Mocks/MockEventDetector.swift",
"Mocks/MockKeychainManager.swift",
"Mocks/MockSessionPersister.swift",
"Mocks/MockUpdateService.swift",
"Mocks/StartInteractorOutputMock.swift",
"Mocks/UpdateInteractoMock.swift",
"Mocks/UserDefaultsMock.swift",
"ServicesTests/ConfigServiceTests.swift",
"ServicesTests/LoginServiceTests.swift",
"ServicesTests/UpdateServiceTests.swift",
"Specs/FeedbackSpecs.swift",
"Specs/ForceUpdateSpecs.swift",
"Specs/OTAUpdateSpecs.swift",
"Specs/RequestSpecs.swift",
"Specs/StartSpecs.swift",
"Utils/EnvironmentsTests.swift"
],
"target_dependencies" : [
"Applivery"
],
"type" : "test"
},
{
"c99name" : "Applivery",
"module_type" : "SwiftTarget",
"name" : "Applivery",
"path" : "AppliverySDK",
"product_memberships" : [
"Applivery",
"AppliveryDynamic"
],
"sources" : [
"API/APIClient.swift",
"API/APIError.swift",
"API/APIErrorResponse.swift",
"API/AppliveryEndpoint.swift",
"API/Endpoint.swift",
"API/HTTPMethod.swift",
"Applivery/AppliverySDK.swift",
"Applivery/AppliveryService.swift",
"Core/Extensions/TimeInterval+Extensions.swift",
"Core/UserDefaults+keys.swift",
"Core/Views/OptionsListView.swift",
"Data/Persisters/ConfigPersister.swift",
"Data/Persisters/Keychain.swift",
"Data/Persisters/SessionPersister.swift",
"Interactors/StartInteractor.swift",
"Managers/AppliverySafariManager.swift",
"Managers/ErrorManager.swift",
"Managers/ImageManager.swift",
"Managers/LoginManager.swift",
"Managers/WindowManager.swift",
"Model/AccessToken.swift",
"Model/Config.swift",
"Model/ConfigurationUpdate.swift",
"Model/CustomLogin.swift",
"Model/Feedback.swift",
"Model/FeedbackData.swift",
"Model/Palette.swift",
"Model/Public/TextLiterals.swift",
"Model/TokenData.swift",
"Model/UpdateConfigResponse.swift",
"Model/User.swift",
"Model/VideoFile.swift",
"Modules/ForceUpdateScreen.swift",
"Modules/ScreenshotReport/Screens/ScreenshootPreviewScreen.swift",
"Modules/ScreenshotReport/ViewModel/ScreenshootViewModel.swift",
"Modules/ScreenshotReport/Views/EditScreenshotView.swift",
"Modules/ScreenshotReport/Views/EmailTextFieldView.swift",
"Modules/ScreenshotReport/Views/MultilineTextView.swift",
"Modules/ScreenshotReport/Views/ReportTypeView.swift",
"Modules/ScreenshotReport/Views/Rows/ScreenShootRowView.swift",
"Modules/VideoReport/RecordingViewController.swift",
"Modules/VideoReport/VideoPreviewRow.swift",
"Modules/VideoReport/VideoPreviewScreen.swift",
"Modules/VideoReport/ViedeoPlayerView.swift",
"Repositories/LoginRepository.swift",
"Resources/LocalizableConstants.swift",
"SDKConfig/Colors.swift",
"SDKConfig/ErrorCodes/ErrorCodes.swift",
"SDKConfig/GlobalConfig.swift",
"Services/ConfigService.swift",
"Services/DownloadService.swift",
"Services/FeedbackService.swift",
"Services/LoginService.swift",
"Services/UpdateService.swift",
"Utils/Background.swift",
"Utils/DateExtension.swift",
"Utils/DiskStatus.swift",
"Utils/Environments.swift",
"Utils/GeometryExtensions.swift",
"Utils/Json.swift",
"Utils/Layout.swift",
"Utils/ListHelper.swift",
"Utils/Localize.swift",
"Utils/Log.swift",
"Utils/NSBundle+Applivery.swift",
"Utils/NSError+Applivery.swift",
"Utils/Ram.swift",
"Utils/Result.swift",
"Utils/Storyboard+Applivery.swift",
"Utils/UIDevice+ModelName.swift",
"Utils/UIImageExtension.swift",
"Utils/UserDefaultsExtension.swift",
"Utils/Wifi.swift",
"Views/AppliveryWindow.swift",
"Wrappers/App.swift",
"Wrappers/AppliveryNavigationController.swift",
"Wrappers/Device.swift",
"Wrappers/EventDetector.swift",
"Wrappers/Keyboard.swift",
"Wrappers/ScreenRecorderManager.swift",
"Wrappers/Screenshot.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/AppliverySDK/exclude': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/AppliveryBehaviorTests/Info.plist': File not found.
Done.