The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SimpleHTTP, reference v0.0.5 (fbf0f0), with Swift 6.3 for Android on 18 Apr 2026 06:00:20 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Pattio/SimpleHTTP.git
Reference: v0.0.5
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/Pattio/SimpleHTTP
 * tag               v0.0.5     -> FETCH_HEAD
HEAD is now at fbf0f01 Merge pull request #3 from Pattio/status-validator-error-mapping
Cloned https://github.com/Pattio/SimpleHTTP.git
Revision (git rev-parse @):
fbf0f010dd387bf5748596be63b5bc0d106f4574
SUCCESS checkout https://github.com/Pattio/SimpleHTTP.git at v0.0.5
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/Pattio/SimpleHTTP.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version--4F562202D5529B1.txt
[6/12] Compiling SimpleHTTPCore HTTPHandler.swift
[7/12] Compiling SimpleHTTPCore HTTPRequestOption.swift
[8/12] Compiling SimpleHTTPCore HTTPResponse.swift
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                          `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// The optional response body.
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:34:19: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |     public init(
33 |         request: HTTPRequest,
34 |         response: HTTPURLResponse,
   |                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         body: Data? = nil
36 |     ) {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:16: error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                `- error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
17 |
18 |     /// The optional response body.
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:23:39: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 |     /// The HTTP status code.
22 |     public var status: HTTPStatus {
23 |         HTTPStatus(rawValue: response.statusCode)
   |                                       `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
24 |     }
25 |
[9/12] Compiling SimpleHTTPCore HTTPRequest.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[10/12] Compiling SimpleHTTPCore HTTPBody.swift
[11/12] Compiling SimpleHTTPCore HTTPError.swift
[12/12] Emitting module SimpleHTTPCore
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                          `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// The optional response body.
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:34:19: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |     public init(
33 |         request: HTTPRequest,
34 |         response: HTTPURLResponse,
   |                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         body: Data? = nil
36 |     ) {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:16: error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                `- error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
17 |
18 |     /// The optional response body.
BUILD FAILURE 6.3 android