The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Aptabase, reference main (0b5172), with Swift 6.3 for Android on 15 Apr 2026 03:02:51 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/aptabase/aptabase-swift.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/aptabase/aptabase-swift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0b51722 Merge pull request #34 from aptabase/ralph/llms-txt-agent-discovery
Cloned https://github.com/aptabase/aptabase-swift.git
Revision (git rev-parse @):
0b5172293cdc6d7e2187624d234cdddcf78dc63c
SUCCESS checkout https://github.com/aptabase/aptabase-swift.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/aptabase/aptabase-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/apple/swift-docc-plugin
[1/2275] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.69s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.6 (1.59s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.76s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.71s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.6
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/5] Copying PrivacyInfo.xcprivacy
[3/5] Write sources
[4/5] Write swift-version--4F562202D5529B1.txt
[6/14] Compiling Aptabase InitOptions.swift
/host/spi-builder-workspace/Sources/Aptabase/InitOptions.swift:13:6: error: Objective-C interoperability is disabled
11 |     ///   - flushInterval: Defines a custom interval for flushing events.
12 |     ///   - trackingMode: Use TrackingMode.asDebug for debug events, TrackingMode.asRelease for release events, or TrackingMode.readFromEnvironment to use the environment setting. Defaults to .readFromEnvironment if omitted.
13 |     @objc public init(host: String? = nil, flushInterval: NSNumber? = nil, trackingMode: TrackingMode = .readFromEnvironment) {
   |      `- error: Objective-C interoperability is disabled
14 |         self.host = host
15 |         self.flushInterval = flushInterval?.doubleValue
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/15] Emitting module Aptabase
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:19:6: error: Objective-C interoperability is disabled
 17 |
 18 |     /// The shared client instance.
 19 |     @objc public static let shared = Aptabase()
    |      `- error: Objective-C interoperability is disabled
 20 |
 21 |     /// Initializes the client with given App Key.
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:71:6: error: Objective-C interoperability is disabled
 69 |     /// Initializes the client with given App Key.
 70 |     /// - Parameter appKey: The App Key to use.
 71 |     @objc public func initialize(appKey: String) {
    |      `- error: Objective-C interoperability is disabled
 72 |         initialize(appKey: appKey, with: nil)
 73 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:79:6: error: Objective-C interoperability is disabled
 77 |     ///   - appKey: The App Key to use.
 78 |     ///   - options: Optional initialization options.
 79 |     @objc public func initialize(appKey: String, options: InitOptions?) {
    |      `- error: Objective-C interoperability is disabled
 80 |         initialize(appKey: appKey, with: options)
 81 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:87:6: error: Objective-C interoperability is disabled
 85 |     ///   - eventName: The name of the event to track.
 86 |     ///   - props: Additional given properties.
 87 |     @objc public func trackEvent(_ eventName: String, with props: [String: Any] = [:]) {
    |      `- error: Objective-C interoperability is disabled
 88 |         guard let codable = toCodableProps(from: props) else {
 89 |             return
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:96:6: error: Objective-C interoperability is disabled
 94 |
 95 |     /// Forces all queued events to be sent to the server
 96 |     @objc public func flush() {
    |      `- error: Objective-C interoperability is disabled
 97 |         Task {
 98 |             await self.client?.flush()
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:110:6: error: Objective-C interoperability is disabled
108 |     }
109 |
110 |     @objc private func startPolling() {
    |      `- error: Objective-C interoperability is disabled
111 |         client?.startPolling()
112 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:114:6: error: Objective-C interoperability is disabled
112 |     }
113 |
114 |     @objc private func stopPolling() {
    |      `- error: Objective-C interoperability is disabled
115 |         client?.stopPolling()
116 |     }
/host/spi-builder-workspace/Sources/Aptabase/AptabaseClient.swift:73:6: error: Objective-C interoperability is disabled
71 |     }
72 |
73 |     @objc private func timerFlushSync() {
   |      `- error: Objective-C interoperability is disabled
74 |         if !pauseFlushTimer {
75 |             Task {
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:23:20: error: cannot find type 'URLRequest' in scope
 21 |
 22 | protocol URLSessionProtocol {
 23 |     func data(for: URLRequest) async throws -> (Data, URLResponse)
    |                    `- error: cannot find type 'URLRequest' in scope
 24 | }
 25 |
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:23:55: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 21 |
 22 | protocol URLSessionProtocol {
 23 |     func data(for: URLRequest) async throws -> (Data, URLResponse)
    |                                                       `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 24 | }
 25 |
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/Aptabase/EventDispatcher.swift:26:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
 24 | }
 25 |
 26 | extension URLSession: URLSessionProtocol {}
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
 27 |
 28 | public class EventDispatcher {
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:35:106: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     private let session: URLSessionProtocol
 34 |
 35 |     init(appKey: String, baseUrl: String, env: EnvironmentInfo, session: URLSessionProtocol = URLSession.shared) {
    |                                                                                                          `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.session = session
 37 |         apiUrl = URL(string: "\(baseUrl)/api/v0/events")!
/host/spi-builder-workspace/Sources/Aptabase/InitOptions.swift:13:6: error: Objective-C interoperability is disabled
11 |     ///   - flushInterval: Defines a custom interval for flushing events.
12 |     ///   - trackingMode: Use TrackingMode.asDebug for debug events, TrackingMode.asRelease for release events, or TrackingMode.readFromEnvironment to use the environment setting. Defaults to .readFromEnvironment if omitted.
13 |     @objc public init(host: String? = nil, flushInterval: NSNumber? = nil, trackingMode: TrackingMode = .readFromEnvironment) {
   |      `- error: Objective-C interoperability is disabled
14 |         self.host = host
15 |         self.flushInterval = flushInterval?.doubleValue
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:4:2: error: Objective-C interoperability is disabled
 2 |
 3 | /// Represents the tracking mode (release/debug) for the client.
 4 | @objc public class TrackingMode: NSObject {
   |  `- error: Objective-C interoperability is disabled
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:5:6: error: Objective-C interoperability is disabled
 3 | /// Represents the tracking mode (release/debug) for the client.
 4 | @objc public class TrackingMode: NSObject {
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
   |      `- error: Objective-C interoperability is disabled
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
 7 |     @objc public static let readFromEnvironment = TrackingMode(rawValue: 2)
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:6:6: error: Objective-C interoperability is disabled
 4 | @objc public class TrackingMode: NSObject {
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
   |      `- error: Objective-C interoperability is disabled
 7 |     @objc public static let readFromEnvironment = TrackingMode(rawValue: 2)
 8 |
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:7:6: error: Objective-C interoperability is disabled
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
 7 |     @objc public static let readFromEnvironment = TrackingMode(rawValue: 2)
   |      `- error: Objective-C interoperability is disabled
 8 |
 9 |     private let rawValue: Int
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:15:6: error: Objective-C interoperability is disabled
13 |     }
14 |
15 |     @objc public var isDebug: Bool {
   |      `- error: Objective-C interoperability is disabled
16 |         return self.rawValue == 0
17 |     }
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:19:6: error: Objective-C interoperability is disabled
17 |     }
18 |
19 |     @objc public var isRelease: Bool {
   |      `- error: Objective-C interoperability is disabled
20 |         return self.rawValue == 1
21 |     }
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:23:6: error: Objective-C interoperability is disabled
21 |     }
22 |
23 |     @objc public var isReadFromEnvironment: Bool {
   |      `- error: Objective-C interoperability is disabled
24 |         return self.rawValue == 2
25 |     }
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[8/15] Compiling Aptabase Aptabase.swift
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:19:6: error: Objective-C interoperability is disabled
 17 |
 18 |     /// The shared client instance.
 19 |     @objc public static let shared = Aptabase()
    |      `- error: Objective-C interoperability is disabled
 20 |
 21 |     /// Initializes the client with given App Key.
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:71:6: error: Objective-C interoperability is disabled
 69 |     /// Initializes the client with given App Key.
 70 |     /// - Parameter appKey: The App Key to use.
 71 |     @objc public func initialize(appKey: String) {
    |      `- error: Objective-C interoperability is disabled
 72 |         initialize(appKey: appKey, with: nil)
 73 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:79:6: error: Objective-C interoperability is disabled
 77 |     ///   - appKey: The App Key to use.
 78 |     ///   - options: Optional initialization options.
 79 |     @objc public func initialize(appKey: String, options: InitOptions?) {
    |      `- error: Objective-C interoperability is disabled
 80 |         initialize(appKey: appKey, with: options)
 81 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:87:6: error: Objective-C interoperability is disabled
 85 |     ///   - eventName: The name of the event to track.
 86 |     ///   - props: Additional given properties.
 87 |     @objc public func trackEvent(_ eventName: String, with props: [String: Any] = [:]) {
    |      `- error: Objective-C interoperability is disabled
 88 |         guard let codable = toCodableProps(from: props) else {
 89 |             return
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:96:6: error: Objective-C interoperability is disabled
 94 |
 95 |     /// Forces all queued events to be sent to the server
 96 |     @objc public func flush() {
    |      `- error: Objective-C interoperability is disabled
 97 |         Task {
 98 |             await self.client?.flush()
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:110:6: error: Objective-C interoperability is disabled
108 |     }
109 |
110 |     @objc private func startPolling() {
    |      `- error: Objective-C interoperability is disabled
111 |         client?.startPolling()
112 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:114:6: error: Objective-C interoperability is disabled
112 |     }
113 |
114 |     @objc private func stopPolling() {
    |      `- error: Objective-C interoperability is disabled
115 |         client?.stopPolling()
116 |     }
/host/spi-builder-workspace/Sources/Aptabase/AptabaseClient.swift:73:6: error: Objective-C interoperability is disabled
71 |     }
72 |
73 |     @objc private func timerFlushSync() {
   |      `- error: Objective-C interoperability is disabled
74 |         if !pauseFlushTimer {
75 |             Task {
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:35:106: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     private let session: URLSessionProtocol
 34 |
 35 |     init(appKey: String, baseUrl: String, env: EnvironmentInfo, session: URLSessionProtocol = URLSession.shared) {
    |                                                                                                          `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.session = session
 37 |         apiUrl = URL(string: "\(baseUrl)/api/v0/events")!
/host/spi-builder-workspace/Sources/Aptabase/AptabaseClient.swift:50:96: error: '#selector' can only be used with the Objective-C runtime
48 |         stopPolling()
49 |
50 |         flushTimer = Timer.scheduledTimer(timeInterval: flushInterval, target: self, selector: #selector(timerFlushSync), userInfo: nil, repeats: true)
   |                                                                                                `- error: '#selector' can only be used with the Objective-C runtime
51 |     }
52 |
[9/15] Compiling Aptabase AptabaseClient.swift
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:19:6: error: Objective-C interoperability is disabled
 17 |
 18 |     /// The shared client instance.
 19 |     @objc public static let shared = Aptabase()
    |      `- error: Objective-C interoperability is disabled
 20 |
 21 |     /// Initializes the client with given App Key.
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:71:6: error: Objective-C interoperability is disabled
 69 |     /// Initializes the client with given App Key.
 70 |     /// - Parameter appKey: The App Key to use.
 71 |     @objc public func initialize(appKey: String) {
    |      `- error: Objective-C interoperability is disabled
 72 |         initialize(appKey: appKey, with: nil)
 73 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:79:6: error: Objective-C interoperability is disabled
 77 |     ///   - appKey: The App Key to use.
 78 |     ///   - options: Optional initialization options.
 79 |     @objc public func initialize(appKey: String, options: InitOptions?) {
    |      `- error: Objective-C interoperability is disabled
 80 |         initialize(appKey: appKey, with: options)
 81 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:87:6: error: Objective-C interoperability is disabled
 85 |     ///   - eventName: The name of the event to track.
 86 |     ///   - props: Additional given properties.
 87 |     @objc public func trackEvent(_ eventName: String, with props: [String: Any] = [:]) {
    |      `- error: Objective-C interoperability is disabled
 88 |         guard let codable = toCodableProps(from: props) else {
 89 |             return
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:96:6: error: Objective-C interoperability is disabled
 94 |
 95 |     /// Forces all queued events to be sent to the server
 96 |     @objc public func flush() {
    |      `- error: Objective-C interoperability is disabled
 97 |         Task {
 98 |             await self.client?.flush()
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:110:6: error: Objective-C interoperability is disabled
108 |     }
109 |
110 |     @objc private func startPolling() {
    |      `- error: Objective-C interoperability is disabled
111 |         client?.startPolling()
112 |     }
/host/spi-builder-workspace/Sources/Aptabase/Aptabase.swift:114:6: error: Objective-C interoperability is disabled
112 |     }
113 |
114 |     @objc private func stopPolling() {
    |      `- error: Objective-C interoperability is disabled
115 |         client?.stopPolling()
116 |     }
/host/spi-builder-workspace/Sources/Aptabase/AptabaseClient.swift:73:6: error: Objective-C interoperability is disabled
71 |     }
72 |
73 |     @objc private func timerFlushSync() {
   |      `- error: Objective-C interoperability is disabled
74 |         if !pauseFlushTimer {
75 |             Task {
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:35:106: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     private let session: URLSessionProtocol
 34 |
 35 |     init(appKey: String, baseUrl: String, env: EnvironmentInfo, session: URLSessionProtocol = URLSession.shared) {
    |                                                                                                          `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.session = session
 37 |         apiUrl = URL(string: "\(baseUrl)/api/v0/events")!
/host/spi-builder-workspace/Sources/Aptabase/AptabaseClient.swift:50:96: error: '#selector' can only be used with the Objective-C runtime
48 |         stopPolling()
49 |
50 |         flushTimer = Timer.scheduledTimer(timeInterval: flushInterval, target: self, selector: #selector(timerFlushSync), userInfo: nil, repeats: true)
   |                                                                                                `- error: '#selector' can only be used with the Objective-C runtime
51 |     }
52 |
[10/15] Compiling Aptabase ConcurrentQueue.swift
[11/15] Compiling Aptabase EnvironmentInfo.swift
/host/spi-builder-workspace/Sources/Aptabase/EnvironmentInfo.swift:94:43: error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 92 |         #endif
 93 |
 94 |         if let simulatorModelIdentifier = ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"] {
    |                                           `- error: 'ProcessInfo' initializer is inaccessible due to 'internal' protection level
 95 |             return simulatorModelIdentifier
 96 |         } else {
FoundationEssentials.ProcessInfo.init:2:10: note: 'init()' declared here
1 | class ProcessInfo {
2 | internal init()}
  |          `- note: 'init()' declared here
3 |
/host/spi-builder-workspace/Sources/Aptabase/EnvironmentInfo.swift:97:30: error: cannot find 'utsname' in scope
 95 |             return simulatorModelIdentifier
 96 |         } else {
 97 |             var systemInfo = utsname()
    |                              `- error: cannot find 'utsname' in scope
 98 |             if uname(&systemInfo) == 0 {
 99 |                 let identifier = withUnsafePointer(to: &systemInfo.machine) { ptr in
/host/spi-builder-workspace/Sources/Aptabase/EnvironmentInfo.swift:98:16: error: cannot find 'uname' in scope
 96 |         } else {
 97 |             var systemInfo = utsname()
 98 |             if uname(&systemInfo) == 0 {
    |                `- error: cannot find 'uname' in scope
 99 |                 let identifier = withUnsafePointer(to: &systemInfo.machine) { ptr in
100 |                     ptr.withMemoryRebound(to: CChar.self, capacity: 1) { machinePtr in
[12/15] Compiling Aptabase EventDispatcher.swift
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:23:20: error: cannot find type 'URLRequest' in scope
 21 |
 22 | protocol URLSessionProtocol {
 23 |     func data(for: URLRequest) async throws -> (Data, URLResponse)
    |                    `- error: cannot find type 'URLRequest' in scope
 24 | }
 25 |
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:23:55: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 21 |
 22 | protocol URLSessionProtocol {
 23 |     func data(for: URLRequest) async throws -> (Data, URLResponse)
    |                                                       `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 24 | }
 25 |
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/Aptabase/EventDispatcher.swift:26:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
 24 | }
 25 |
 26 | extension URLSession: URLSessionProtocol {}
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
 27 |
 28 | public class EventDispatcher {
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:35:106: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 33 |     private let session: URLSessionProtocol
 34 |
 35 |     init(appKey: String, baseUrl: String, env: EnvironmentInfo, session: URLSessionProtocol = URLSession.shared) {
    |                                                                                                          `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 36 |         self.session = session
 37 |         apiUrl = URL(string: "\(baseUrl)/api/v0/events")!
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:81:27: error: cannot find 'URLRequest' in scope
 79 |             let body = try encoder.encode(events)
 80 |
 81 |             var request = URLRequest(url: apiUrl)
    |                           `- error: cannot find 'URLRequest' in scope
 82 |             request.httpMethod = "POST"
 83 |             request.allHTTPHeaderFields = headers
/host/spi-builder-workspace/Sources/Aptabase/EventDispatcher.swift:87:62: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
 85 |
 86 |             let (data, response) = try await session.data(for: request)
 87 |             let statusCode = (response as? HTTPURLResponse)?.statusCode ?? 0
    |                                                              `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
 88 |             if statusCode < 300 {
 89 |                 return
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[13/15] Compiling Aptabase TrackingMode.swift
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:4:2: error: Objective-C interoperability is disabled
 2 |
 3 | /// Represents the tracking mode (release/debug) for the client.
 4 | @objc public class TrackingMode: NSObject {
   |  `- error: Objective-C interoperability is disabled
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:5:6: error: Objective-C interoperability is disabled
 3 | /// Represents the tracking mode (release/debug) for the client.
 4 | @objc public class TrackingMode: NSObject {
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
   |      `- error: Objective-C interoperability is disabled
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
 7 |     @objc public static let readFromEnvironment = TrackingMode(rawValue: 2)
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:6:6: error: Objective-C interoperability is disabled
 4 | @objc public class TrackingMode: NSObject {
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
   |      `- error: Objective-C interoperability is disabled
 7 |     @objc public static let readFromEnvironment = TrackingMode(rawValue: 2)
 8 |
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:7:6: error: Objective-C interoperability is disabled
 5 |     @objc public static let asDebug = TrackingMode(rawValue: 0)
 6 |     @objc public static let asRelease = TrackingMode(rawValue: 1)
 7 |     @objc public static let readFromEnvironment = TrackingMode(rawValue: 2)
   |      `- error: Objective-C interoperability is disabled
 8 |
 9 |     private let rawValue: Int
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:15:6: error: Objective-C interoperability is disabled
13 |     }
14 |
15 |     @objc public var isDebug: Bool {
   |      `- error: Objective-C interoperability is disabled
16 |         return self.rawValue == 0
17 |     }
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:19:6: error: Objective-C interoperability is disabled
17 |     }
18 |
19 |     @objc public var isRelease: Bool {
   |      `- error: Objective-C interoperability is disabled
20 |         return self.rawValue == 1
21 |     }
/host/spi-builder-workspace/Sources/Aptabase/TrackingMode.swift:23:6: error: Objective-C interoperability is disabled
21 |     }
22 |
23 |     @objc public var isReadFromEnvironment: Bool {
   |      `- error: Objective-C interoperability is disabled
24 |         return self.rawValue == 2
25 |     }
[14/15] Compiling Aptabase Value.swift
[15/15] Compiling Aptabase resource_bundle_accessor.swift
BUILD FAILURE 6.3 android