Build Information
Successful build of OmiseSDK, reference master (83bd18
), with Swift 6.1 for iOS using Xcode 16.3 on 24 Jul 2025 05:40:24 UTC.
Swift 6 data race errors: 34
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme OmiseSDK -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:27:23: warning: static property 'sortedAll' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var sortedAll: [Country] = {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:27:23: note: convert 'sortedAll' to a 'let' constant to make 'Sendable' shared state immutable
public static var sortedAll: [Country] = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:27:23: note: add '@MainActor' to make static property 'sortedAll' part of global actor 'MainActor'
public static var sortedAll: [Country] = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var sortedAll: [Country] = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:35:23: warning: static property 'all' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var all: [Country] = [
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:35:23: note: convert 'all' to a 'let' constant to make 'Sendable' shared state immutable
public static var all: [Country] = [
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:35:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static var all: [Country] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Country.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var all: [Country] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Currency.swift:22:16: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'Currency' may have shared mutable state; this is an error in the Swift 6 language mode
static let main: Currency = .thb
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Currency.swift:6:13: note: consider making enum 'Currency' conform to the 'Sendable' protocol
public enum Currency: String, Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Currency.swift:22:16: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
static let main: Currency = .thb
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/Currency.swift:22:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let main: Currency = .thb
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/OmiseErrors/OmiseError.swift:20:10: warning: associated value 'api(code:message:location:)' of 'Sendable'-conforming enum 'OmiseError' has non-sendable type 'OmiseError.APIErrorCode'; this is an error in the Swift 6 language mode
case api(code: APIErrorCode, message: String, location: String)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/OmiseErrors/OmiseError.swift:31:17: note: consider making enum 'APIErrorCode' conform to the 'Sendable' protocol
public enum APIErrorCode {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/OmiseErrors/OmiseError.swift:22:10: warning: associated value 'unexpected(error:underlying:)' of 'Sendable'-conforming enum 'OmiseError' has non-sendable type 'OmiseError.UnexpectedError'; this is an error in the Swift 6 language mode
case unexpected(error: UnexpectedError, underlying: Error?)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Models/OmiseErrors/OmiseError.swift:96:17: note: consider making enum 'UnexpectedError' conform to the 'Sendable' protocol
public enum UnexpectedError {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/Helpers/Client+URLRequest.swift:42:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
device: String = UIDevice.current.model
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.Atome.swift:42:23: warning: static property 'sourceType' is not concurrency-safe because non-'Sendable' type 'SourceType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sourceType: SourceType = .atome
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.Atome.swift:42:23: note: add '@MainActor' to make static property 'sourceType' part of global actor 'MainActor'
public static let sourceType: SourceType = .atome
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.Atome.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sourceType: SourceType = .atome
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.BarcodeAlipay.swift:31:23: warning: static property 'sourceType' is not concurrency-safe because non-'Sendable' type 'SourceType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sourceType: SourceType = .barcodeAlipay
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.BarcodeAlipay.swift:31:23: note: add '@MainActor' to make static property 'sourceType' part of global actor 'MainActor'
public static let sourceType: SourceType = .barcodeAlipay
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.BarcodeAlipay.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sourceType: SourceType = .barcodeAlipay
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.DuitNowOBW.swift:28:23: warning: static property 'sourceType' is not concurrency-safe because non-'Sendable' type 'SourceType' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sourceType: SourceType = .duitNowOBW
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.DuitNowOBW.swift:28:23: note: add '@MainActor' to make static property 'sourceType' part of global actor 'MainActor'
public static let sourceType: SourceType = .duitNowOBW
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.DuitNowOBW.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sourceType: SourceType = .duitNowOBW
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.EContext.swift:18:16: warning: static property 'sourceType' is not concurrency-safe because non-'Sendable' type 'SourceType' may have shared mutable state; this is an error in the Swift 6 language mode
static let sourceType: SourceType = .eContext
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.EContext.swift:18:16: note: add '@MainActor' to make static property 'sourceType' part of global actor 'MainActor'
static let sourceType: SourceType = .eContext
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.EContext.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sourceType: SourceType = .eContext
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.FPX.swift:31:16: warning: static property 'sourceType' is not concurrency-safe because non-'Sendable' type 'SourceType' may have shared mutable state; this is an error in the Swift 6 language mode
static let sourceType: SourceType = .fpx
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.FPX.swift:31:16: note: add '@MainActor' to make static property 'sourceType' part of global actor 'MainActor'
static let sourceType: SourceType = .fpx
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.FPX.swift:31:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sourceType: SourceType = .fpx
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.TrueMoney.swift:14:16: warning: static property 'sourceType' is not concurrency-safe because non-'Sendable' type 'SourceType' may have shared mutable state; this is an error in the Swift 6 language mode
static let sourceType: SourceType = .trueMoneyWallet
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.TrueMoney.swift:14:16: note: add '@MainActor' to make static property 'sourceType' part of global actor 'MainActor'
static let sourceType: SourceType = .trueMoneyWallet
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Source/Source.Payment.TrueMoney.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let sourceType: SourceType = .trueMoneyWallet
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Token/Token.ChargeStatus.swift:13:27: warning: static property 'finalStates' is not concurrency-safe because non-'Sendable' type '[Token.ChargeStatus]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let finalStates: [Self] = [.successful, .failed, .expired, .reversed]
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Token/Token.ChargeStatus.swift:5:17: note: consider making enum 'ChargeStatus' conform to the 'Sendable' protocol
public enum ChargeStatus: String {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Token/Token.ChargeStatus.swift:13:27: note: add '@MainActor' to make static property 'finalStates' part of global actor 'MainActor'
public static let finalStates: [Self] = [.successful, .failed, .expired, .reversed]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/JSON Models/Token/Token.ChargeStatus.swift:13:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let finalStates: [Self] = [.successful, .failed, .expired, .reversed]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:4:23: warning: static property 'availableByDefaultInThailand' is not concurrency-safe because non-'Sendable' type '[SourceType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let availableByDefaultInThailand: [SourceType] =
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:4:23: note: add '@MainActor' to make static property 'availableByDefaultInThailand' part of global actor 'MainActor'
public static let availableByDefaultInThailand: [SourceType] =
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:4:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let availableByDefaultInThailand: [SourceType] =
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:28:23: warning: static property 'availableByDefaultInJapan' is not concurrency-safe because non-'Sendable' type '[SourceType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let availableByDefaultInJapan: [SourceType] = [
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:28:23: note: add '@MainActor' to make static property 'availableByDefaultInJapan' part of global actor 'MainActor'
public static let availableByDefaultInJapan: [SourceType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let availableByDefaultInJapan: [SourceType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:33:23: warning: static property 'availableByDefaultSingapore' is not concurrency-safe because non-'Sendable' type '[SourceType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let availableByDefaultSingapore: [SourceType] = [
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:33:23: note: add '@MainActor' to make static property 'availableByDefaultSingapore' part of global actor 'MainActor'
public static let availableByDefaultSingapore: [SourceType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let availableByDefaultSingapore: [SourceType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:38:23: warning: static property 'availableByDefaultMalaysia' is not concurrency-safe because non-'Sendable' type '[SourceType]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let availableByDefaultMalaysia: [SourceType] = [
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift:4:13: note: consider making enum 'SourceType' conform to the 'Sendable' protocol
public enum SourceType: String, Codable, CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:38:23: note: add '@MainActor' to make static property 'availableByDefaultMalaysia' part of global actor 'MainActor'
public static let availableByDefaultMalaysia: [SourceType] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+Collections.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let availableByDefaultMalaysia: [SourceType] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: 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
public static var shared = OmiseSDK(publicKey: "pkey_")
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
public static var shared = OmiseSDK(publicKey: "pkey_")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static var shared = OmiseSDK(publicKey: "pkey_")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var shared = OmiseSDK(publicKey: "pkey_")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:7:25: warning: converting function value of type '@MainActor @Sendable () -> ()' to '() -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
onPrevious: gotoPreviousField,
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:8:21: warning: converting function value of type '@MainActor @Sendable () -> ()' to '() -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
onNext: gotoNextField,
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:9:21: warning: converting function value of type '@MainActor @Sendable () -> ()' to '() -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
onDone: doneEditing
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:104:17: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:104:17: note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:104:17: note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void) {
^
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
@MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:138:17: warning: instance method 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' nearly matches optional requirement 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' of protocol 'WKUIDelegate'
public func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping () -> Void) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:138:17: note: candidate has non-matching type '(WKWebView, String, WKFrameInfo, @escaping () -> Void) -> ()'
public func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping () -> Void) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:138:17: note: move 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' to another extension to silence this warning
public func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping () -> Void) {
^
WebKit.WKUIDelegate.webView:3:28: note: requirement 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' declared here
@MainActor optional func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping @MainActor @Sendable () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:169:17: warning: instance method 'webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)' nearly matches optional requirement 'webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)' of protocol 'WKUIDelegate'
public func webView(_ webView: WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: String, defaultText: String?, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping (String?) -> Void) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:169:17: note: candidate has non-matching type '(WKWebView, String, String?, WKFrameInfo, @escaping (String?) -> Void) -> ()'
public func webView(_ webView: WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: String, defaultText: String?, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping (String?) -> Void) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:169:17: note: move 'webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)' to another extension to silence this warning
public func webView(_ webView: WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: String, defaultText: String?, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping (String?) -> Void) {
^
WebKit.WKUIDelegate.webView:3:28: note: requirement 'webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)' declared here
@MainActor optional func webView(_ webView: WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: String, defaultText: String?, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping @MainActor @Sendable (String?) -> Void)}
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:20:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
let errorView: OmiseBannerView = {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:26:16: warning: static property 'topList' is not concurrency-safe because non-'Sendable' type '[PaymentMethod]' may have shared mutable state; this is an error in the Swift 6 language mode
static let topList: [PaymentMethod] = [
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:4:6: note: consider making enum 'PaymentMethod' conform to the 'Sendable' protocol
enum PaymentMethod: CaseIterable, Equatable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:26:16: note: add '@MainActor' to make static property 'topList' part of global actor 'MainActor'
static let topList: [PaymentMethod] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let topList: [PaymentMethod] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:192:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self?.presentWebViewAuthorizingPayment(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:192:29: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self?.presentWebViewAuthorizingPayment(
^~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:197:43: warning: sending 'delegate' risks causing data races; this is an error in the Swift 6 language mode
delegate: delegate
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:197:43: note: task-isolated 'delegate' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
delegate: delegate
^~~~~~~~
SwiftCompile normal arm64 Compiling\ OmiseError+Helpers.swift,\ Optional+Helpers.swift,\ String+Helpers.swift,\ URL+Helpers.swift,\ ProxyProperty.swift,\ Closures.swift,\ UIButton+Helpers.swift,\ UIColor+Helpers.swift,\ UIControl.State+Hashable.swift,\ UIImage+Helpers.swift,\ UILabel+Helpers.swift,\ UIScrollView+Helpers.swift,\ UIStackView+Helpers.swift,\ UIView+Helpers.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/OmiseError+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/Optional+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/String+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/URL+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Property\ Wrappers/ProxyProperty.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Typedefs/Closures.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIButton+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIColor+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIControl.State+Hashable.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIImage+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UILabel+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIScrollView+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIStackView+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIView+Helpers.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/OmiseError+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/Optional+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/String+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/URL+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Property\ Wrappers/ProxyProperty.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Typedefs/Closures.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIButton+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIColor+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIControl.State+Hashable.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIImage+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UILabel+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIScrollView+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI Extensions/UIScrollView+Helpers.swift:10:22: warning: main actor-isolated property 'window' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
self.window != nil,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: note: property declared here
@property(nullable, nonatomic,readonly) UIWindow *window;
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI Extensions/UIScrollView+Helpers.swift:18:18: warning: main actor-isolated property 'contentInset' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
self.contentInset.bottom = keyboardFrame.size.height
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll area around content
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI Extensions/UIScrollView+Helpers.swift:22:74: warning: main actor-isolated property 'safeAreaInsets' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
bottomScrollIndicatorInset = keyboardFrame.height - self.safeAreaInsets.bottom
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:275:45: note: property declared here
@property (nonatomic,readonly) UIEdgeInsets safeAreaInsets API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI Extensions/UIScrollView+Helpers.swift:27:18: warning: main actor-isolated property 'scrollIndicatorInsets' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
self.scrollIndicatorInsets.bottom = bottomScrollIndicatorInset
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:131:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets scrollIndicatorInsets; // use the setter only, as a convenience for setting both verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets to the same value. if those properties have been set to different values, the return value of this getter (deprecated) is undefined.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI Extensions/UIScrollView+Helpers.swift:32:19: warning: main actor-isolated property 'contentInset' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
self?.contentInset.bottom = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll area around content
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI Extensions/UIScrollView+Helpers.swift:33:19: warning: main actor-isolated property 'scrollIndicatorInsets' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
self?.scrollIndicatorInsets.bottom = 0.0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:131:59: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIEdgeInsets scrollIndicatorInsets; // use the setter only, as a convenience for setting both verticalScrollIndicatorInsets and horizontalScrollIndicatorInsets to the same value. if those properties have been set to different values, the return value of this getter (deprecated) is undefined.
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIStackView+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/UI\ Extensions/UIView+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ EContextPaymentFormViewModel.swift,\ FPXPaymentFormController.swift,\ FPXPaymentFormProtocol.swift,\ FPXPaymentFormViewModel.swift,\ TrueMoneyPaymentFormController.swift,\ TrueMoneyPaymentFormProtocol.swift,\ TrueMoneyPaymentFormViewModel.swift,\ PaymentMethod.swift,\ SelectPaymentMethodDelegate.swift,\ SelectSourcePaymentDelegate.swift,\ SelectSourceTypeDelegate.swift,\ SelectPaymentController.swift,\ SelectPaymentPresentableProtocol.swift,\ SelectDuitNowOBWBankViewModel.swift,\ SelectFPXBankViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/EContext/EContextPaymentFormViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/FPX/FPXPaymentFormController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/FPX/FPXPaymentFormProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/FPX/FPXPaymentFormViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/TrueMoneyWallet/TrueMoneyPaymentFormController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/TrueMoneyWallet/TrueMoneyPaymentFormProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/TrueMoneyWallet/TrueMoneyPaymentFormViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/PaymentMethod.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ Delegates/SelectPaymentMethodDelegate.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ Delegates/SelectSourcePaymentDelegate.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ Delegates/SelectSourceTypeDelegate.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/SelectPaymentController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/SelectPaymentPresentableProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectDuitNowOBWBankViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectFPXBankViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/EContext/EContextPaymentFormViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/FPX/FPXPaymentFormController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/FPX/FPXPaymentFormProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/FPX/FPXPaymentFormViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/TrueMoneyWallet/TrueMoneyPaymentFormController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/TrueMoneyWallet/TrueMoneyPaymentFormProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/TrueMoneyWallet/TrueMoneyPaymentFormViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/PaymentMethod.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var allCases: [PaymentMethod] = from(sourceTypes: SourceType.allCases)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:26:16: warning: static property 'topList' is not concurrency-safe because non-'Sendable' type '[PaymentMethod]' may have shared mutable state; this is an error in the Swift 6 language mode
static let topList: [PaymentMethod] = [
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:4:6: note: consider making enum 'PaymentMethod' conform to the 'Sendable' protocol
enum PaymentMethod: CaseIterable, Equatable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:26:16: note: add '@MainActor' to make static property 'topList' part of global actor 'MainActor'
static let topList: [PaymentMethod] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let topList: [PaymentMethod] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ Delegates/SelectPaymentMethodDelegate.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ Delegates/SelectSourcePaymentDelegate.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ Delegates/SelectSourceTypeDelegate.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/SelectPaymentController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/SelectPaymentPresentableProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectDuitNowOBWBankViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectFPXBankViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SelectInstallmentTermsViewModel.swift,\ SelectPaymentMethodViewModel.swift,\ SelectSourceTypePaymentViewModel.swift,\ DuitNowOBW.Bank+ViewPresentable.swift,\ FPX.Bank+ViewPresentable.swift,\ PaymentMethod+ViewPresentable.swift,\ SourceType+ViewPresentable.swift,\ ViewPresentable.swift,\ CreditCardPaymentController.swift,\ CreditCardPaymentDelegate.swift,\ CreditCardPaymentProtocol.swift,\ CreditCardPaymentViewModel.swift,\ CreditCardVC+Extensions.swift,\ Array+Helpers.swift,\ NumberFormatter+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectInstallmentTermsViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectPaymentMethodViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectSourceTypePaymentViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/DuitNowOBW.Bank+ViewPresentable.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/FPX.Bank+ViewPresentable.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/PaymentMethod+ViewPresentable.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/SourceType+ViewPresentable.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/ViewPresentable.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentDelegate.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardVC+Extensions.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/Array+Helpers.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/NumberFormatter+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectInstallmentTermsViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectPaymentMethodViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Select\ Payment\ From\ Lists/ViewModels/SelectSourceTypePaymentViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/DuitNowOBW.Bank+ViewPresentable.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/FPX.Bank+ViewPresentable.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/PaymentMethod+ViewPresentable.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/SourceType+ViewPresentable.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ViewPresentable/ViewPresentable.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentDelegate.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardPaymentViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit\ Card\ Payment/CreditCardVC+Extensions.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/Array+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/ToolKit/Extensions/NumberFormatter+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SourceType+MobileBanking.swift,\ SourceType.swift,\ OmiseSDK.swift,\ BaseFormViewController.swift,\ CVVInfoView.swift,\ ClosureBarButtonItem.swift,\ Colors.swift,\ CountryListViewController.swift,\ CountryListViewModelProtocol.swift,\ MainActionButton.swift,\ OmiseBannerView.swift,\ OmiseCheckbox.swift,\ OmiseFormToolbar.swift,\ SpacerView.swift,\ TapGestureHandler.swift,\ TextFieldView.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+MobileBanking.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/CVVInfoView.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/ClosureBarButtonItem.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/Colors.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/CountryListController/CountryListViewController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/CountryListController/CountryListViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/OmiseBannerView.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/OmiseCheckbox.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/OmiseFormToolbar.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/SpacerView.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/TapGestureHandler.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/TextFieldView.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType+MobileBanking.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseAPI/SourceType/SourceType.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: 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
public static var shared = OmiseSDK(publicKey: "pkey_")
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
public static var shared = OmiseSDK(publicKey: "pkey_")
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
public static var shared = OmiseSDK(publicKey: "pkey_")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:6:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var shared = OmiseSDK(publicKey: "pkey_")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:95: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 = UINavigationController(rootViewController: viewController)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:55:1: note: calls to initializer 'init(rootViewController:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController NS_DESIGNATED_INITIALIZER; // Initializer that also pushes the root view controller without animation.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:62:17: note: add '@MainActor' to make instance method 'presentChoosePaymentMethod(from:animated:amount:currency:allowedPaymentMethods:skipCapabilityValidation:isCardPaymentAllowed:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentChoosePaymentMethod(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:96:30: warning: main actor-isolated property 'delegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.delegate = paymentFlow
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:82:73: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:62:17: note: add '@MainActor' to make instance method 'presentChoosePaymentMethod(from:animated:amount:currency:allowedPaymentMethods:skipCapabilityValidation:isCardPaymentAllowed:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentChoosePaymentMethod(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:98:48: warning: main actor-isolated property 'prefersLargeTitles' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.prefersLargeTitles = true
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h:63:47: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, assign) BOOL prefersLargeTitles UI_APPEARANCE_SELECTOR API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(watchos) API_UNAVAILABLE(tvos);
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:62:17: note: add '@MainActor' to make instance method 'presentChoosePaymentMethod(from:animated:amount:currency:allowedPaymentMethods:skipCapabilityValidation:isCardPaymentAllowed:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentChoosePaymentMethod(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:98:34: warning: main actor-isolated property 'navigationBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.prefersLargeTitles = true
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:76:48: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly) UINavigationBar *navigationBar; // The navigation bar managed by the controller. Pushing, popping or setting navigation items on a managed navigation bar is not supported.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:62:17: note: add '@MainActor' to make instance method 'presentChoosePaymentMethod(from:animated:amount:currency:allowedPaymentMethods:skipCapabilityValidation:isCardPaymentAllowed:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentChoosePaymentMethod(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:101:27: 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
topViewController.present(navigationController, 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/OmiseSDK/Sources/OmiseSDK.swift:62:17: note: add '@MainActor' to make instance method 'presentChoosePaymentMethod(from:animated:amount:currency:allowedPaymentMethods:skipCapabilityValidation:isCardPaymentAllowed:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentChoosePaymentMethod(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:132: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 = UINavigationController(rootViewController: viewController)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:55:1: note: calls to initializer 'init(rootViewController:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController NS_DESIGNATED_INITIALIZER; // Initializer that also pushes the root view controller without animation.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:113:17: note: add '@MainActor' to make instance method 'presentCreditCardPayment(from:animated:countryCode:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentCreditCardPayment(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:133:30: warning: main actor-isolated property 'delegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.delegate = paymentFlow
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:82:73: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:113:17: note: add '@MainActor' to make instance method 'presentCreditCardPayment(from:animated:countryCode:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentCreditCardPayment(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:135:48: warning: main actor-isolated property 'prefersLargeTitles' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.prefersLargeTitles = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h:63:47: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, assign) BOOL prefersLargeTitles UI_APPEARANCE_SELECTOR API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(watchos) API_UNAVAILABLE(tvos);
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:113:17: note: add '@MainActor' to make instance method 'presentCreditCardPayment(from:animated:countryCode:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentCreditCardPayment(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:135:34: warning: main actor-isolated property 'navigationBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.prefersLargeTitles = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:76:48: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly) UINavigationBar *navigationBar; // The navigation bar managed by the controller. Pushing, popping or setting navigation items on a managed navigation bar is not supported.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:113:17: note: add '@MainActor' to make instance method 'presentCreditCardPayment(from:animated:countryCode:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentCreditCardPayment(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:138:27: 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
topViewController.present(navigationController, 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/OmiseSDK/Sources/OmiseSDK.swift:113:17: note: add '@MainActor' to make instance method 'presentCreditCardPayment(from:animated:countryCode:handleErrors:delegate:)' part of global actor 'MainActor'
public func presentCreditCardPayment(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:208:33: 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
presentedViewController.dismiss(animated: animated, completion: completion)
^
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/OmiseSDK/Sources/OmiseSDK.swift:206:17: note: add '@MainActor' to make instance method 'dismiss(animated:completion:)' part of global actor 'MainActor'
public func dismiss(animated: Bool = true, completion: (() -> Void)? = nil) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:248:30: 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 = AuthorizingPaymentWebViewController()
^
/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/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:249:24: warning: main actor-isolated property 'authorizeURL' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.authorizeURL = authorizeURL
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:15:9: note: mutation of this property is only permitted within the actor
var authorizeURL: URL? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:250:24: warning: main actor-isolated property 'expectedReturnURLStrings' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.expectedReturnURLStrings = expectedReturnURLStrings.compactMap {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:34:9: note: mutation of this property is only permitted within the actor
var expectedReturnURLStrings: [URLComponents] = []
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:253:24: warning: main actor-isolated property 'completion' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.completion = { [weak delegate] result in
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift:36:9: note: mutation of this property is only permitted within the actor
var completion: ParamClosure<CompletionState> = nil
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:262:24: warning: call to main actor-isolated instance method 'applyNavigationBarStyle' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
viewController.applyNavigationBarStyle()
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Helpers/UIViewController+NavigationBarStyle.swift:9:10: note: calls to instance method 'applyNavigationBarStyle' from outside of its actor context are implicitly asynchronous
func applyNavigationBarStyle(_ style: NavigationBarStyle = .normal) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:263:24: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.title = "AuthorizingPayment.title".localized()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:265: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 = UINavigationController(rootViewController: viewController)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:55:1: note: calls to initializer 'init(rootViewController:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController NS_DESIGNATED_INITIALIZER; // Initializer that also pushes the root view controller without animation.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:266:44: warning: main actor-isolated property 'isTranslucent' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.isTranslucent = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h:49:55: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign,getter=isTranslucent) BOOL translucent API_AVAILABLE(ios(3.0)) UI_APPEARANCE_SELECTOR; // Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:266:30: warning: main actor-isolated property 'navigationBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.isTranslucent = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:76:48: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly) UINavigationBar *navigationBar; // The navigation bar managed by the controller. Pushing, popping or setting navigation items on a managed navigation bar is not supported.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:267:44: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.backgroundColor = .white
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:267:30: warning: main actor-isolated property 'navigationBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.backgroundColor = .white
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:76:48: note: property declared here
@property(nonatomic,readonly) UINavigationBar *navigationBar; // The navigation bar managed by the controller. Pushing, popping or setting navigation items on a managed navigation bar is not supported.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:270:48: warning: main actor-isolated property 'prefersLargeTitles' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.prefersLargeTitles = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h:63:47: note: mutation of this property is only permitted within the actor
@property (nonatomic, readwrite, assign) BOOL prefersLargeTitles UI_APPEARANCE_SELECTOR API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(watchos) API_UNAVAILABLE(tvos);
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:270:34: warning: main actor-isolated property 'navigationBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
navigationController.navigationBar.prefersLargeTitles = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:76:48: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly) UINavigationBar *navigationBar; // The navigation bar managed by the controller. Pushing, popping or setting navigation items on a managed navigation bar is not supported.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:273:27: 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
topViewController.present(navigationController, 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/OmiseSDK/Sources/OmiseSDK.swift:239:10: note: add '@MainActor' to make instance method 'presentWebViewAuthorizingPayment(from:animated:authorizeURL:expectedReturnURLStrings:delegate:)' part of global actor 'MainActor'
func presentWebViewAuthorizingPayment(
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:208:33: warning: sending value of non-Sendable type '(() -> Void)?' risks causing data races; this is an error in the Swift 6 language mode
presentedViewController.dismiss(animated: animated, completion: completion)
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:208:33: note: sending task-isolated value of non-Sendable type '(() -> Void)?' to main actor-isolated instance method 'dismiss(animated:completion:)' risks causing races in between task-isolated and main actor-isolated uses
presentedViewController.dismiss(animated: animated, completion: completion)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:192:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self?.presentWebViewAuthorizingPayment(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:192:29: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self?.presentWebViewAuthorizingPayment(
^~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:197:43: warning: sending 'delegate' risks causing data races; this is an error in the Swift 6 language mode
delegate: delegate
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/OmiseSDK.swift:197:43: note: task-isolated 'delegate' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
delegate: delegate
^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:7:25: warning: converting function value of type '@MainActor @Sendable () -> ()' to '() -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
onPrevious: gotoPreviousField,
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:8:21: warning: converting function value of type '@MainActor @Sendable () -> ()' to '() -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
onNext: gotoNextField,
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:9:21: warning: converting function value of type '@MainActor @Sendable () -> ()' to '() -> Void' loses global actor 'MainActor'; this is an error in the Swift 6 language mode
onDone: doneEditing
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:52:16: warning: call to main actor-isolated instance method 'removeTarget(_:action:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
$0.removeTarget(self, action: nil, for: .allEvents)
^
UIKit.UIControl.removeTarget:2:22: note: calls to instance method 'removeTarget(_:action:for:)' from outside of its actor context are implicitly asynchronous
@MainActor open func removeTarget(_ target: Any?, action: Selector?, for controlEvents: UIControl.Event)}
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:51:9: warning: cannot access property 'formFields' here in deinitializer; this is an error in the Swift 6 language mode
formFields.forEach {
^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/BaseFormViewController.swift:50:51: note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from a deinit
NotificationCenter.default.removeObserver(self)
^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/CVVInfoView.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/ClosureBarButtonItem.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/Colors.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/CountryListController/CountryListViewController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/CountryListController/CountryListViewModelProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:84:12: warning: call to main actor-isolated instance method 'backgroundColor(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if backgroundColor(for: .disabled) == nil {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: calls to instance method 'backgroundColor(for:)' from outside of its actor context are implicitly asynchronous
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:85:13: warning: call to main actor-isolated instance method 'setBackgroundColor(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
setBackgroundColor(.gray, for: .disabled)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: calls to instance method 'setBackgroundColor(_:for:)' from outside of its actor context are implicitly asynchronous
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:87:12: warning: call to main actor-isolated instance method 'backgroundColor(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if backgroundColor(for: .highlighted) == nil {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: calls to instance method 'backgroundColor(for:)' from outside of its actor context are implicitly asynchronous
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:88:13: warning: call to main actor-isolated instance method 'setBackgroundColor(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
setBackgroundColor(.magenta, for: .highlighted)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: calls to instance method 'setBackgroundColor(_:for:)' from outside of its actor context are implicitly asynchronous
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:90:12: warning: call to main actor-isolated instance method 'backgroundColor(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if backgroundColor(for: .selected) == nil {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: calls to instance method 'backgroundColor(for:)' from outside of its actor context are implicitly asynchronous
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:91:13: warning: call to main actor-isolated instance method 'setBackgroundColor(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
setBackgroundColor(.orange, for: .selected)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: calls to instance method 'setBackgroundColor(_:for:)' from outside of its actor context are implicitly asynchronous
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:93:12: warning: call to main actor-isolated instance method 'backgroundColor(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if backgroundColor(for: [.selected, .highlighted]) == nil {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: calls to instance method 'backgroundColor(for:)' from outside of its actor context are implicitly asynchronous
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:102:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func backgroundColor(for state: UIControl.State) -> UIColor? {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:94:13: warning: call to main actor-isolated instance method 'setBackgroundColor(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
setBackgroundColor(.purple, for: [.selected, .highlighted])
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: calls to instance method 'setBackgroundColor(_:for:)' from outside of its actor context are implicitly asynchronous
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/MainActionButton.swift:76:10: note: main actor isolation inferred from inheritance from class 'UIButton'
func setBackgroundColor(_ color: UIColor?, for state: UIControl.State) {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/OmiseBannerView.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/OmiseCheckbox.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/OmiseFormToolbar.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/SpacerView.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/TapGestureHandler.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Components/TextFieldView.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
LinkAssetCatalog /Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/Assets.xcassets (in target 'OmiseSDK_OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-linkAssetCatalog --thinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_output/thinned --thinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_generated_info.plist_unthinned --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle --plist-output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_generated_info.plist
note: Emplaced /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle/Assets.car (in target 'OmiseSDK_OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Emitting module for OmiseSDK (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriver\ Compilation\ Requirements OmiseSDK normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OmiseSDK' from project 'OmiseSDK')
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 OmiseSDK -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK-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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK_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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/empty-OmiseSDK_OmiseSDK.plist (in target 'OmiseSDK_OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/empty-OmiseSDK_OmiseSDK.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK_OmiseSDK.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle/Info.plist
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/OmiseSDK-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK-Swift.h (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/OmiseSDK-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftmodule (in target 'OmiseSDK' from project 'OmiseSDK')
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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftdoc (in target 'OmiseSDK' from project 'OmiseSDK')
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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.abi.json (in target 'OmiseSDK' from project 'OmiseSDK')
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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftsourceinfo (in target 'OmiseSDK' from project 'OmiseSDK')
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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ ChoosePaymentCoordinator.swift,\ ApplePayProtocols.swift,\ ApplePayViewController.swift,\ ApplePayViewModel.swift,\ ApplePaymentHandler.swift,\ AtomePaymentFormController.swift,\ AtomePaymentFormViewContext.swift,\ AtomePaymentFormViewModel.swift,\ AtomePaymentFormViewModelProtocol.swift,\ PaymentFormController.swift,\ PaymentFormStyle.swift,\ PaymentInputProtocol.swift,\ PaymentInputsFormController.swift,\ EContextPaymentFormController.swift,\ EContextPaymentFormProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ChoosePaymentCoordinator.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePayProtocols.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePayViewController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePayViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePaymentHandler.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormViewContext.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormViewModel.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/PaymentFormController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/PaymentFormStyle.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/To\ Be\ Implemented/PaymentInputProtocol.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/To\ Be\ Implemented/PaymentInputsFormController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/EContext/EContextPaymentFormController.swift /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/EContext/EContextPaymentFormProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/ChoosePaymentCoordinator.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:20:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
let errorView: OmiseBannerView = {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:48:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:43:10: note: add '@MainActor' to make instance method 'createChoosePaymentMethodController(filter:delegate:)' part of global actor 'MainActor'
func createChoosePaymentMethodController(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:49:24: warning: call to main actor-isolated instance method 'attach' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
listController.attach(self)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Helpers/ViewAttachable.swift:15:10: note: calls to instance method 'attach' from outside of its actor context are implicitly asynchronous
func attach(_ object: ViewAttachable) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:43:10: note: add '@MainActor' to make instance method 'createChoosePaymentMethodController(filter:delegate:)' part of global actor 'MainActor'
func createChoosePaymentMethodController(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:63:24: warning: call to main actor-isolated instance method 'attach' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
viewController.attach(self)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Helpers/ViewAttachable.swift:15:10: note: calls to instance method 'attach' from outside of its actor context are implicitly asynchronous
func attach(_ object: ViewAttachable) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:61:10: note: add '@MainActor' to make instance method 'createCreditCardPaymentController(delegate:)' part of global actor 'MainActor'
func createCreditCardPaymentController(delegate: ChoosePaymentMethodDelegate) -> CreditCardPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:76:18: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let vc = CreditCardPaymentController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit Card Payment/CreditCardPaymentController.swift:214:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: CreditCardPaymentFormViewModelProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Credit Card Payment/CreditCardPaymentController.swift:214:5: note: main actor isolation inferred from inheritance from class 'BaseFormViewController'
init(viewModel: CreditCardPaymentFormViewModelProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:72:10: note: add '@MainActor' to make instance method 'createCreditCardPaymentController(paymentType:)' part of global actor 'MainActor'
func createCreditCardPaymentController(paymentType: CreditCardPaymentOption = .card) -> CreditCardPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:77:12: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
vc.title = PaymentMethod.creditCard.localizedTitle
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:72:10: note: add '@MainActor' to make instance method 'createCreditCardPaymentController(paymentType:)' part of global actor 'MainActor'
func createCreditCardPaymentController(paymentType: CreditCardPaymentOption = .card) -> CreditCardPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:90:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:82:10: note: add '@MainActor' to make instance method 'createMobileBankingController()' part of global actor 'MainActor'
func createMobileBankingController() -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:103:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:95:10: note: add '@MainActor' to make instance method 'createInternetBankingController()' part of global actor 'MainActor'
func createInternetBankingController() -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:133:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:108:10: note: add '@MainActor' to make instance method 'createInstallmentController()' part of global actor 'MainActor'
func createInstallmentController() -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:140:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:138:10: note: add '@MainActor' to make instance method 'createInstallmentTermsController(sourceType:)' part of global actor 'MainActor'
func createInstallmentTermsController(sourceType: SourceType) -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:147:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = AtomePaymentInputsFormController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/AtomePaymentFormController.swift:49:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: ViewModel) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/AtomePaymentFormController.swift:49:5: note: main actor isolation inferred from inheritance from class 'PaymentFormController'
init(viewModel: ViewModel) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:145:10: note: add '@MainActor' to make instance method 'createAtomeController()' part of global actor 'MainActor'
func createAtomeController() -> AtomePaymentInputsFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:148:24: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.title = SourceType.atome.localizedTitle
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:145:10: note: add '@MainActor' to make instance method 'createAtomeController()' part of global actor 'MainActor'
func createAtomeController() -> AtomePaymentInputsFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:156:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = EContextPaymentFormController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/EContext/EContextPaymentFormController.swift:100:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: EContextPaymentFormViewModelProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/EContext/EContextPaymentFormController.swift:100:5: note: main actor isolation inferred from inheritance from class 'BaseFormViewController'
init(viewModel: EContextPaymentFormViewModelProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:153:10: note: add '@MainActor' to make instance method 'createEContextController(title:)' part of global actor 'MainActor'
func createEContextController(title: String) -> EContextPaymentFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:157:24: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.title = title
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:153:10: note: add '@MainActor' to make instance method 'createEContextController(title:)' part of global actor 'MainActor'
func createEContextController(title: String) -> EContextPaymentFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:165:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = FPXPaymentFormController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/FPX/FPXPaymentFormController.swift:67:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: FPXPaymentFormViewModelProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/FPX/FPXPaymentFormController.swift:67:5: note: main actor isolation inferred from inheritance from class 'BaseFormViewController'
init(viewModel: FPXPaymentFormViewModelProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:162:10: note: add '@MainActor' to make instance method 'createFPXController()' part of global actor 'MainActor'
func createFPXController() -> FPXPaymentFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:166:24: warning: main actor-isolated property 'title' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.title = SourceType.fpx.localizedTitle
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:162:10: note: add '@MainActor' to make instance method 'createFPXController()' part of global actor 'MainActor'
func createFPXController() -> FPXPaymentFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:175:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:171:10: note: add '@MainActor' to make instance method 'createFPXBanksController(email:)' part of global actor 'MainActor'
func createFPXBanksController(email: String?) -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:177:24: warning: main actor-isolated property 'customizeCellAtIndexPathClosure' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
listController.customizeCellAtIndexPathClosure = { [banks] cell, indexPath in
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:7:9: note: mutation of this property is only permitted within the actor
var customizeCellAtIndexPathClosure: (UITableViewCell, IndexPath) -> Void = { _, _ in
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:171:10: note: add '@MainActor' to make instance method 'createFPXBanksController(email:)' part of global actor 'MainActor'
func createFPXBanksController(email: String?) -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:180:22: warning: main actor-isolated property 'selectionStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
cell.selectionStyle = UITableViewCell.SelectionStyle.none
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:143:55: note: mutation of this property is only permitted within the actor
@property (nonatomic) UITableViewCellSelectionStyle selectionStyle; // default is UITableViewCellSelectionStyleDefault.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:181:34: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
cell.contentView.alpha = 0.5
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:181:22: warning: main actor-isolated property 'contentView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
cell.contentView.alpha = 0.5
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:116:49: note: mutation of this property is only permitted within the actor
@property (nonatomic, readonly, strong) UIView *contentView;
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:182:22: warning: main actor-isolated property 'isUserInteractionEnabled' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
cell.isUserInteractionEnabled = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:152:59: note: mutation of this property is only permitted within the actor
@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled; // default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:195:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift:11:5: note: main actor isolation inferred from inheritance from class 'UITableViewController'
init(viewModel: SelectPaymentPresentableProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:189:10: note: add '@MainActor' to make instance method 'createDuitNowOBWBanksController()' part of global actor 'MainActor'
func createDuitNowOBWBanksController() -> SelectPaymentController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:203:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = TrueMoneyPaymentFormController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/TrueMoneyWallet/TrueMoneyPaymentFormController.swift:66:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: TrueMoneyPaymentFormProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/TrueMoneyWallet/TrueMoneyPaymentFormController.swift:66:5: note: main actor isolation inferred from inheritance from class 'BaseFormViewController'
init(viewModel: TrueMoneyPaymentFormProtocol) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:200:10: note: add '@MainActor' to make instance method 'createTrueMoneyWalletController()' part of global actor 'MainActor'
func createTrueMoneyWalletController() -> TrueMoneyPaymentFormController {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:215:30: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = ApplePayViewController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/ApplePay/ApplePayViewController.swift:29:5: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
init(viewModel: ApplePayViewModelType) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/Other Payments/ApplePay/ApplePayViewController.swift:29:5: note: main actor isolation inferred from inheritance from class 'UIViewController'
init(viewModel: ApplePayViewModelType) {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:208:10: note: add '@MainActor' to make instance method 'createApplePayController(info:)' part of global actor 'MainActor'
func createApplePayController(info: ApplePayInfo) -> ApplePayViewController {
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:48:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:48:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:49:24: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
listController.attach(self)
~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:49:24: note: sending task-isolated 'self' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
listController.attach(self)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:76:18: warning: sending 'vm' risks causing data races; this is an error in the Swift 6 language mode
let vc = CreditCardPaymentController(viewModel: vm)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:76:18: note: sending task-isolated 'vm' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let vc = CreditCardPaymentController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:63:24: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
viewController.attach(self)
~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:63:24: note: sending task-isolated 'self' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
viewController.attach(self)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:90:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:90:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:103:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:103:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:133:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:133:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:140:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:140:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:147:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let viewController = AtomePaymentInputsFormController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:147:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let viewController = AtomePaymentInputsFormController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:156:30: warning: sending 'vm' risks causing data races; this is an error in the Swift 6 language mode
let viewController = EContextPaymentFormController(viewModel: vm)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:156:30: note: sending task-isolated 'vm' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let viewController = EContextPaymentFormController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:165:30: warning: sending 'vm' risks causing data races; this is an error in the Swift 6 language mode
let viewController = FPXPaymentFormController(viewModel: vm)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:165:30: note: sending task-isolated 'vm' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let viewController = FPXPaymentFormController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:175:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:175:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:195:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let listController = SelectPaymentController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:195:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let listController = SelectPaymentController(viewModel: viewModel)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:203:30: warning: sending 'vm' risks causing data races; this is an error in the Swift 6 language mode
let viewController = TrueMoneyPaymentFormController(viewModel: vm)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:203:30: note: sending task-isolated 'vm' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let viewController = TrueMoneyPaymentFormController(viewModel: vm)
^
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:215:30: warning: sending 'viewModel' risks causing data races; this is an error in the Swift 6 language mode
let viewController = ApplePayViewController(viewModel: viewModel)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift:215:30: note: sending task-isolated 'viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
let viewController = ApplePayViewController(viewModel: viewModel)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePayProtocols.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePayViewController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePayViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/ApplePay/ApplePaymentHandler.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormViewContext.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/AtomePaymentFormViewModelProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/PaymentFormController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/PaymentFormStyle.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/To\ Be\ Implemented/PaymentInputProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/Atome/Base/To\ Be\ Implemented/PaymentInputsFormController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/EContext/EContextPaymentFormController.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/OmiseSDK/Sources/Views/Screens/Choose\ Payment\ Methods/Other\ Payments/EContext/EContextPaymentFormProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, CryptData.swift, String+PemCert.swift, String+sha512.swift, NetceteraConfig.swift, NetceteraThreeDSController.swift, ThreeDSButtonCustomization.swift, ThreeDSCustomization.swift, ThreeDSLabelCustomization.swift, ThreeDSTextBoxCustomization.swift, ThreeDSToolbarCustomization.swift, ThreeDSUICustomization.swift, AuthorizingPaymentDelegate.swift, ChoosePaymentMethodDelegate.swift, ClientProtocol.swift, Assets.swift (in target 'OmiseSDK' from project 'OmiseSDK')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle (in target 'OmiseSDK_OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle (in target 'OmiseSDK_OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK_OmiseSDK.bundle
SwiftDriverJobDiscovery normal arm64 Compiling Source.Payment.Installment.swift, Source.Payment.Item.swift, Source.Payment.TrueMoney.swift, Source.Payment.swift, Source.swift, Token.Card.swift, Token.ChargeStatus.swift, Token.swift, OmiseAPI.swift, CreateSourcePayload.swift, CreateTokenApplePayPayload.swift, CreateTokenPayload.swift, SourceType+Collections.swift, SourceType+Helpers.swift, SourceType+Installments.swift, SourceType+InternetBanking.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling Bundle+OmiseSDK.swift, Calendar+CreditCard.swift, Configuration.swift, Globals.swift, Localized+Omise.swift, UIImage+Omise.swift, CardBrand.swift, Country.swift, Currency.swift, APIErrorCode.swift, BadRequestReason.swift, InvalidCardReason.swift, OmiseError+LocalizedDescription.swift, OmiseError.swift, PAN.swift, Client.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling SelectInstallmentTermsViewModel.swift, SelectPaymentMethodViewModel.swift, SelectSourceTypePaymentViewModel.swift, DuitNowOBW.Bank+ViewPresentable.swift, FPX.Bank+ViewPresentable.swift, PaymentMethod+ViewPresentable.swift, SourceType+ViewPresentable.swift, ViewPresentable.swift, CreditCardPaymentController.swift, CreditCardPaymentDelegate.swift, CreditCardPaymentProtocol.swift, CreditCardPaymentViewModel.swift, CreditCardVC+Extensions.swift, Array+Helpers.swift, NumberFormatter+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling APIProtocol.swift, Client+NetworkService.swift, Client+URLRequest.swift, NetworkService.swift, Capability.PaymentMethod.Bank.swift, Capability.PaymentMethod.Provider.swift, Capability.PaymentMethod.swift, Capability.swift, Source.Payment.Address.swift, Source.Payment.Atome.swift, Source.Payment.BarcodeAlipay.swift, Source.Payment.DuitNowOBW.Bank.swift, Source.Payment.DuitNowOBW.swift, Source.Payment.EContext.swift, Source.Payment.FPX.Bank.swift, Source.Payment.FPX.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling EContextPaymentFormViewModel.swift, FPXPaymentFormController.swift, FPXPaymentFormProtocol.swift, FPXPaymentFormViewModel.swift, TrueMoneyPaymentFormController.swift, TrueMoneyPaymentFormProtocol.swift, TrueMoneyPaymentFormViewModel.swift, PaymentMethod.swift, SelectPaymentMethodDelegate.swift, SelectSourcePaymentDelegate.swift, SelectSourceTypeDelegate.swift, SelectPaymentController.swift, SelectPaymentPresentableProtocol.swift, SelectDuitNowOBWBankViewModel.swift, SelectFPXBankViewModel.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling SourceType+MobileBanking.swift, SourceType.swift, OmiseSDK.swift, BaseFormViewController.swift, CVVInfoView.swift, ClosureBarButtonItem.swift, Colors.swift, CountryListViewController.swift, CountryListViewModelProtocol.swift, MainActionButton.swift, OmiseBannerView.swift, OmiseCheckbox.swift, OmiseFormToolbar.swift, SpacerView.swift, TapGestureHandler.swift, TextFieldView.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling ChoosePaymentCoordinator.swift, ApplePayProtocols.swift, ApplePayViewController.swift, ApplePayViewModel.swift, ApplePaymentHandler.swift, AtomePaymentFormController.swift, AtomePaymentFormViewContext.swift, AtomePaymentFormViewModel.swift, AtomePaymentFormViewModelProtocol.swift, PaymentFormController.swift, PaymentFormStyle.swift, PaymentInputProtocol.swift, PaymentInputsFormController.swift, EContextPaymentFormController.swift, EContextPaymentFormProtocol.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling CardCVVTextField.swift, CardExpiryDatePicker.swift, CardExpiryDateTextField.swift, CardNameTextField.swift, CardNumberTextField.swift, OmiseTextField.swift, TableCellContext.swift, UIBarButtonItem+Helpers.swift, UIColor+Omise.swift, UITableViewCell+ActivityIndicator.swift, UIViewController+KeyboardAppearance.swift, UIViewController+NavigationBarStyle.swift, ViewAttachable.swift, ViewContainer.swift, AuthorizingPaymentWebViewController.swift, ChoosePaymentCoordinator+Helpers.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriverJobDiscovery normal arm64 Compiling OmiseError+Helpers.swift, Optional+Helpers.swift, String+Helpers.swift, URL+Helpers.swift, ProxyProperty.swift, Closures.swift, UIButton+Helpers.swift, UIColor+Helpers.swift, UIControl.State+Hashable.swift, UIImage+Helpers.swift, UILabel+Helpers.swift, UIScrollView+Helpers.swift, UIStackView+Helpers.swift, UIView+Helpers.swift, GeneratedAssetSymbols.swift (in target 'OmiseSDK' from project 'OmiseSDK')
SwiftDriver\ Compilation OmiseSDK normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OmiseSDK' from project 'OmiseSDK')
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 OmiseSDK -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK-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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK_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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK-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/OmiseSDK.o normal (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK_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/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.o
ExtractAppIntentsMetadata (in target 'OmiseSDK' from project 'OmiseSDK')
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 OmiseSDK --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.OmiseSDK --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/OmiseSDK.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/OmiseSDK.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-07-23 22:40:23.259 appintentsmetadataprocessor[799:4782] Starting appintentsmetadataprocessor export
2025-07-23 22:40:23.300 appintentsmetadataprocessor[799:4782] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.o (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/OmiseSDK.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK\ product.build/empty-OmiseSDK.plist (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK\ product.build/empty-OmiseSDK.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/OmiseSDK.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework/OmiseSDK normal (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -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/OmiseSDK.build/Debug-iphoneos/OmiseSDK\ product.build/Objects-normal/arm64/OmiseSDK.LinkFileList -install_name @rpath/OmiseSDK.framework/OmiseSDK -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/OmiseSDK.build/Debug-iphoneos/OmiseSDK\ product.build/Objects-normal/arm64/OmiseSDK_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK\ product.build/Objects-normal/arm64/OmiseSDK_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 -Wl,-no_warn_duplicate_libraries -framework ThreeDS_SDK -framework ThreeDS_SDK -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework/OmiseSDK -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/OmiseSDK.build/Debug-iphoneos/OmiseSDK.build/Objects-normal/arm64/OmiseSDK.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework (in target 'OmiseSDK' from project 'OmiseSDK')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks/OmiseSDK.framework
** BUILD SUCCEEDED **
Build complete.
{
"default_localization" : "en",
"dependencies" : [
{
"identity" : "spm",
"requirement" : {
"exact" : [
"2.4.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/ios-3ds-sdk/SPM"
}
],
"manifest_display_name" : "OmiseSDK",
"name" : "OmiseSDK",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "10.0"
}
],
"products" : [
{
"name" : "OmiseSDK",
"targets" : [
"OmiseSDK"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "OmiseSDK",
"module_type" : "SwiftTarget",
"name" : "OmiseSDK",
"path" : "OmiseSDK",
"product_dependencies" : [
"ThreeDS_SDK"
],
"product_memberships" : [
"OmiseSDK"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/Assets.xcassets",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/en.lproj/Error.strings",
"rule" : {
"process" : {
"localization" : "en"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/en.lproj/Localizable.strings",
"rule" : {
"process" : {
"localization" : "en"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/en.lproj/Localizable.stringsdict",
"rule" : {
"process" : {
"localization" : "en"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/ja.lproj/Error.strings",
"rule" : {
"process" : {
"localization" : "ja"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/ja.lproj/Localizable.strings",
"rule" : {
"process" : {
"localization" : "ja"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/ja.lproj/Localizable.stringsdict",
"rule" : {
"process" : {
"localization" : "ja"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/th.lproj/Error.strings",
"rule" : {
"process" : {
"localization" : "th"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/th.lproj/Localizable.strings",
"rule" : {
"process" : {
"localization" : "th"
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/OmiseSDK/Resources/th.lproj/Localizable.stringsdict",
"rule" : {
"process" : {
"localization" : "th"
}
}
}
],
"sources" : [
"Sources/3DS/Crypto/CryptData.swift",
"Sources/3DS/Crypto/String+PemCert.swift",
"Sources/3DS/Crypto/String+sha512.swift",
"Sources/3DS/NetceteraConfig.swift",
"Sources/3DS/NetceteraThreeDSController.swift",
"Sources/3DS/UICustomization/ThreeDSButtonCustomization.swift",
"Sources/3DS/UICustomization/ThreeDSCustomization.swift",
"Sources/3DS/UICustomization/ThreeDSLabelCustomization.swift",
"Sources/3DS/UICustomization/ThreeDSTextBoxCustomization.swift",
"Sources/3DS/UICustomization/ThreeDSToolbarCustomization.swift",
"Sources/3DS/UICustomization/ThreeDSUICustomization.swift",
"Sources/AuthorizingPaymentDelegate.swift",
"Sources/ChoosePaymentMethodDelegate.swift",
"Sources/ClientProtocol.swift",
"Sources/Components/Assets.swift",
"Sources/Components/Bundle+OmiseSDK.swift",
"Sources/Components/Calendar+CreditCard.swift",
"Sources/Components/Configuration.swift",
"Sources/Components/Globals.swift",
"Sources/Components/Localized+Omise.swift",
"Sources/Components/UIImage+Omise.swift",
"Sources/Models/CardBrand.swift",
"Sources/Models/Country.swift",
"Sources/Models/Currency.swift",
"Sources/Models/OmiseErrors/APIErrorCode.swift",
"Sources/Models/OmiseErrors/BadRequestReason.swift",
"Sources/Models/OmiseErrors/InvalidCardReason.swift",
"Sources/Models/OmiseErrors/OmiseError+LocalizedDescription.swift",
"Sources/Models/OmiseErrors/OmiseError.swift",
"Sources/Models/PAN.swift",
"Sources/OmiseAPI/Client.swift",
"Sources/OmiseAPI/Helpers/APIProtocol.swift",
"Sources/OmiseAPI/Helpers/Client+NetworkService.swift",
"Sources/OmiseAPI/Helpers/Client+URLRequest.swift",
"Sources/OmiseAPI/Helpers/NetworkService.swift",
"Sources/OmiseAPI/JSON Models/Capabilities/Capability.PaymentMethod.Bank.swift",
"Sources/OmiseAPI/JSON Models/Capabilities/Capability.PaymentMethod.Provider.swift",
"Sources/OmiseAPI/JSON Models/Capabilities/Capability.PaymentMethod.swift",
"Sources/OmiseAPI/JSON Models/Capabilities/Capability.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.Address.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.Atome.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.BarcodeAlipay.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.DuitNowOBW.Bank.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.DuitNowOBW.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.EContext.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.FPX.Bank.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.FPX.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.Installment.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.Item.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.TrueMoney.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.Payment.swift",
"Sources/OmiseAPI/JSON Models/Source/Source.swift",
"Sources/OmiseAPI/JSON Models/Token/Token.Card.swift",
"Sources/OmiseAPI/JSON Models/Token/Token.ChargeStatus.swift",
"Sources/OmiseAPI/JSON Models/Token/Token.swift",
"Sources/OmiseAPI/OmiseAPI.swift",
"Sources/OmiseAPI/Payloads/CreateSourcePayload.swift",
"Sources/OmiseAPI/Payloads/CreateTokenApplePayPayload.swift",
"Sources/OmiseAPI/Payloads/CreateTokenPayload.swift",
"Sources/OmiseAPI/SourceType/SourceType+Collections.swift",
"Sources/OmiseAPI/SourceType/SourceType+Helpers.swift",
"Sources/OmiseAPI/SourceType/SourceType+Installments.swift",
"Sources/OmiseAPI/SourceType/SourceType+InternetBanking.swift",
"Sources/OmiseAPI/SourceType/SourceType+MobileBanking.swift",
"Sources/OmiseAPI/SourceType/SourceType.swift",
"Sources/OmiseSDK.swift",
"Sources/Views/Components/BaseFormViewController.swift",
"Sources/Views/Components/CVVInfoView.swift",
"Sources/Views/Components/ClosureBarButtonItem.swift",
"Sources/Views/Components/Colors.swift",
"Sources/Views/Components/CountryListController/CountryListViewController.swift",
"Sources/Views/Components/CountryListController/CountryListViewModelProtocol.swift",
"Sources/Views/Components/MainActionButton.swift",
"Sources/Views/Components/OmiseBannerView.swift",
"Sources/Views/Components/OmiseCheckbox.swift",
"Sources/Views/Components/OmiseFormToolbar.swift",
"Sources/Views/Components/SpacerView.swift",
"Sources/Views/Components/TapGestureHandler.swift",
"Sources/Views/Components/TextFieldView.swift",
"Sources/Views/Components/TextFields/CardCVVTextField.swift",
"Sources/Views/Components/TextFields/CardExpiryDatePicker.swift",
"Sources/Views/Components/TextFields/CardExpiryDateTextField.swift",
"Sources/Views/Components/TextFields/CardNameTextField.swift",
"Sources/Views/Components/TextFields/CardNumberTextField.swift",
"Sources/Views/Components/TextFields/OmiseTextField.swift",
"Sources/Views/Helpers/TableCellContext.swift",
"Sources/Views/Helpers/UIBarButtonItem+Helpers.swift",
"Sources/Views/Helpers/UIColor+Omise.swift",
"Sources/Views/Helpers/UITableViewCell+ActivityIndicator.swift",
"Sources/Views/Helpers/UIViewController+KeyboardAppearance.swift",
"Sources/Views/Helpers/UIViewController+NavigationBarStyle.swift",
"Sources/Views/Helpers/ViewAttachable.swift",
"Sources/Views/Helpers/ViewContainer.swift",
"Sources/Views/Screens/Authorizing Payment/AuthorizingPaymentWebViewController.swift",
"Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator+Helpers.swift",
"Sources/Views/Screens/Choose Payment Methods/ChoosePaymentCoordinator.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/ApplePay/ApplePayProtocols.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/ApplePay/ApplePayViewController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/ApplePay/ApplePayViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/ApplePay/ApplePaymentHandler.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/AtomePaymentFormController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/AtomePaymentFormViewContext.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/AtomePaymentFormViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/AtomePaymentFormViewModelProtocol.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/Base/PaymentFormController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/Base/PaymentFormStyle.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/Base/To Be Implemented/PaymentInputProtocol.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/Atome/Base/To Be Implemented/PaymentInputsFormController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/EContext/EContextPaymentFormController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/EContext/EContextPaymentFormProtocol.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/EContext/EContextPaymentFormViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/FPX/FPXPaymentFormController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/FPX/FPXPaymentFormProtocol.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/FPX/FPXPaymentFormViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/TrueMoneyWallet/TrueMoneyPaymentFormController.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/TrueMoneyWallet/TrueMoneyPaymentFormProtocol.swift",
"Sources/Views/Screens/Choose Payment Methods/Other Payments/TrueMoneyWallet/TrueMoneyPaymentFormViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/PaymentMethod.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment Delegates/SelectPaymentMethodDelegate.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment Delegates/SelectSourcePaymentDelegate.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment Delegates/SelectSourceTypeDelegate.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentController.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/SelectPaymentPresentableProtocol.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/ViewModels/SelectDuitNowOBWBankViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/ViewModels/SelectFPXBankViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/ViewModels/SelectInstallmentTermsViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/ViewModels/SelectPaymentMethodViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/Select Payment From Lists/ViewModels/SelectSourceTypePaymentViewModel.swift",
"Sources/Views/Screens/Choose Payment Methods/ViewPresentable/DuitNowOBW.Bank+ViewPresentable.swift",
"Sources/Views/Screens/Choose Payment Methods/ViewPresentable/FPX.Bank+ViewPresentable.swift",
"Sources/Views/Screens/Choose Payment Methods/ViewPresentable/PaymentMethod+ViewPresentable.swift",
"Sources/Views/Screens/Choose Payment Methods/ViewPresentable/SourceType+ViewPresentable.swift",
"Sources/Views/Screens/Choose Payment Methods/ViewPresentable/ViewPresentable.swift",
"Sources/Views/Screens/Credit Card Payment/CreditCardPaymentController.swift",
"Sources/Views/Screens/Credit Card Payment/CreditCardPaymentDelegate.swift",
"Sources/Views/Screens/Credit Card Payment/CreditCardPaymentProtocol.swift",
"Sources/Views/Screens/Credit Card Payment/CreditCardPaymentViewModel.swift",
"Sources/Views/Screens/Credit Card Payment/CreditCardVC+Extensions.swift",
"ToolKit/Extensions/Array+Helpers.swift",
"ToolKit/Extensions/NumberFormatter+Helpers.swift",
"ToolKit/Extensions/OmiseError+Helpers.swift",
"ToolKit/Extensions/Optional+Helpers.swift",
"ToolKit/Extensions/String+Helpers.swift",
"ToolKit/Extensions/URL+Helpers.swift",
"ToolKit/Property Wrappers/ProxyProperty.swift",
"ToolKit/Typedefs/Closures.swift",
"ToolKit/UI Extensions/UIButton+Helpers.swift",
"ToolKit/UI Extensions/UIColor+Helpers.swift",
"ToolKit/UI Extensions/UIControl.State+Hashable.swift",
"ToolKit/UI Extensions/UIImage+Helpers.swift",
"ToolKit/UI Extensions/UILabel+Helpers.swift",
"ToolKit/UI Extensions/UIScrollView+Helpers.swift",
"ToolKit/UI Extensions/UIStackView+Helpers.swift",
"ToolKit/UI Extensions/UIView+Helpers.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.