Build Information
Failed to build AFBilling, reference master (7cd449), with Swift 6.3 for Android on 11 Apr 2026 13:54:25 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.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/BeAppOnline/AFBilling.git
Reference: master
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/BeAppOnline/AFBilling
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 7cd4491 make adjust event passable
Cloned https://github.com/BeAppOnline/AFBilling.git
Revision (git rev-parse @):
7cd449151ad622b4bc0a9b47bcf0ea16fc6326c5
SUCCESS checkout https://github.com/BeAppOnline/AFBilling.git at master
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/BeAppOnline/AFBilling.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.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/afdetails/AFNetwork.git
Fetching https://github.com/BeAppOnline/Cancellable.git
[1/24] Fetching cancellable
[25/157] Fetching cancellable, afnetwork
Fetched https://github.com/afdetails/AFNetwork.git from cache (0.36s)
Fetched https://github.com/BeAppOnline/Cancellable.git from cache (0.35s)
Computing version for https://github.com/BeAppOnline/Cancellable.git
Computed https://github.com/BeAppOnline/Cancellable.git at 1.0.0 (1.30s)
Computing version for https://github.com/afdetails/AFNetwork.git
Computed https://github.com/afdetails/AFNetwork.git at 1.0.5 (0.87s)
Creating working copy for https://github.com/afdetails/AFNetwork.git
Working copy of https://github.com/afdetails/AFNetwork.git resolved at 1.0.5
Creating working copy for https://github.com/BeAppOnline/Cancellable.git
Working copy of https://github.com/BeAppOnline/Cancellable.git resolved at 1.0.0
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--4F562202D5529B1.txt
[5/16] Compiling Cancellable Cancellable.swift
[6/16] Emitting module Cancellable
[8/17] Compiling AFNetworks Endpoint.swift
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:105:26: error: cannot find 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
105 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
106 | var allHeaders: [String: String] = config.headers
107 |
[9/18] Compiling AFNetworks DefaultDataTransferErrorResolver.swift
[10/18] Compiling AFNetworks DefaultDataTransferService.swift
[11/18] Compiling AFNetworks DefaultSessionManager.swift
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:18:36: error: cannot find type 'URLRequest' in scope
16 | public init() {}
17 |
18 | public func request(_ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:20:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | public func request(_ request: URLRequest,
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
21 | task.resume()
22 | return task
[12/18] Compiling AFNetworks DefaultNetworkErrorLogger.swift
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | public init() { }
14 |
15 | public func log(request: URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
16 | #if DEBUG
17 | print("-------------")
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:30:57: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 | }
29 |
30 | public func log(responseData data: Data?, response: URLResponse?) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 | #if DEBUG
32 | guard let data = data else { return }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
error: emit-module command failed with exit code 1 (use -v to see invocation)
[13/18] Compiling AFNetworks NetworkConfig.swift
[14/18] Compiling AFNetworks DataTransfer Service + ErrorResolver + ErrorLogger.swift
[15/18] Compiling AFNetworks DefaultDataTransferErrorLogger.swift
[16/18] Emitting module AFNetworks
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:23:35: error: cannot find type 'URLRequest' in scope
21 | }
22 |
23 | private func request(request: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable {
| `- error: cannot find type 'URLRequest' in scope
24 |
25 | let sessionDataTask = sessionManager.request(request) { (data, urlResponse, requestError) in
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:18:36: error: cannot find type 'URLRequest' in scope
16 | public init() {}
17 |
18 | public func request(_ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | public init() { }
14 |
15 | public func log(request: URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
16 | #if DEBUG
17 | print("-------------")
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:30:57: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 | }
29 |
30 | public func log(responseData data: Data?, response: URLResponse?) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 | #if DEBUG
32 | guard let data = data else { return }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:37:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
38 |
39 | // MARK: - Network Service Protocol
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:48:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
46 | // MARK: - Network Session Manager Protocol
47 | public protocol NetworkSessionManager {
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:56:50: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
56 | func log(responseData data: Data?, response: URLResponse?)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
57 | func log(error: Error)
58 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[17/18] Compiling AFNetworks DefaultNetworkService.swift
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:23:35: error: cannot find type 'URLRequest' in scope
21 | }
22 |
23 | private func request(request: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable {
| `- error: cannot find type 'URLRequest' in scope
24 |
25 | let sessionDataTask = sessionManager.request(request) { (data, urlResponse, requestError) in
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:43:19: error: incorrect argument label in call (have 'request:', expected 'error:')
41 | }
42 |
43 | logger.log(request: request)
| `- error: incorrect argument label in call (have 'request:', expected 'error:')
44 | return sessionDataTask
45 | }
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:64:32: error: incorrect argument label in call (have 'request:completion:', expected 'endpoint:completion:')
62 | do {
63 | let urlRequest = try endpoint.urlRequest(with: config)
64 | return self.request(request: urlRequest, completion: completion)
| `- error: incorrect argument label in call (have 'request:completion:', expected 'endpoint:completion:')
65 | } catch {
66 | completion(.failure(.urlGeneration))
[18/18] Compiling AFNetworks NetworkService + SessionManager + ErrorLogger.swift
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:37:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
38 |
39 | // MARK: - Network Service Protocol
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:48:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
46 | // MARK: - Network Session Manager Protocol
47 | public protocol NetworkSessionManager {
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/.build/checkouts/AFNetwork/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:56:50: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
56 | func log(responseData data: Data?, response: URLResponse?)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
57 | func log(error: Error)
58 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
BUILD FAILURE 6.3 android