The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwiftExtras, reference main (5c6dcf), with Swift 6.2 for Android on 15 Mar 2026 21:00:15 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.69.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/0xWDG/SwiftExtras.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/0xWDG/SwiftExtras
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 5c6dcf1 Update ConfirmationButton
Cloned https://github.com/0xWDG/SwiftExtras.git
Revision (git rev-parse @):
5c6dcf1734f08134e0b061cad08d9aa14ce879cb
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/0xWDG/SwiftExtras.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/0xWDG/SwiftExtras.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:ed06329bcd62885fa27d8bb2bd26ede56f367c486166aaeeac553557f3a78bad
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.2-latest
Fetching https://github.com/0xWDG/OSLogViewer.git
[1/1585] Fetching oslogviewer
Fetched https://github.com/0xWDG/OSLogViewer.git from cache (0.34s)
Creating working copy for https://github.com/0xWDG/OSLogViewer.git
Working copy of https://github.com/0xWDG/OSLogViewer.git resolved at main (e45ebc5)
Building for debugging...
[0/8] Write sources
[0/8] Copying Info.plist
[0/8] Write sources
[0/8] Copying Info.plist
[0/8] Copying Localizable.xcstrings
[6/8] Copying Assets.xcassets
[7/8] Write swift-version--11D90AFD9DD3AB2.txt
[9/13] Compiling OSLogViewer OSLogExtractor.swift
[10/13] Compiling OSLogViewer OSLogViewer.swift
[11/13] Emitting module OSLogViewer
[12/13] Compiling OSLogViewer OSLogViewer.Colors.swift
[13/13] Compiling OSLogViewer resource_bundle_accessor.swift
[15/127] Compiling SwiftExtras WStack.swift
[16/127] Compiling SwiftExtras Button+longPress.swift
[17/127] Compiling SwiftExtras KeyboardDismissModifier.swift
[18/127] Compiling SwiftExtras PulsatingEffect.swift
[19/127] Compiling SwiftExtras ShakeEffect.swift
[20/127] Compiling SwiftExtras NSPasteboard+string.swift
[21/127] Compiling SwiftExtras PlatformTypes.swift
[22/127] Compiling SwiftExtras PlatformViewRepresentable.swift
[23/127] Compiling SwiftExtras openURL.swift
[24/127] Compiling SwiftExtras RegularExpressionOperator.swift
[25/127] Compiling SwiftExtras optionalBinding.swift
[26/127] Compiling SwiftExtras MailView.swift
[27/127] Compiling SwiftExtras SFSafari.swift
[28/127] Compiling SwiftExtras WebView.swift
[29/127] Compiling SwiftExtras HexShape.swift
[30/127] Compiling SwiftExtras SEAcknowledgement.swift
[31/143] Compiling SwiftExtras String+slugified.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[32/143] Compiling SwiftExtras String+subscript.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[33/143] Compiling SwiftExtras String+trimmed.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[34/143] Compiling SwiftExtras String+url.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[35/143] Compiling SwiftExtras StringProtocol+.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[36/143] Compiling SwiftExtras Task+.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[37/143] Compiling SwiftExtras Text+Gradient.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[38/143] Compiling SwiftExtras TimeInterval+.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[39/143] Compiling SwiftExtras UIDevice+Utilities.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[40/143] Compiling SwiftExtras URL+.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[41/143] Compiling SwiftExtras URLSession.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[42/143] Compiling SwiftExtras UserDefaults+subscript.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[43/143] Compiling SwiftExtras View+Error.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[44/143] Compiling SwiftExtras View+Frame.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[45/143] Compiling SwiftExtras View+Log.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[46/143] Compiling SwiftExtras View+Task.swift
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:32:14: error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
30 | #else
31 |         switch challenge.protectionSpace.authenticationMethod {
32 |         case NSURLAuthenticationMethodServerTrust:
   |              `- error: 'NSURLAuthenticationMethodServerTrust' is unavailable: swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
FoundationNetworking.NSURLAuthenticationMethodServerTrust:2:12: note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "swift-corelibs-foundation does not support methods of authentication that rely on the Darwin Security framework.")
2 | public let NSURLAuthenticationMethodServerTrust: String
  |            `- note: 'NSURLAuthenticationMethodServerTrust' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:34:81: error: incorrect argument label in call (have 'trust:', expected 'coder:')
32 |         case NSURLAuthenticationMethodServerTrust:
33 |             // No trust APIs on Linux
34 |             let cred = challenge.protectionSpace.serverTrust.map { URLCredential(trust: $0) }
   |                                                                                 `- error: incorrect argument label in call (have 'trust:', expected 'coder:')
35 |             return (.useCredential, cred)
36 |         default:
[47/143] Compiling SwiftExtras DisclosureSection.swift
[48/143] Compiling SwiftExtras FloatingTextField.swift
[49/143] Compiling SwiftExtras HorizontalStepper.swift
[50/143] Compiling SwiftExtras IndexedList.swift
[51/143] Compiling SwiftExtras LimitedTextField.swift
[52/143] Compiling SwiftExtras MonthYearPickerView.swift
[53/143] Compiling SwiftExtras MultiSelectPickerView.swift
[54/143] Compiling SwiftExtras MultiSelectView.swift
[55/143] Compiling SwiftExtras NavigationViewIfNeeded.swift
[56/143] Compiling SwiftExtras NotificationOnboarding.swift
[57/143] Compiling SwiftExtras NotificationView.swift
[58/143] Compiling SwiftExtras Onboarding.swift
[59/143] Compiling SwiftExtras SEAcknowledgementView.swift
[60/143] Compiling SwiftExtras SEChangeLogView.swift
[61/143] Compiling SwiftExtras SESettingsView.swift
[62/143] Compiling SwiftExtras resource_bundle_accessor.swift
[63/143] Compiling SwiftExtras BackgroundRemover.swift
[64/143] Compiling SwiftExtras SensoryFeedback.swift
[65/143] Compiling SwiftExtras AppInfo.swift
[66/143] Compiling SwiftExtras Device.swift
[67/143] Compiling SwiftExtras Binding+for.swift
[68/143] Compiling SwiftExtras Binding+onChange.swift
[69/143] Compiling SwiftExtras Binding+optional.swift
[70/143] Compiling SwiftExtras CGFloat+.swift
[71/143] Compiling SwiftExtras CGSize+device.swift
[72/143] Compiling SwiftExtras Collection+.swift
[73/143] Compiling SwiftExtras Collection+safeIndex.swift
[74/143] Compiling SwiftExtras Color+Codable.swift
[75/143] Compiling SwiftExtras Color+Identifiable.swift
[76/143] Compiling SwiftExtras Color+colorBlind.swift
[77/143] Compiling SwiftExtras Color+components.swift
[78/143] Compiling SwiftExtras Color+default.swift
[79/143] Compiling SwiftExtras View+View+onChange.swift.swift
[80/143] Compiling SwiftExtras View+adaptiveColor.swift
[81/143] Compiling SwiftExtras View+colorScheme.swift
[82/143] Compiling SwiftExtras View+getRootViewController.swift
[83/143] Compiling SwiftExtras View+horizontallyCentered.swift
[84/143] Compiling SwiftExtras View+modifier.swift
[85/143] Compiling SwiftExtras View+onFirstAppear.swift
[86/143] Compiling SwiftExtras View+onLandscape.swift
[87/143] Compiling SwiftExtras View+onNotification.swift
[88/143] Compiling SwiftExtras View+onboarding.swift
[89/143] Compiling SwiftExtras View+readOffsetX.swift
[90/143] Compiling SwiftExtras View+render.swift
[91/143] Compiling SwiftExtras View+sizeSaver.swift
[92/143] Compiling SwiftExtras View+snapshot.swift
[93/143] Compiling SwiftExtras View+stretchy.swift
[94/143] Compiling SwiftExtras kMeansCluster.swift
[95/143] Compiling SwiftExtras SEChangeLogEntry.swift
[96/143] Compiling SwiftExtras SocialIcons.swift
[97/143] Compiling SwiftExtras BorderedToggleStyle.swift
[98/143] Compiling SwiftExtras ColoredButtonStyle.swift
[99/143] Compiling SwiftExtras GrayButtonStyle.swift
[100/143] Compiling SwiftExtras ListButtonStyle.swift
[101/143] Compiling SwiftExtras PlainBorderedToggleStyle.swift
[102/143] Compiling SwiftExtras ToggleButtonStyle.swift
[103/143] Compiling SwiftExtras SwiftExtras.swift
[104/143] Compiling SwiftExtras AsyncTask.swift
[105/143] Compiling SwiftExtras AsyncView.swift
[106/143] Compiling SwiftExtras CardView.swift
[107/143] Compiling SwiftExtras CarouselView.swift
[108/143] Compiling SwiftExtras ConfettiView.swift
[109/143] Compiling SwiftExtras ConfirmationButton.swift
[110/143] Compiling SwiftExtras CopyableLabeledContent.swift
[111/143] Compiling SwiftExtras Color+dynamicColor.swift
[112/143] Compiling SwiftExtras Color+init.swift
[113/143] Compiling SwiftExtras Color+random.swift
[114/143] Compiling SwiftExtras Data+Compression.swift
[115/143] Compiling SwiftExtras Date+.swift
[116/143] Compiling SwiftExtras Date+Identifiable.swift
[117/143] Compiling SwiftExtras Date+getFormattedDate.swift
[118/143] Compiling SwiftExtras Double+.swift
[119/143] Compiling SwiftExtras Error+errorCode.swift
[120/143] Compiling SwiftExtras Float.swift
[121/143] Compiling SwiftExtras Image+Platform.swift
[122/143] Compiling SwiftExtras Image+centerCropped.swift
[123/143] Compiling SwiftExtras Int+.swift
[124/143] Compiling SwiftExtras Locale+Utilities.swift
[125/143] Compiling SwiftExtras LocalizedStringKey+.swift
[126/143] Compiling SwiftExtras LocalizedStringKey+Identifiable.swift
[127/143] Emitting module SwiftExtras
/host/spi-builder-workspace/Sources/SwiftExtras/Extensions/URLSession.swift:17:14: warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 | #endif
16 |
17 | public class IgnoreSSLErrorsDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
   |              `- warning: non-final class 'IgnoreSSLErrorsDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 |     /// urlSession(_:didReceive:completionHandler:) - Ignore SSL certificate errors
19 |     /// - Parameters:
[128/143] Compiling SwiftExtras Logger+.swift
[129/143] Compiling SwiftExtras NotificationName+.swift
[130/143] Compiling SwiftExtras Optional+isNilOrEmpty.swift
[131/143] Compiling SwiftExtras PlatformColor+.swift
[132/143] Compiling SwiftExtras PlatformImage+.swift
[133/143] Compiling SwiftExtras ProcessInfo+Utilities.swift
[134/143] Compiling SwiftExtras Sequence+.swift
[135/143] Compiling SwiftExtras String+ANSIColors.swift
[136/143] Compiling SwiftExtras String+Base64.swift
[137/143] Compiling SwiftExtras String+HTML.swift
[138/143] Compiling SwiftExtras String+IdentifiableString.swift
[139/143] Compiling SwiftExtras String+clean.swift
[140/143] Compiling SwiftExtras String+contains.swift
[141/143] Compiling SwiftExtras String+error.swift
[142/143] Compiling SwiftExtras String+hashed.swift
[143/143] Compiling SwiftExtras String+slice.swift
BUILD FAILURE 6.2 android