The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AppsOnAir-Core, reference 1.2.1 (865fb4), with Swift 6.1 for macOS (SPM) on 23 Apr 2026 08:24:04 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apps-on-air/AppsOnAir-iOS-Core.git
Reference: 1.2.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apps-on-air/AppsOnAir-iOS-Core
 * tag               1.2.1      -> FETCH_HEAD
HEAD is now at 865fb4a Merge pull request #23 from apps-on-air/development
Cloned https://github.com/apps-on-air/AppsOnAir-iOS-Core.git
Revision (git rev-parse @):
865fb4afdbdf1bfd3f41f4fbeb85a5af8aba95c3
SUCCESS checkout https://github.com/apps-on-air/AppsOnAir-iOS-Core.git at 1.2.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/apps-on-air/AppsOnAir-iOS-Core.git
https://github.com/apps-on-air/AppsOnAir-iOS-Core.git
{
  "dependencies" : [
    {
      "identity" : "reachability.swift",
      "requirement" : {
        "exact" : [
          "5.2.4"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ashleymills/Reachability.swift.git"
    }
  ],
  "manifest_display_name" : "AppsOnAir-Core",
  "name" : "AppsOnAir-Core",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "AppsOnAir-Core",
      "targets" : [
        "AppsOnAir-Core",
        "AppsOnAir-Core-ObjC"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AppsOnAir_Core_ObjC",
      "module_type" : "ClangTarget",
      "name" : "AppsOnAir-Core-ObjC",
      "path" : "AppsOnAir_Core_ObjC",
      "product_memberships" : [
        "AppsOnAir-Core"
      ],
      "sources" : [
        "AppsOnAir_Core-Swift.m"
      ],
      "target_dependencies" : [
        "AppsOnAir-Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AppsOnAir_Core",
      "module_type" : "SwiftTarget",
      "name" : "AppsOnAir-Core",
      "path" : "AppsOnAir-Core",
      "product_dependencies" : [
        "Reachability"
      ],
      "product_memberships" : [
        "AppsOnAir-Core"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/Resources/AppsOnAir-CoreInfo.plist",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AppsOnAirCoreServices.swift",
        "BundleExtension.swift",
        "DeviceInfoService.swift",
        "Logger.swift",
        "NetwarkWatcher.swift",
        "SdkManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/6] Write sources
[0/6] Copying PrivacyInfo.xcprivacy
[0/6] Copying AppsOnAir-CoreInfo.plist
[4/6] Write swift-version-2F0A5646E1D333AE.txt
[6/9] Compiling Reachability resource_bundle_accessor.swift
[7/9] Emitting module Reachability
[8/9] Compiling Reachability Reachability.swift
[9/17] Compiling AppsOnAir_Core resource_bundle_accessor.swift
[10/17] Compiling AppsOnAir_Core DeviceInfoService.swift
[11/17] Compiling AppsOnAir_Core NetwarkWatcher.swift
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/NetwarkWatcher.swift:17:5: warning: var 'currentNetworkState' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | ///get current network status
17 | var currentNetworkState: String = "Unknown"
   |     |- warning: var 'currentNetworkState' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'currentNetworkState' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'currentNetworkState' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// Implementation of network service using Reachability
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/NetwarkWatcher.swift:69:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
67 |             deadline: .now() + 0.001,
68 |             execute: {
69 |                 self.delegate?.networkStatusDidChange(status: isConnected)
   |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
   |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
70 |             })
71 |
[12/17] Compiling AppsOnAir_Core BundleExtension.swift
[13/17] Compiling AppsOnAir_Core Logger.swift
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/Logger.swift:13:23: warning: static property 'logLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     // Set enum from internal to developer for pod distribution
12 |     // Set the logging level for the application
13 |     public static var logLevel: LoggerLevel = .developer
   |                       |- warning: static property 'logLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'logLevel' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'logLevel' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     // Unified logging method
[14/17] Compiling AppsOnAir_Core AppsOnAirCoreServices.swift
[15/17] Emitting module AppsOnAir_Core
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/Logger.swift:13:23: warning: static property 'logLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     // Set enum from internal to developer for pod distribution
12 |     // Set the logging level for the application
13 |     public static var logLevel: LoggerLevel = .developer
   |                       |- warning: static property 'logLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'logLevel' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'logLevel' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 |     // Unified logging method
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/NetwarkWatcher.swift:17:5: warning: var 'currentNetworkState' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | ///get current network status
17 | var currentNetworkState: String = "Unknown"
   |     |- warning: var 'currentNetworkState' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: convert 'currentNetworkState' to a 'let' constant to make 'Sendable' shared state immutable
   |     |- note: add '@MainActor' to make var 'currentNetworkState' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// Implementation of network service using Reachability
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/SdkManager.swift:5:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SdkManager' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | @objcMembers public final class SdkManager: NSObject {
    |                                 `- note: class 'SdkManager' does not conform to the 'Sendable' protocol
  4 |
  5 |     public static let shared = SdkManager()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SdkManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |     private var cachedVersions = [String: String]()
  7 |
[16/17] Compiling AppsOnAir_Core SdkManager.swift
/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/SdkManager.swift:5:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SdkManager' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | @objcMembers public final class SdkManager: NSObject {
    |                                 `- note: class 'SdkManager' does not conform to the 'Sendable' protocol
  4 |
  5 |     public static let shared = SdkManager()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SdkManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  6 |     private var cachedVersions = [String: String]()
  7 |
[16/17] Compiling AppsOnAir-Core-ObjC AppsOnAir_Core-Swift.m
Build complete! (8.57s)
Fetching https://github.com/ashleymills/Reachability.swift.git
[1/1922] Fetching reachability.swift
Fetched https://github.com/ashleymills/Reachability.swift.git from cache (0.98s)
Computing version for https://github.com/ashleymills/Reachability.swift.git
Computed https://github.com/ashleymills/Reachability.swift.git at 5.2.4 (1.59s)
Creating working copy for https://github.com/ashleymills/Reachability.swift.git
Working copy of https://github.com/ashleymills/Reachability.swift.git resolved at 5.2.4
warning: 'reachability.swift': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/Reachability.swift/Sources/Info.plist
Build complete.
{
  "dependencies" : [
    {
      "identity" : "reachability.swift",
      "requirement" : {
        "exact" : [
          "5.2.4"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ashleymills/Reachability.swift.git"
    }
  ],
  "manifest_display_name" : "AppsOnAir-Core",
  "name" : "AppsOnAir-Core",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "AppsOnAir-Core",
      "targets" : [
        "AppsOnAir-Core",
        "AppsOnAir-Core-ObjC"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AppsOnAir_Core_ObjC",
      "module_type" : "ClangTarget",
      "name" : "AppsOnAir-Core-ObjC",
      "path" : "AppsOnAir_Core_ObjC",
      "product_memberships" : [
        "AppsOnAir-Core"
      ],
      "sources" : [
        "AppsOnAir_Core-Swift.m"
      ],
      "target_dependencies" : [
        "AppsOnAir-Core"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AppsOnAir_Core",
      "module_type" : "SwiftTarget",
      "name" : "AppsOnAir-Core",
      "path" : "AppsOnAir-Core",
      "product_dependencies" : [
        "Reachability"
      ],
      "product_memberships" : [
        "AppsOnAir-Core"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/AppsOnAir-Core/Resources/AppsOnAir-CoreInfo.plist",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AppsOnAirCoreServices.swift",
        "BundleExtension.swift",
        "DeviceInfoService.swift",
        "Logger.swift",
        "NetwarkWatcher.swift",
        "SdkManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.