Build Information
Failed to build Sentry, reference 9.1.0 (0041fe), with Swift 6.1 for macOS (SPM) on 10 Dec 2025 19:19:44 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
:
11 | assertionFailure(warningText)
12 | }
13 | return Timer.scheduledTimer(withTimeInterval: interval, repeats: repeats, block: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Helper/SentrySDK.swift:411:24: warning: static property '_startOption' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
409 |
410 | /// The option used to start the SDK
411 | private static var _startOption: Options?
| |- warning: static property '_startOption' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_startOption' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_startOption' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
412 | private static let startOptionLock = NSRecursiveLock()
413 | @_spi(Private) @objc public static var startOption: Options? {
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Helper/SentrySdkPackage.swift:12:13: warning: var 'SENTRY_PACKAGE_INFO' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 |
11 | #if SWIFT_PACKAGE
12 | private var SENTRY_PACKAGE_INFO: SentryPackageManagerOption = .swiftPackageManager
| |- warning: var 'SENTRY_PACKAGE_INFO' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'SENTRY_PACKAGE_INFO' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'SENTRY_PACKAGE_INFO' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | #elseif COCOAPODS
14 | private var SENTRY_PACKAGE_INFO: SentryPackageManagerOption = .cocoaPods
[125/453] Compiling SentrySwift SentryUserFeedbackFormConfiguration.swift
[126/453] Compiling SentrySwift SentryUserFeedbackThemeConfiguration.swift
[127/453] Compiling SentrySwift SentryUserFeedbackWidgetConfiguration.swift
[128/453] Compiling SentrySwift SentryFeedback.swift
[129/453] Compiling SentrySwift SentryFeedbackAPI.swift
[130/453] Compiling SentrySwift SentryUserFeedbackFormController.swift
[131/453] Compiling SentrySwift SentryUserFeedbackFormViewModel.swift
[132/453] Compiling SentrySwift SentryUserFeedbackIntegrationDriver.swift
[133/453] Compiling SentrySwift SentryUserFeedbackWidget.swift
[134/453] Compiling SentrySwift SentryUserFeedbackWidgetButtonMegaphoneIconView.swift
[135/453] Compiling SentrySwift SentryUserFeedbackWidgetButtonView.swift
[136/453] Compiling SentrySwift UserFeedbackIntegration.swift
[137/453] Compiling SentrySwift SentryWatchdogTerminationAttributesProcessor.swift
[138/453] Compiling SentrySwift SentryWatchdogTerminationScopeObserver.swift
[139/453] Compiling SentrySwift DefaultRateLimits.swift
[140/453] Compiling SentrySwift HttpDateParser.swift
[141/453] Compiling SentrySwift RateLimitParser.swift
[142/453] Compiling SentrySwift RateLimits.swift
[143/453] Compiling SentrySwift RetryAfterHeaderParser.swift
[144/453] Compiling SentrySwift SentryNSURLRequestBuilder.swift
[145/453] Compiling SentrySwift SentryAppState.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[146/453] Compiling SentrySwift SentryAppStateManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[147/453] Compiling SentrySwift Locks.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[148/453] Compiling SentrySwift NumberExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[149/453] Compiling SentrySwift StringExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[150/453] Compiling SentrySwift UIViewExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[151/453] Compiling SentrySwift SentryLevel.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[152/453] Compiling SentrySwift SentryBaggageSerialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[153/453] Compiling SentrySwift SentryBinaryImageCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[154/453] Compiling SentrySwift SentryCurrentDateProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[155/453] Compiling SentrySwift SentryExtraPackages.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[156/453] Compiling SentrySwift SentryFileContents.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[157/453] Compiling SentrySwift SentryInAppLogic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[158/453] Compiling SentrySwift SentryUIDeviceWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[159/453] Compiling SentrySwift SentryANRTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[160/453] Compiling SentrySwift SentryANRTrackerV2Delegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[161/453] Compiling SentrySwift SentryANRType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[162/453] Compiling SentrySwift SentryDelayedFramesTrackerWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[163/453] Compiling SentrySwift SentryFramesDelayResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[164/453] Compiling SentrySwift SentryFramesTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[165/453] Compiling SentrySwift SentryScreenFrames.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/SentryExtraPackages.swift:4:24: warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | @objc @_spi(Private) public final class SentryExtraPackages: NSObject {
4 | private static var extraPackages = Set<[String: String]>()
| |- warning: static property 'extraPackages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'extraPackages' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'extraPackages' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private static let lock = NSRecursiveLock()
6 |
[166/453] Compiling SentrySwift SentryOnDemandReplay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[167/453] Compiling SentrySwift SentryOnDemandReplayError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[168/453] Compiling SentrySwift SentryPixelBuffer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[169/453] Compiling SentrySwift SentryRenderVideoResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[170/453] Compiling SentrySwift SentryReplayEvent.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[171/453] Compiling SentrySwift SentryReplayFrame.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[172/453] Compiling SentrySwift SentryReplayOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[173/453] Compiling SentrySwift SentryReplayRecording.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[174/453] Compiling SentrySwift SentryReplayType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[175/453] Compiling SentrySwift SentryReplayVideoMaker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[176/453] Compiling SentrySwift SentrySRDefaultBreadcrumbConverter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[177/453] Compiling SentrySwift SentrySessionReplay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[178/453] Compiling SentrySwift SentrySessionReplayDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[179/453] Compiling SentrySwift SentrySessionReplayEnvironmentChecker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[180/453] Compiling SentrySwift SentrySessionReplayEnvironmentCheckerProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[181/453] Compiling SentrySwift SentryTouchTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[182/453] Compiling SentrySwift SentryVideoFrameProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[183/453] Compiling SentrySwift SentryVideoInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[184/453] Compiling SentrySwift SwiftAsyncIntegration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[185/453] Compiling SentrySwift SentryUserFeedbackConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:18:27: warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public static let enableViewRendererV2: Bool = true
17 | public static let enableFastViewRendering: Bool = false
18 | public static let quality: SentryReplayQuality = .medium
| |- warning: static property 'quality' is not concurrency-safe because non-'Sendable' type 'SentryReplayOptions.SentryReplayQuality' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'quality' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | // The following properties are public because they are used by SentrySwiftUI.
:
36 | */
37 | @objc
38 | public enum SentryReplayQuality: Int, CustomStringConvertible {
| `- note: consider making enum 'SentryReplayQuality' conform to the 'Sendable' protocol
39 | /**
40 | * Video Scale: 80%
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift:27:32: warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
25 | // The following properties are defaults which are not configurable by the user.
26 |
27 | fileprivate static let sdkInfo: [String: Any]? = nil
| |- warning: static property 'sdkInfo' is not concurrency-safe because non-'Sendable' type '[String : Any]?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sdkInfo' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | fileprivate static let frameRate: UInt = 1
29 | fileprivate static let errorReplayDuration: TimeInterval = 30
[186/453] Compiling SentrySwift FlushLogsIntegration.swift
[187/453] Compiling SentrySwift Data+SentryTracing.swift
[188/453] Compiling SentrySwift FileManager+SentryTracing.swift
[189/453] Compiling SentrySwift SentryFileIOTracker+SwiftHelpers.swift
[190/453] Compiling SentrySwift SentryFileIOTracker.swift
[191/453] Compiling SentrySwift SentryDisplayLinkWrapper.swift
[192/453] Compiling SentrySwift SentryUIViewControllerPerformanceTracker.swift
[193/453] Compiling SentrySwift SentryScreenshotOptions.swift
[194/453] Compiling SentrySwift SentryGlobalEventProcessor.swift
[195/453] Compiling SentrySwift SentryAutoSessionTrackingIntegration.swift
[196/453] Compiling SentrySwift SessionTracker.swift
[197/453] Compiling SentrySwift SentryMaskingPreviewView.swift
[198/453] Compiling SentrySwift SentryRRWebBreadcrumbEvent.swift
[199/453] Compiling SentrySwift SentryRRWebCustomEvent.swift
[200/453] Compiling SentrySwift SentryRRWebEvent.swift
[201/453] Compiling SentrySwift SentryRRWebMetaEvent.swift
[202/453] Compiling SentrySwift SentryRRWebOptionsEvent.swift
[203/453] Compiling SentrySwift SentryRRWebSpanEvent.swift
[204/453] Compiling SentrySwift SentryRRWebTouchEvent.swift
[205/453] Compiling SentrySwift SentryRRWebVideoEvent.swift
[206/453] Compiling SentrySwift SentryThreadInspector.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[207/453] Compiling SentrySwift SentryDependencyContainer.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[208/453] Compiling SentrySwift SentryDsn.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[209/453] Compiling SentrySwift SentryExperimentalOptions.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[210/453] Compiling SentrySwift SentryHub.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[211/453] Compiling SentrySwift SentrySession.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[212/453] Compiling SentrySwift SentryScopeObserver.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[213/453] Compiling SentrySwift LoadValidator.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[214/453] Compiling SentrySwift SentryClientReport.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[215/453] Compiling SentrySwift SentryDiscardedEvent.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[216/453] Compiling SentrySwift SentryDispatchFactory.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[217/453] Compiling SentrySwift SentryEnvelope.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[218/453] Compiling SentrySwift SentryEnvelopeHeader.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[219/453] Compiling SentrySwift SentryEnvelopeItem.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[220/453] Compiling SentrySwift SentryLogBatcher.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[221/453] Compiling SentrySwift SentryLogger.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[222/453] Compiling SentrySwift SentrySDKLog+Configure.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[223/453] Compiling SentrySwift SentryURLRequestFactory.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[224/453] Compiling SentrySwift SentryViewHierarchyProvider.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[225/453] Compiling SentrySwift SentryMeasurementValue.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| |- warning: let 'defaultApplicationProvider' is not concurrency-safe because non-'Sendable' type '() -> (any SentryApplication)?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'defaultApplicationProvider' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:8:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
6 | // Declare the application provider block at the top level to prevent capturing 'self'
7 | // from the dependency container, which would create cyclic dependencies and memory leaks.
8 | let defaultApplicationProvider: () -> SentryApplication? = {
| `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
9 | #if (os(iOS) || os(tvOS) || (swift(>=5.9) && os(visionOS))) && !SENTRY_NO_UIKIT
10 | return UIApplication.shared
/Users/admin/builder/spi-builder-workspace/Sources/Swift/SentryDependencyContainer.swift:42:24: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
40 |
41 | private static let instanceLock = NSRecursiveLock()
42 | private static var instance = SentryDependencyContainer()
| |- warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | private let paramLock = NSRecursiveLock()
44 |
[226/454] Compiling SentrySwiftUI SentryTraceOrigin.swift
[227/454] Compiling SentrySwiftUI SentryReplayView.swift
[228/454] Compiling SentrySwiftUI SentryReplayMaskPreviewUIView.swift
[229/454] Compiling SentrySwiftUI PreviewRedactOptions.swift
[230/454] Compiling SentrySwiftUI SentryReplayMaskPreview.swift
[231/454] Compiling SentrySwiftUI SentrySpanOperation.swift
[232/454] Compiling SentrySwiftUI SentryTracedView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SentrySwiftUI/SentryTracedView.swift:8:22: warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
6 |
7 | #if XCODE || SWIFT_PACKAGE
8 | @_implementationOnly import SentryInternal
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
9 | #endif
10 |
/Users/admin/builder/spi-builder-workspace/Sources/SentrySwiftUI/SentryTracedView.swift:84:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
82 | // because it may happen before other view `body` property get called.
83 | DispatchQueue.main.async {
84 | self.finishSpan(transactionId)
| |- 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
85 | }
86 | }
/Users/admin/builder/spi-builder-workspace/Sources/SentrySwiftUI/SentryTracedView.swift:84:33: warning: sending 'transactionId' risks causing data races; this is an error in the Swift 6 language mode
82 | // because it may happen before other view `body` property get called.
83 | DispatchQueue.main.async {
84 | self.finishSpan(transactionId)
| |- warning: sending 'transactionId' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'transactionId' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
85 | }
86 | }
[233/454] Emitting module SentrySwiftUI
/Users/admin/builder/spi-builder-workspace/Sources/SentrySwiftUI/SentryTracedView.swift:8:22: warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
6 |
7 | #if XCODE || SWIFT_PACKAGE
8 | @_implementationOnly import SentryInternal
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
9 | #endif
10 |
error: verify-emitted-module-interface command failed with exit code 1 (use -v to see invocation)
/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/SentrySwift.swiftinterface:14:19: error: no such module 'SentryHeaders'
12 | import Network
13 | import ObjectiveC
14 | @_exported import SentryHeaders
| `- error: no such module 'SentryHeaders'
15 | import Swift
16 | import _Concurrency
/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/SentrySwift.swiftinterface:1:1: error: failed to verify module interface of 'SentrySwift' due to the errors above; the textual interface may be broken by project issues or a compiler bug
1 | // swift-interface-format-version: 1.0
| `- error: failed to verify module interface of 'SentrySwift' due to the errors above; the textual interface may be broken by project issues or a compiler bug
2 | // swift-compiler-version: Apple Swift version 6.1 effective-5.10 (swiftlang-6.1.0.110.21 clang-1700.0.13.3)
3 | // swift-module-flags: -target arm64-apple-macosx10.14 -enable-objc-interop -enable-library-evolution -swift-version 5 -Onone -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -module-name SentrySwift -package-name spi_builder_workspace
Downloading binary artifact https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip
Downloading binary artifact https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic.xcframework.zip
Downloading binary artifact https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic-WithARM64e.xcframework.zip
Downloading binary artifact https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit-WithARM64e.xcframework.zip
Downloading binary artifact https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit.xcframework.zip
[16375/54200790] Downloading https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip
[16846336/152296253] Downloading https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit.xcframework.zip
[17124864/260328547] Downloading https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit-WithARM64e.xcframework.zip
[18756973/390938530] Downloading https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit-WithARM64e.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic-WithARM64e.xcframework.zip
[20991078/509424666] Downloading https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit-WithARM64e.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic-WithARM64e.xcframework.zip, https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic.xcframework.zip
Downloaded https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry.xcframework.zip (4.57s)
Downloaded https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit.xcframework.zip (6.96s)
Downloaded https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-WithoutUIKitOrAppKit-WithARM64e.xcframework.zip (7.46s)
Downloaded https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic.xcframework.zip (7.83s)
Downloaded https://github.com/getsentry/sentry-cocoa/releases/download/9.1.0/Sentry-Dynamic-WithARM64e.xcframework.zip (8.41s)
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/221] Write swift-version-2F0A5646E1D333AE.txt
[2/240] Compiling SentryCppHelper SentryCppHelper.swift
[3/240] Emitting module SentryCppHelper
[4/240] Compiling SentryDistribution Error.swift
[5/425] Compiling SentryDistribution Date+Parse.swift
[6/425] Compiling SentryDistribution URLSession+Distribute.swift
[7/425] Compiling SentryDistribution Updater.swift
[8/425] Compiling SentryDistribution ReleaseInfo.swift
[9/425] Compiling SentryDistribution CheckForUpdateParams.swift
[10/425] Compiling SentryDistribution UpdateCheckResponse.swift
[11/425] Compiling SentrySwiftUI PreviewRedactOptions.swift
[12/425] Compiling SentrySwiftUI SentryReplayMaskPreview.swift
[13/425] Emitting module SentrySwiftUI
/Users/admin/builder/spi-builder-workspace/Sources/SentrySwiftUI/SentryTracedView.swift:8:22: warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
6 |
7 | #if XCODE || SWIFT_PACKAGE
8 | @_implementationOnly import SentryInternal
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
9 | #endif
10 |
[14/425] Emitting module SentryDistribution
[15/425] Compiling SentryDistribution BinaryParser.swift
[16/425] Compiling SentrySwiftUI SentrySpanOperation.swift
[17/425] Compiling SentrySwiftUI SentryReplayView.swift
[18/425] Compiling SentrySwiftUI SentryReplayMaskPreviewUIView.swift
[19/425] Compiling SentrySwiftUI SentryTracedView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SentrySwiftUI/SentryTracedView.swift:8:22: warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
6 |
7 | #if XCODE || SWIFT_PACKAGE
8 | @_implementationOnly import SentryInternal
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SentrySwiftUI' may lead to instability during execution
9 | #endif
10 |
[20/425] Compiling SentrySwiftUI SentryTraceOrigin.swift
[21/425] Compiling SentrySwift SentryAppState.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[22/425] Compiling SentrySwift SentryAppStateManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[23/425] Compiling SentrySwift Locks.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[24/425] Compiling SentrySwift NumberExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[25/425] Compiling SentrySwift StringExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[26/425] Compiling SentrySwift UIViewExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[27/425] Compiling SentrySwift SentryLevel.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[28/425] Compiling SentrySwift SentryBaggageSerialization.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[29/425] Compiling SentrySwift SentryBinaryImageCache.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[30/425] Compiling SentrySwift SentryCurrentDateProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[31/425] Compiling SentrySwift SentryExtraPackages.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[32/425] Compiling SentrySwift SentryFileContents.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[33/425] Compiling SentrySwift SentryInAppLogic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[34/425] Compiling SentrySwift SentryUIDeviceWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[35/425] Compiling SentrySwift SentryANRTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[36/425] Compiling SentrySwift SentryANRTrackerV2Delegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[37/425] Compiling SentrySwift SentryANRType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[38/425] Compiling SentrySwift SentryDelayedFramesTrackerWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[39/425] Compiling SentrySwift SentryFramesDelayResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[40/425] Compiling SentrySwift SentryFramesTracker.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[41/425] Compiling SentrySwift SentryScreenFrames.swift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[42/445] Compiling SentrySwift SentryMechanismCodable.swift
[43/445] Compiling SentrySwift SentryMechanismContextCodable.swift
[44/445] Compiling SentrySwift SentryMessage.swift
[45/445] Compiling SentrySwift SentryNSErrorCodable.swift
[46/445] Compiling SentrySwift SentryRequestCodable.swift
[47/445] Compiling SentrySwift SentryStacktraceCodable.swift
[48/445] Compiling SentrySwift SentryThreadCodable.swift
[49/445] Compiling SentrySwift SentryUserCodable.swift
[50/445] Compiling SentrySwift SentryFileManagerProtocol.swift
[51/445] Compiling SentrySwift SentryLog.swift
[52/445] Compiling SentrySwift SentryLogAttribute.swift
[53/445] Compiling SentrySwift SentryLogLevel.swift
[54/445] Compiling SentrySwift SentryLogMessage.swift
[55/445] Compiling SentrySwift SentrySDKSettings.swift
[56/445] Compiling SentrySwift SentryClient.swift
[57/445] Compiling SentrySwift SentryCrashSwift.swift
[58/445] Compiling SentrySwift SentryCrashWrapper.swift
[59/445] Compiling SentrySwift SentryDebugImageProvider.swift
[60/445] Compiling SentrySwift SentryFrameRemover.swift
[61/445] Compiling SentrySwift SentryThreadInspecting.swift
[62/445] Compiling SentrySwift Integrations.swift
[63/445] Compiling SentrySwift SentryProfileOptions.swift
[64/445] Compiling SentrySwift SentryTransactionNameSource.swift
[65/445] Compiling SentrySwift SwizzleClassNameExclude.swift
[66/445] Compiling SentrySwift SentryMXCallStackTree.swift
[67/445] Compiling SentrySwift SentryMXManager.swift
[68/445] Compiling SentrySwift SentryRedactOptions.swift
[69/445] Compiling SentrySwift SentryViewControllerBreadcrumbTracking.swift
[70/445] Compiling SentrySwift SwiftDescriptor.swift
[71/445] Compiling SentrySwift HTTPHeaderSanitizer.swift
[72/445] Compiling SentrySwift SentrySDKLog.swift
[73/445] Compiling SentrySwift UIImageHelper.swift
[74/445] Compiling SentrySwift URLSessionTaskHelper.swift
[75/445] Compiling SentrySwift UrlSanitized.swift
[76/445] Compiling SentrySwift SentryDefaultMaskRenderer.swift
[77/445] Compiling SentrySwift SentryDefaultViewRenderer.swift
[78/445] Compiling SentrySwift SentryGraphicsImageRenderer.swift
[79/445] Compiling SentrySwift SentryMaskRenderer.swift
[80/445] Compiling SentrySwift SentryMaskRendererV2.swift
[81/445] Compiling SentrySwift SentryRedactRegion.swift
[82/445] Compiling SentrySwift SentryRedactRegionType.swift
[83/445] Compiling SentrySwift SentryUserFeedbackFormConfiguration.swift
[84/445] Compiling SentrySwift SentryUserFeedbackThemeConfiguration.swift
[85/445] Compiling SentrySwift SentryUserFeedbackWidgetConfiguration.swift
[86/445] Compiling SentrySwift SentryFeedback.swift
[87/445] Compiling SentrySwift SentryFeedbackAPI.swift
[88/445] Compiling SentrySwift SentryUserFeedbackFormController.swift
[89/445] Compiling SentrySwift SentryUserFeedbackFormViewModel.swift
[90/445] Compiling SentrySwift SentryUserFeedbackIntegrationDriver.swift
[91/445] Compiling SentrySwift SentryUserFeedbackWidget.swift
[92/445] Compiling SentrySwift SentryUserFeedbackWidgetButtonMegaphoneIconView.swift
[93/445] Compiling SentrySwift SentryUserFeedbackWidgetButtonView.swift
[94/445] Compiling SentrySwift UserFeedbackIntegration.swift
[95/445] Compiling SentrySwift SentryWatchdogTerminationAttributesProcessor.swift
[96/445] Compiling SentrySwift SentryWatchdogTerminationScopeObserver.swift
[97/445] Compiling SentrySwift DefaultRateLimits.swift
[98/445] Compiling SentrySwift HttpDateParser.swift
[99/445] Compiling SentrySwift RateLimitParser.swift
[100/445] Compiling SentrySwift RateLimits.swift
[101/445] Compiling SentrySwift RetryAfterHeaderParser.swift
[102/445] Compiling SentrySwift SentryNSURLRequestBuilder.swift
[103/445] Emitting module SentrySwift
/Users/admin/builder/spi-builder-workspace/Sources/Swift/Core/Helper/Log/SentryLevel.swift:5:1: warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
3 | private let levelNames = ["none", "debug", "info", "warning", "error", "fatal"]
4 |
5 | extension SentryLevel: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'SentryLevel' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'SentryHeaders' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public var description: String {
7 | return levelNames[Int(self.rawValue)]
[104/445] Compiling SentrySwift FlushLogsIntegration.swift
[105/445] Compiling SentrySwift Data+SentryTracing.swift
[106/445] Compiling SentrySwift FileManager+SentryTracing.swift
[107/445] Compiling SentrySwift SentryFileIOTracker+SwiftHelpers.swift
[108/445] Compiling SentrySwift SentryFileIOTracker.swift
[109/445] Compiling SentrySwift SentryDisplayLinkWrapper.swift
[110/445] Compiling SentrySwift SentryUIViewControllerPerformanceTracker.swift
[111/445] Compiling SentrySwift SentryScreenshotOptions.swift
[112/445] Compiling SentrySwift SentryGlobalEventProcessor.swift
[113/445] Compiling SentrySwift SentryAutoSessionTrackingIntegration.swift
[114/445] Compiling SentrySwift SessionTracker.swift
[115/445] Compiling SentrySwift SentryMaskingPreviewView.swift
[116/445] Compiling SentrySwift SentryRRWebBreadcrumbEvent.swift
[117/445] Compiling SentrySwift SentryRRWebCustomEvent.swift
[118/445] Compiling SentrySwift SentryRRWebEvent.swift
[119/445] Compiling SentrySwift SentryRRWebMetaEvent.swift
[120/445] Compiling SentrySwift SentryRRWebOptionsEvent.swift
[121/445] Compiling SentrySwift SentryRRWebSpanEvent.swift
[122/445] Compiling SentrySwift SentryRRWebTouchEvent.swift
[123/445] Compiling SentrySwift SentryRRWebVideoEvent.swift
[124/445] Compiling SentrySwift SentryOnDemandReplay.swift
[125/445] Compiling SentrySwift SentryOnDemandReplayError.swift
[126/445] Compiling SentrySwift SentryPixelBuffer.swift
[127/445] Compiling SentrySwift SentryRenderVideoResult.swift
[128/445] Compiling SentrySwift SentryReplayEvent.swift
[129/445] Compiling SentrySwift SentryReplayFrame.swift
[130/445] Compiling SentrySwift SentryReplayOptions.swift
[131/445] Compiling SentrySwift SentryReplayRecording.swift
[132/445] Compiling SentrySwift SentryReplayType.swift
[133/445] Compiling SentrySwift SentryReplayVideoMaker.swift
[134/445] Compiling SentrySwift SentrySRDefaultBreadcrumbConverter.swift
[135/445] Compiling SentrySwift SentrySessionReplay.swift
[136/445] Compiling SentrySwift SentrySessionReplayDelegate.swift
[137/445] Compiling SentrySwift SentrySessionReplayEnvironmentChecker.swift
[138/445] Compiling SentrySwift SentrySessionReplayEnvironmentCheckerProvider.swift
[139/445] Compiling SentrySwift SentryTouchTracker.swift
[140/445] Compiling SentrySwift SentryVideoFrameProcessor.swift
[141/445] Compiling SentrySwift SentryVideoInfo.swift
[142/445] Compiling SentrySwift SwiftAsyncIntegration.swift
[143/445] Compiling SentrySwift SentryUserFeedbackConfiguration.swift
[144/445] Compiling SentrySwift SentryRedactViewHelper.swift
[145/445] Compiling SentrySwift SentryScreenshotSource.swift
[146/445] Compiling SentrySwift SentryUIRedactBuilder.swift
[147/445] Compiling SentrySwift SentryViewPhotographer.swift
[148/445] Compiling SentrySwift SentryViewRenderer.swift
[149/445] Compiling SentrySwift SentryViewRendererV2.swift
[150/445] Compiling SentrySwift SentryViewScreenshotProvider.swift
[151/445] Compiling SentrySwift Exports.swift
[152/445] Compiling SentrySwift Dependencies.swift
[153/445] Compiling SentrySwift SentryInfoPlistError.swift
[154/445] Compiling SentrySwift SentryInfoPlistKey.swift
[155/445] Compiling SentrySwift SentryInfoPlistWrapper.swift
[156/445] Compiling SentrySwift SentryInfoPlistWrapperProvider.swift
[157/445] Compiling SentrySwift SentryXcodeVersion.swift
[158/445] Compiling SentrySwift SentryApplication.swift
[159/445] Compiling SentrySwift SentryApplicationExtensions.swift
[160/445] Compiling SentrySwift SentryDateUtil.swift
[161/445] Compiling SentrySwift SentryDefaultObjCRuntimeWrapper.swift
[162/445] Compiling SentrySwift SentryDispatchQueueWrapper.swift
[163/445] Compiling SentrySwift SentryDispatchSourceWrapper.swift
[164/445] Compiling SentrySwift SentryEnabledFeaturesBuilder.swift
[165/445] Compiling SentrySwift SentryReachability.swift
[166/445] Compiling SentrySwift Options.swift
[167/445] Compiling SentrySwift SentryScopePersistentStore+Context.swift
[168/445] Compiling SentrySwift SentryScopePersistentStore+Extras.swift
[169/445] Compiling SentrySwift SentryScopePersistentStore+Fingerprint.swift
[170/445] Compiling SentrySwift SentryScopePersistentStore+Helper.swift
[171/445] Compiling SentrySwift SentryScopePersistentStore+String.swift
[172/445] Compiling SentrySwift SentryScopePersistentStore+Tags.swift
[173/445] Compiling SentrySwift SentryScopePersistentStore+User.swift
[174/445] Compiling SentrySwift SentryScopePersistentStore.swift
[175/445] Compiling SentrySwift DecodeArbitraryData.swift
[176/445] Compiling SentrySwift NSNumberDecodableWrapper.swift
[177/445] Compiling SentrySwift SentryBreadcrumbCodable.swift
[178/445] Compiling SentrySwift SentryCodable.swift
[179/445] Compiling SentrySwift SentryDebugMetaCodable.swift
[180/445] Compiling SentrySwift SentryEventCodable.swift
[181/445] Compiling SentrySwift SentryEventDecoder.swift
[182/445] Compiling SentrySwift SentryExceptionCodable.swift
[183/445] Compiling SentrySwift SentryFrameCodable.swift
[184/445] Compiling SentrySwift SentryGeoCodable.swift
[185/445] Compiling SentrySwift SentryEnvelopeItemType.swift
[186/445] Compiling SentrySwift SentryExtensionDetector.swift
[187/445] Compiling SentrySwift SentryExtensionType.swift
[188/445] Compiling SentrySwift SentryExtraContextProvider.swift
[189/445] Compiling SentrySwift SentryFileManager.swift
[190/445] Compiling SentrySwift SentryIconography.swift
[191/445] Compiling SentrySwift SentryMigrateSessionInit.swift
[192/445] Compiling SentrySwift SentryMobileProvisionParser.swift
[193/445] Compiling SentrySwift SentryNSNotificationCenterWrapper.swift
[194/445] Compiling SentrySwift SentryNSTimerFactory.swift
[195/445] Compiling SentrySwift SentryObjCRuntimeWrapper.swift
[196/445] Compiling SentrySwift SentryProcessInfo.swift
[197/445] Compiling SentrySwift SentryRandom.swift
[198/445] Compiling SentrySwift SentrySDK.swift
[199/445] Compiling SentrySwift SentrySdkInfo.swift
[200/445] Compiling SentrySwift SentrySdkPackage.swift
[201/445] Compiling SentrySwift SentrySerializationSwift.swift
[202/445] Compiling SentrySwift SentrySwizzleWrapper.swift
[203/445] Compiling SentrySwift SentrySysctl.swift
[204/445] Compiling SentrySwift SentryThreadWrapper.swift
[205/445] Compiling SentrySwift ThreadSafeApplication.swift
[206/445] Compiling SentrySwift SentryThreadInspector.swift
[207/445] Compiling SentrySwift SentryDependencyContainer.swift
[208/445] Compiling SentrySwift SentryDsn.swift
[209/445] Compiling SentrySwift SentryExperimentalOptions.swift
[210/445] Compiling SentrySwift SentryHub.swift
[211/445] Compiling SentrySwift SentrySession.swift
[212/445] Compiling SentrySwift SentryScopeObserver.swift
[213/445] Compiling SentrySwift LoadValidator.swift
[214/445] Compiling SentrySwift SentryClientReport.swift
[215/445] Compiling SentrySwift SentryDiscardedEvent.swift
[216/445] Compiling SentrySwift SentryDispatchFactory.swift
[217/445] Compiling SentrySwift SentryEnvelope.swift
[218/445] Compiling SentrySwift SentryEnvelopeHeader.swift
[219/445] Compiling SentrySwift SentryEnvelopeItem.swift
[220/445] Compiling SentrySwift SentryLogBatcher.swift
[221/445] Compiling SentrySwift SentryLogger.swift
[222/445] Compiling SentrySwift SentrySDKLog+Configure.swift
[223/445] Compiling SentrySwift SentryURLRequestFactory.swift
[224/445] Compiling SentrySwift SentryViewHierarchyProvider.swift
[225/445] Compiling SentrySwift SentryMeasurementValue.swift
error: verify-emitted-module-interface command failed with exit code 1 (use -v to see invocation)
/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/SentrySwift.swiftinterface:14:19: error: no such module 'SentryHeaders'
12 | import Network
13 | import ObjectiveC
14 | @_exported import SentryHeaders
| `- error: no such module 'SentryHeaders'
15 | import Swift
16 | import _Concurrency
/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/SentrySwift.swiftinterface:1:1: error: failed to verify module interface of 'SentrySwift' due to the errors above; the textual interface may be broken by project issues or a compiler bug
1 | // swift-interface-format-version: 1.0
| `- error: failed to verify module interface of 'SentrySwift' due to the errors above; the textual interface may be broken by project issues or a compiler bug
2 | // swift-compiler-version: Apple Swift version 6.1 effective-5.10 (swiftlang-6.1.0.110.21 clang-1700.0.13.3)
3 | // swift-module-flags: -target arm64-apple-macosx10.14 -enable-objc-interop -enable-library-evolution -swift-version 5 -Onone -module-name SentrySwift -package-name spi_builder_workspace
BUILD FAILURE 6.1 macosSpm