Build Information
Failed to build OrcidSwift, reference 1.0.0 (c5cb28), with Swift 6.2 for Android on 1 Jan 2026 19:15:57 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ezefranca/OrcidSwift.git
Reference: 1.0.0
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/ezefranca/OrcidSwift
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at c5cb288 Enhance README with ORCID API link and logo
Cloned https://github.com/ezefranca/OrcidSwift.git
Revision (git rev-parse @):
c5cb288c878a9bdea0d14e456c0e7b43ee7761fd
SUCCESS checkout https://github.com/ezefranca/OrcidSwift.git at 1.0.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/ezefranca/OrcidSwift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:5dcfe09194e3c36609f58c2a9689c9c974fddafea0cac7c12077a98d08c6b397
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2B04F66FBCF4E350.txt
[3/15] Compiling OrcidSwift OrcidEndpoints.swift
[4/15] Compiling OrcidSwift OrcidError.swift
[5/16] Compiling OrcidSwift OrcidStringValue.swift
[6/16] Compiling OrcidSwift OrcidWorksResponse.swift
[7/16] Compiling OrcidSwift OrcidOAuthScope.swift
[8/16] Compiling OrcidSwift OrcidOAuthToken.swift
[9/16] Compiling OrcidSwift FormURLEncoder.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:28: error: cannot find type 'URLRequest' in scope
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 | func data(for request: URLRequest) async throws -> (Data, URLResponse)
| `- error: cannot find type 'URLRequest' in scope
13 | }
14 |
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 | func data(for request: URLRequest) async throws -> (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
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/Sources/OrcidSwift/Networking/HTTPResponse.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 | public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
18 | // Use Apple’s native async API when available
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 | static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
| `- error: cannot find type 'URLRequest' in scope
43 | do {
44 | let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:17:35: error: cannot find type 'URLRequest' in scope
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
17 | public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
18 | // Use Apple’s native async API when available
19 | if #available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *) {
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[10/16] Compiling OrcidSwift HTTPResponse.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:28: error: cannot find type 'URLRequest' in scope
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 | func data(for request: URLRequest) async throws -> (Data, URLResponse)
| `- error: cannot find type 'URLRequest' in scope
13 | }
14 |
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 | func data(for request: URLRequest) async throws -> (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
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/Sources/OrcidSwift/Networking/HTTPResponse.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 | public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
18 | // Use Apple’s native async API when available
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 | static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
| `- error: cannot find type 'URLRequest' in scope
43 | do {
44 | let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:17:35: error: cannot find type 'URLRequest' in scope
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
17 | public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
18 | // Use Apple’s native async API when available
19 | if #available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *) {
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[11/16] Compiling OrcidSwift OrcidSwift.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/16] Compiling OrcidSwift OrcidID.swift
[13/16] Compiling OrcidSwift OrcidRecord.swift
[14/16] Emitting module OrcidSwift
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:59: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
36 | self.config = config
37 | self.loader = session
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | self.config = config
37 | self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: value of type '_' expected to be instance of class or class-constrained type
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
36 | self.config = config
37 | self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: value of type '_' expected to be instance of class or class-constrained type
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:180:50: error: cannot find type 'URLRequest' in scope
178 | // MARK: - Helpers
179 |
180 | private func applyCommonHeaders(_ req: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
181 | req.setValue(config.userAgent, forHTTPHeaderField: "User-Agent")
182 | }
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:28: error: cannot find type 'URLRequest' in scope
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 | func data(for request: URLRequest) async throws -> (Data, URLResponse)
| `- error: cannot find type 'URLRequest' in scope
13 | }
14 |
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:12:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
11 | public protocol HTTPDataLoading: Sendable {
12 | func data(for request: URLRequest) async throws -> (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
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/Sources/OrcidSwift/Networking/HTTPResponse.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
15 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
16 | extension URLSession: HTTPDataLoading {
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 | public func data(for request: URLRequest) async throws -> (Data, URLResponse) {
18 | // Use Apple’s native async API when available
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 | static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
| `- error: cannot find type 'URLRequest' in scope
43 | do {
44 | let (data, response) = try await loader.data(for: request)
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[15/16] Compiling OrcidSwift OrcidClient.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:59: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
36 | self.config = config
37 | self.loader = session
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: value of type '_' expected to be instance of class or class-constrained type
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
36 | self.config = config
37 | self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | self.config = config
37 | self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: value of type '_' expected to be instance of class or class-constrained type
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:180:50: error: cannot find type 'URLRequest' in scope
178 | // MARK: - Helpers
179 |
180 | private func applyCommonHeaders(_ req: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
181 | req.setValue(config.userAgent, forHTTPHeaderField: "User-Agent")
182 | }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:37:23: error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
36 | self.config = config
37 | self.loader = session
| `- error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
38 | self.decoder = JSONDecoder()
39 | self.urlComponentsFactory = { URLComponents(url: $0, resolvingAgainstBaseURL: false) }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:57:21: error: type of expression is ambiguous without a type annotation
55 | ) {
56 | self.config = config
57 | self.loader = loader ?? session
| `- error: type of expression is ambiguous without a type annotation
58 | self.decoder = JSONDecoder()
59 | self.urlComponentsFactory = urlComponentsFactory
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:69:19: error: cannot find 'URLRequest' in scope
67 | public func fetchRecord(orcid: OrcidID) async throws -> OrcidRecord {
68 | let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.record(orcid: orcid))
69 | var req = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
70 | req.httpMethod = "GET"
71 | applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 | static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
| `- error: cannot find type 'URLRequest' in scope
43 | do {
44 | let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:89:19: error: cannot find 'URLRequest' in scope
87 | public func fetchWorks(orcid: OrcidID) async throws -> OrcidWorksResponse {
88 | let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.works(orcid: orcid))
89 | var req = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
90 | req.httpMethod = "GET"
91 | applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:153:19: error: cannot find 'URLRequest' in scope
151 | ) async throws -> OrcidOAuthToken {
152 | let url = config.environment.oauthBaseURL.appendingPathComponent(OrcidEndpoints.oauthTokenPath)
153 | var req = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
154 | req.httpMethod = "POST"
155 | applyCommonHeaders(&req)
[16/16] Compiling OrcidSwift OrcidEnvironment.swift
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:59: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
36 | self.config = config
37 | self.loader = session
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: value of type '_' expected to be instance of class or class-constrained type
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
36 | self.config = config
37 | self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:35:73: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 | /// - config: Client configuration.
34 | /// - session: URLSession used for requests. Provide a custom session for testing.
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | self.config = config
37 | self.loader = session
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:52:32: error: value of type '_' expected to be instance of class or class-constrained type
50 | public init(
51 | config: Configuration = .init(),
52 | session: URLSession = .shared,
| `- error: value of type '_' expected to be instance of class or class-constrained type
53 | loader: (any HTTPDataLoading)? = nil,
54 | urlComponentsFactory: @escaping (URL) -> URLComponents?
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:180:50: error: cannot find type 'URLRequest' in scope
178 | // MARK: - Helpers
179 |
180 | private func applyCommonHeaders(_ req: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
181 | req.setValue(config.userAgent, forHTTPHeaderField: "User-Agent")
182 | }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:37:23: error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
35 | public init(config: Configuration = .init(), session: URLSession = .shared) {
36 | self.config = config
37 | self.loader = session
| `- error: cannot assign value of type 'URLSession' (aka 'AnyObject') to type 'any HTTPDataLoading'
38 | self.decoder = JSONDecoder()
39 | self.urlComponentsFactory = { URLComponents(url: $0, resolvingAgainstBaseURL: false) }
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:57:21: error: type of expression is ambiguous without a type annotation
55 | ) {
56 | self.config = config
57 | self.loader = loader ?? session
| `- error: type of expression is ambiguous without a type annotation
58 | self.decoder = JSONDecoder()
59 | self.urlComponentsFactory = urlComponentsFactory
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:69:19: error: cannot find 'URLRequest' in scope
67 | public func fetchRecord(orcid: OrcidID) async throws -> OrcidRecord {
68 | let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.record(orcid: orcid))
69 | var req = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
70 | req.httpMethod = "GET"
71 | applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Networking/HTTPResponse.swift:42:36: error: cannot find type 'URLRequest' in scope
40 |
41 | enum HTTP {
42 | static func perform(_ request: URLRequest, loader: any HTTPDataLoading) async throws -> HTTPResponse {
| `- error: cannot find type 'URLRequest' in scope
43 | do {
44 | let (data, response) = try await loader.data(for: request)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:89:19: error: cannot find 'URLRequest' in scope
87 | public func fetchWorks(orcid: OrcidID) async throws -> OrcidWorksResponse {
88 | let url = config.environment.apiBaseURL.appendingPathComponent(OrcidEndpoints.works(orcid: orcid))
89 | var req = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
90 | req.httpMethod = "GET"
91 | applyCommonHeaders(&req)
/host/spi-builder-workspace/Sources/OrcidSwift/Client/OrcidClient.swift:153:19: error: cannot find 'URLRequest' in scope
151 | ) async throws -> OrcidOAuthToken {
152 | let url = config.environment.oauthBaseURL.appendingPathComponent(OrcidEndpoints.oauthTokenPath)
153 | var req = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
154 | req.httpMethod = "POST"
155 | applyCommonHeaders(&req)
BUILD FAILURE 6.2 android