The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of RevenueCat, reference main (9f2249), with Swift 6.2 (beta) for macOS (SPM) on 27 Jun 2025 17:11:25 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'Sendable' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'Sendable'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Diagnostics/Networking/DiagnosticsSynchronizer.swift:100:36: warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
 22 |
 23 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
 24 | actor DiagnosticsSynchronizer: DiagnosticsSynchronizerType {
    |       `- note: conformance to 'SendableMetatype' generated by macro  here
 25 |
 26 |     private let internalAPI: InternalAPI
    :
 98 |
 99 | @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
100 | extension DiagnosticsSynchronizer: DiagnosticsFileHandlerDelegate {
    |                                    `- warning: redundant conformance of 'DiagnosticsSynchronizer' to protocol 'SendableMetatype'
101 |
102 |     func onFileSizeIncreasedBeyondAutomaticSyncLimit() async {
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/PurchasesError.swift:136:13: warning: switch must be exhaustive
134 |         } else if let storeKitError = error as? StoreKitError {
135 |             let resultMap: [String: Any] = ["description": storeKitError.trackingDescription]
136 |             switch storeKitError {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.unsupported'
137 |             case .unknown,
138 |                     .userCancelled,
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:21:9: warning: switch must be exhaustive
 19 |
 20 |     var asPurchasesError: PurchasesError {
 21 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 22 |         case .userCancelled:
 23 |             return ErrorUtils.purchaseCancelledError(error: self)
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/Error Handling/StoreKitError+Extensions.swift:51:9: warning: switch must be exhaustive
 49 |
 50 |     var trackingDescription: String {
 51 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.unsupported'
 52 |         case .unknown:
 53 |             return "unknown"
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:172:24: warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
170 |         var asyncIterator = self.makeAsyncIterator()
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
    |                        `- warning: capture of non-sendable type 'Self.AsyncIterator.Type' in an isolated closure
173 |         }
174 |     }
/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/FoundationExtensions/AsyncExtensions.swift:170:13: warning: capture of non-sendable type 'Self.Type' in an isolated closure
168 |
169 |     func toAsyncStream() -> AsyncStream<Element> {
170 |         var asyncIterator = self.makeAsyncIterator()
    |             `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
171 |         return AsyncStream<Element> {
172 |             try? await asyncIterator.next()
[300/762] Compiling RevenueCat FileHandler.swift
[301/762] Compiling RevenueCat DiagnosticsEventsRequest.swift
[302/762] Compiling RevenueCat DiagnosticsHTTPRequestPath.swift
[303/762] Compiling RevenueCat DiagnosticsPostOperation.swift
[329/762] Compiling RevenueCat CustomerInfoCallback.swift
[330/762] Compiling RevenueCat LogInCallback.swift
[331/762] Compiling RevenueCat OfferingsCallback.swift
[332/762] Compiling RevenueCat ProductEntitlementMappingCallback.swift
[333/762] Compiling RevenueCat WebProductsCallback.swift
[334/762] Compiling RevenueCat CustomerAPI.swift
[335/762] Compiling RevenueCat CustomerCenterConfigAPI.swift
[336/762] Compiling RevenueCat DNSChecker.swift
[337/762] Compiling RevenueCat ETagManager.swift
[338/762] Compiling RevenueCat ErrorResponse.swift
[339/762] Compiling RevenueCat HTTPClient.swift
[340/762] Compiling RevenueCat HTTPRequest.swift
[341/762] Compiling RevenueCat HTTPRequestBody.swift
[342/762] Compiling RevenueCat HTTPRequestPath.swift
[343/762] Compiling RevenueCat HTTPResponse.swift
[344/762] Compiling RevenueCat HTTPResponseBody.swift
[345/762] Compiling RevenueCat HTTPStatusCode.swift
[346/762] Compiling RevenueCat NetworkError.swift
[347/762] Compiling RevenueCat RedirectLoggerTaskDelegate.swift
[348/762] Compiling RevenueCat IdentityAPI.swift
[349/762] Compiling RevenueCat InternalAPI.swift
[350/762] Compiling RevenueCat OfferingsAPI.swift
[351/762] Compiling RevenueCat OfflineEntitlementsAPI.swift
[352/762] Compiling RevenueCat GetCustomerCenterConfigOperation.swift
[353/762] Compiling RevenueCat GetCustomerInfoOperation.swift
[354/762] Compiling RevenueCat Clock.swift
[355/762] Compiling RevenueCat DateExtensions.swift
[356/762] Compiling RevenueCat DateProvider.swift
[357/762] Compiling RevenueCat ISODurationFormatter.swift
[358/762] Compiling RevenueCat ISOPeriodFormatter.swift
[359/762] Compiling RevenueCat TimingUtil.swift
[360/762] Compiling RevenueCat Deprecations.swift
[361/762] Compiling RevenueCat Either.swift
[362/762] Compiling RevenueCat PreferredLocalesProvider.swift
[363/762] Compiling RevenueCat MacDevice.swift
[364/762] Compiling RevenueCat MapAppStoreDetector.swift
[365/762] Compiling RevenueCat Obsoletions.swift
[366/762] Compiling RevenueCat PlatformInfo.swift
[367/762] Compiling RevenueCat PriceFormatterProvider.swift
[368/762] Compiling RevenueCat RateLimiter.swift
[369/762] Compiling RevenueCat SandboxEnvironmentDetector.swift
[370/762] Compiling RevenueCat StoreKitVersion.swift
[371/762] Compiling RevenueCat SystemInfo.swift
[372/762] Compiling RevenueCat Backend.swift
[373/762] Compiling RevenueCat BackendConfiguration.swift
[374/762] Compiling RevenueCat CacheFetchPolicy.swift
[375/762] Compiling RevenueCat CallbackCache.swift
[376/762] Compiling RevenueCat CallbackCacheStatus.swift
[377/762] Compiling RevenueCat CustomerCenterConfigCallback.swift
[427/762] Compiling RevenueCat_CustomEntitlementComputation StoreEnvironment.swift
[428/762] Compiling RevenueCat_CustomEntitlementComputation StoreKitWorkarounds.swift
[429/762] Compiling RevenueCat_CustomEntitlementComputation StoreProduct.swift
[430/762] Compiling RevenueCat_CustomEntitlementComputation StoreProductDiscount.swift
[431/762] Compiling RevenueCat_CustomEntitlementComputation StoreTransaction.swift
[432/762] Compiling RevenueCat_CustomEntitlementComputation Storefront.swift
[433/762] Compiling RevenueCat_CustomEntitlementComputation StorefrontProvider.swift
[434/762] Compiling RevenueCat_CustomEntitlementComputation SubscriptionPeriod.swift
[435/762] Compiling RevenueCat_CustomEntitlementComputation TestStoreProduct.swift
[436/762] Compiling RevenueCat_CustomEntitlementComputation TestStoreProductDiscount.swift
[437/762] Compiling RevenueCat_CustomEntitlementComputation WinBackOffer.swift
[438/762] Compiling RevenueCat_CustomEntitlementComputation TransactionsFactory.swift
[439/762] Compiling RevenueCat_CustomEntitlementComputation TransactionsManager.swift
[440/762] Compiling RevenueCat_CustomEntitlementComputation TrialOrIntroPriceEligibilityChecker.swift
[441/762] Compiling RevenueCat_CustomEntitlementComputation FakeSigning.swift
[442/762] Compiling RevenueCat_CustomEntitlementComputation HTTPRequest+Signing.swift
[443/762] Compiling RevenueCat_CustomEntitlementComputation HTTPRequestBody+Signing.swift
[444/762] Compiling RevenueCat_CustomEntitlementComputation Signing+ResponseVerification.swift
[445/762] Compiling RevenueCat_CustomEntitlementComputation Signing.swift
[446/762] Compiling RevenueCat_CustomEntitlementComputation VerificationResult.swift
[447/762] Compiling RevenueCat_CustomEntitlementComputation AttributionDataMigrator.swift
[448/762] Compiling RevenueCat_CustomEntitlementComputation AttributionKey.swift
[449/762] Compiling RevenueCat_CustomEntitlementComputation ReservedSubscriberAttributes.swift
[450/762] Compiling RevenueCat_CustomEntitlementComputation SubscriberAttribute.swift
[451/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit1Wrapper.swift
[454/762] Compiling RevenueCat_CustomEntitlementComputation StoreKitRequestFetcher.swift
[456/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit2ObserverModePurchaseDetector.swift
[458/762] Compiling RevenueCat_CustomEntitlementComputation ProductsFetcherSK2.swift
[459/762] Compiling RevenueCat_CustomEntitlementComputation SK2AppTransaction.swift
[461/762] Compiling RevenueCat_CustomEntitlementComputation SK2BeginRefundRequestHelper.swift
[463/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit2PurchaseIntentListener.swift
[466/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit2Receipt.swift
[468/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit2StorefrontListener.swift
[471/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit2TransactionFetcher.swift
[473/762] Compiling RevenueCat_CustomEntitlementComputation StoreKit2TransactionListener.swift
[474/762] Compiling RevenueCat_CustomEntitlementComputation WinBackOfferEligibilityCalculator.swift
[476/762] Compiling RevenueCat_CustomEntitlementComputation WinBackOfferEligibilityCalculatorType.swift
[478/762] Compiling RevenueCat_CustomEntitlementComputation EncodedAppleReceipt.swift
[480/762] Compiling RevenueCat_CustomEntitlementComputation ProductType.swift
[483/762] Compiling RevenueCat_CustomEntitlementComputation PromotionalOffer.swift
[485/762] Compiling RevenueCat_CustomEntitlementComputation SK1StoreProduct.swift
[488/762] Compiling RevenueCat_CustomEntitlementComputation SK1StoreProductDiscount.swift
[490/762] Compiling RevenueCat_CustomEntitlementComputation SK1StoreTransaction.swift
[491/762] Compiling RevenueCat_CustomEntitlementComputation SK1Storefront.swift
[493/762] Compiling RevenueCat_CustomEntitlementComputation SK2StoreProduct.swift
[495/762] Compiling RevenueCat_CustomEntitlementComputation SK2StoreProductDiscount.swift
[496/762] Compiling RevenueCat_CustomEntitlementComputation SK2StoreTransaction.swift
[498/762] Compiling RevenueCat_CustomEntitlementComputation SK2Storefront.swift
[523/762] Compiling RevenueCat UIConfig.swift
[524/762] Compiling RevenueCat WebProductsResponse.swift
[525/762] Compiling RevenueCat WebBillingHTTPRequestPath.swift
[526/762] Compiling RevenueCat CustomerInfo+OfflineEntitlements.swift
[527/762] Compiling RevenueCat OfflineCustomerInfoCreator.swift
[528/762] Compiling RevenueCat OfflineEntitlementsManager.swift
[529/762] Compiling RevenueCat ProductEntitlementMapping.swift
[530/762] Compiling RevenueCat ProductEntitlementMappingFetcher.swift
[531/762] Compiling RevenueCat PurchasedProductsFetcher.swift
[532/762] Compiling RevenueCat PurchasedSK2Product.swift
[533/762] Compiling RevenueCat Background.swift
[534/762] Compiling RevenueCat Border.swift
[535/762] Compiling RevenueCat ComponentOverrides.swift
[536/762] Compiling RevenueCat Dimension.swift
[537/762] Compiling RevenueCat PaywallComponentBase.swift
[538/762] Compiling RevenueCat PaywallComponentLocalization.swift
[539/762] Compiling RevenueCat PaywallComponentPropertyTypes.swift
[540/762] Compiling RevenueCat PaywallButtonComponent.swift
[541/762] Compiling RevenueCat PaywallCarouselComponent.swift
[542/762] Compiling RevenueCat PaywallIconComponent.swift
[543/762] Compiling RevenueCat PaywallImageComponent.swift
[544/762] Compiling RevenueCat PaywallPackageComponent.swift
[545/762] Compiling RevenueCat PaywallPurchaseButtonComponent.swift
[546/762] Compiling RevenueCat PaywallStackComponent.swift
[547/762] Compiling RevenueCat GetIntroEligibilityOperation.swift
[548/762] Compiling RevenueCat GetOfferingsOperation.swift
[549/762] Compiling RevenueCat GetProductEntitlementMappingOperation.swift
[550/762] Compiling RevenueCat GetWebProductsOperation.swift
[551/762] Compiling RevenueCat CustomerInfoResponseHandler.swift
[552/762] Compiling RevenueCat HealthOperation.swift
[553/762] Compiling RevenueCat HealthReportOperation.swift
[554/762] Compiling RevenueCat LogInOperation.swift
[555/762] Compiling RevenueCat NetworkOperation.swift
[556/762] Compiling RevenueCat PostAdServicesTokenOperation.swift
[557/762] Compiling RevenueCat PostAttributionDataOperation.swift
[558/762] Compiling RevenueCat PostOfferForSigningOperation.swift
[559/762] Compiling RevenueCat PostReceiptDataOperation.swift
[560/762] Compiling RevenueCat PostRedeemWebPurchaseOperation.swift
[561/762] Compiling RevenueCat PostSubscriberAttributesOperation.swift
[562/762] Compiling RevenueCat RedeemWebPurchaseAPI.swift
[563/762] Compiling RevenueCat CustomerCenterConfigResponse.swift
[564/762] Compiling RevenueCat CustomerInfoResponse.swift
[565/762] Compiling RevenueCat GetIntroEligibilityResponse.swift
[566/762] Compiling RevenueCat HealthReportResponse.swift
[567/762] Compiling RevenueCat OfferingsResponse.swift
[568/762] Compiling RevenueCat PostOfferResponse.swift
[569/762] Compiling RevenueCat ProductEntitlementMappingResponse.swift
[570/762] Compiling RevenueCat PaywallComponentsData.swift
[619/762] Compiling RevenueCat NonSubscriptionTransaction.swift
[620/762] Compiling RevenueCat Offering.swift
[621/762] Compiling RevenueCat Offerings.swift
[622/762] Compiling RevenueCat OfferingsFactory.swift
[623/762] Compiling RevenueCat OfferingsManager.swift
[624/762] Compiling RevenueCat Package.swift
[625/762] Compiling RevenueCat PackageType.swift
[626/762] Compiling RevenueCat ProductRequestData+Initialization.swift
[627/762] Compiling RevenueCat ProductRequestData.swift
[628/762] Compiling RevenueCat ProductsManager.swift
[629/762] Compiling RevenueCat ProductsRequestFactory.swift
[630/762] Compiling RevenueCat PurchaseOwnershipType.swift
[631/762] Compiling RevenueCat Attribution.swift
[632/762] Compiling RevenueCat PurchaseParams.swift
[633/762] Compiling RevenueCat Purchases.swift
[634/762] Compiling RevenueCat PurchasesAreCompletedBy.swift
[635/762] Compiling RevenueCat PurchasesDelegate.swift
[636/762] Compiling RevenueCat PurchasesOrchestrator.swift
[637/762] Compiling RevenueCat PurchasesType.swift
[638/762] Compiling RevenueCat TransactionPoster.swift
[639/762] Compiling RevenueCat ReceiptFetcher.swift
[640/762] Compiling RevenueCat ReceiptRefreshPolicy.swift
[641/762] Compiling RevenueCat PaymentQueueWrapper.swift
[642/762] Compiling RevenueCat ProductsFetcherSK1.swift
[667/762] Compiling RevenueCat_CustomEntitlementComputation SubscriberAttributesManager.swift
[668/762] Compiling RevenueCat_CustomEntitlementComputation BeginRefundRequestHelper.swift
[669/762] Compiling RevenueCat_CustomEntitlementComputation DebugContentViews.swift
[670/762] Compiling RevenueCat_CustomEntitlementComputation DebugView.swift
[671/762] Compiling RevenueCat_CustomEntitlementComputation DebugViewController.swift
[672/762] Compiling RevenueCat_CustomEntitlementComputation DebugViewModel.swift
[673/762] Compiling RevenueCat_CustomEntitlementComputation DebugViewSheetPresentation.swift
[674/762] Compiling RevenueCat_CustomEntitlementComputation ProductStatus+Icon.swift
[675/762] Compiling RevenueCat_CustomEntitlementComputation SDKHealthCheckStatus+Icon.swift
[676/762] Compiling RevenueCat_CustomEntitlementComputation SDKHealthStatus+Icon.swift
[677/762] Compiling RevenueCat_CustomEntitlementComputation FrameworkDisambiguation.swift
[678/762] Compiling RevenueCat_CustomEntitlementComputation HealthReport+Validate.swift
[679/762] Compiling RevenueCat_CustomEntitlementComputation ManageSubscriptionsHelper.swift
[680/762] Compiling RevenueCat_CustomEntitlementComputation PaywallExtensions.swift
[681/762] Compiling RevenueCat_CustomEntitlementComputation PurchasesDiagnostics.swift
[682/762] Compiling RevenueCat_CustomEntitlementComputation SDKHealthError+CustomNSError.swift
[683/762] Compiling RevenueCat_CustomEntitlementComputation StoreMessageType.swift
[684/762] Compiling RevenueCat_CustomEntitlementComputation StoreMessagesHelper.swift
[685/762] Compiling RevenueCat_CustomEntitlementComputation SwiftVersionCheck.swift
[686/762] Compiling RevenueCat_CustomEntitlementComputation URL+WebPurchaseRedemption.swift
[687/762] Compiling RevenueCat_CustomEntitlementComputation WebPurchaseRedemption.swift
[688/762] Compiling RevenueCat_CustomEntitlementComputation WebPurchaseRedemptionHelper.swift
[689/762] Compiling RevenueCat_CustomEntitlementComputation WebPurchaseRedemptionResult.swift
[690/762] Compiling RevenueCat_CustomEntitlementComputation resource_bundle_accessor.swift
[715/762] Compiling RevenueCat PaywallStickyFooterComponent.swift
[716/762] Compiling RevenueCat PaywallTabsComponent.swift
[717/762] Compiling RevenueCat PaywallTextComponent.swift
[718/762] Compiling RevenueCat PaywallTimelineComponent.swift
[719/762] Compiling RevenueCat PaywallV2CacheWarming.swift
[720/762] Compiling RevenueCat EventsRequest+Paywall.swift
[721/762] Compiling RevenueCat PaywallHTTPRequestPath.swift
[722/762] Compiling RevenueCat PostPaywallEventsOperation.swift
[723/762] Compiling RevenueCat PaywallEvent.swift
[724/762] Compiling RevenueCat PaywallEventStore.swift
[725/762] Compiling RevenueCat PaywallEventsManager.swift
[726/762] Compiling RevenueCat PaywallCacheWarming.swift
[727/762] Compiling RevenueCat PaywallColor.swift
[728/762] Compiling RevenueCat PaywallData+Localization.swift
[729/762] Compiling RevenueCat PaywallData.swift
[730/762] Compiling RevenueCat PaywallFontManagerType.swift
[731/762] Compiling RevenueCat PaywallViewMode.swift
[732/762] Compiling RevenueCat CachingProductsManager.swift
[733/762] Compiling RevenueCat CachingTrialOrIntroPriceEligibilityChecker.swift
[734/762] Compiling RevenueCat Configuration.swift
[735/762] Compiling RevenueCat EntitlementInfo.swift
[736/762] Compiling RevenueCat EntitlementInfos.swift
[737/762] Compiling RevenueCat IntroEligibility.swift
[738/762] Compiling RevenueCat IntroEligibilityCalculator.swift
[763/964] Compiling RevenueCatUI CarouselComponentViewModel.swift
[764/964] Compiling RevenueCatUI ComponentsView.swift
[765/964] Compiling RevenueCatUI IconComponentView.swift
[766/964] Compiling RevenueCatUI IconComponentViewModel.swift
[767/964] Compiling RevenueCatUI ImageComponentView.swift
[768/964] Compiling RevenueCatUI ImageComponentViewModel.swift
[769/964] Compiling RevenueCatUI ComponentViewState.swift
[770/964] Compiling RevenueCatUI PackageComponentView.swift
[771/964] Compiling RevenueCatUI PackageComponentViewModel.swift
[772/964] Compiling RevenueCatUI PurchaseButtonComponentView.swift
[773/964] Compiling RevenueCatUI PurchaseButtonComponentViewModel.swift
[774/964] Compiling RevenueCatUI RootView.swift
[775/964] Compiling RevenueCatUI RootViewModel.swift
[776/964] Compiling RevenueCatUI FlexHStack.swift
[777/964] Compiling RevenueCatUI FlexVStack.swift
[778/964] Compiling RevenueCatUI JustifyContent.swift
[779/964] Compiling RevenueCatUI StackComponentView.swift
[780/964] Compiling RevenueCatUI StackComponentViewModel.swift
[781/964] Compiling RevenueCatUI StickyFooterComponentView.swift
[782/964] Compiling RevenueCatUI StickyFooterComponentViewModel.swift
[783/964] Compiling RevenueCatUI TabControlButtonComponentView.swift
[784/964] Compiling RevenueCatUI TabControlButtonComponentViewModel.swift
[785/986] Compiling RevenueCatUI PurchaseHistoryViewModel.swift
[786/986] Compiling RevenueCatUI PurchaseInformation+History.swift
[787/986] Compiling RevenueCatUI RelevantPurchasesListViewModel.swift
[788/986] Compiling RevenueCatUI RestorePurchasesAlertViewModel.swift
[789/986] Compiling RevenueCatUI SubscriptionDetailViewModel.swift
[790/986] Compiling RevenueCatUI ActiveSubscriptionButtonsView.swift
[791/986] Compiling RevenueCatUI AppUpdateWarningView.swift
[792/986] Compiling RevenueCatUI CompatibilityContentUnavailableView.swift
[793/986] Compiling RevenueCatUI CompatibilityLabeledContent.swift
[794/986] Compiling RevenueCatUI CompatibilityNavigationStack.swift
[795/986] Compiling RevenueCatUI CompatibilityTopBarTrailing.swift
[796/986] Compiling RevenueCatUI CustomerCenterNavigationLink.swift
[797/986] Compiling RevenueCatUI CustomerCenterNavigationOptions.swift
[798/986] Compiling RevenueCatUI CustomerCenterView.swift
[799/986] Compiling RevenueCatUI ErrorView.swift
[800/986] Compiling RevenueCatUI FallbackNoSubscriptionsView.swift
[801/986] Compiling RevenueCatUI FeedbackSurveyView.swift
[802/986] Compiling RevenueCatUI ManageSubscriptionsButtonsView.swift
[803/986] Compiling RevenueCatUI NoSubscriptionsCardView.swift
[804/986] Compiling RevenueCatUI PromotionalOfferView.swift
[805/986] Compiling RevenueCatUI PurchaseCardView.swift
[806/986] Compiling RevenueCatUI PurchaseDetailView.swift
[807/986] Compiling RevenueCatUI PurchaseHistoryView.swift
[808/986] Compiling RevenueCatUI Binding+Extensions.swift
[809/986] Compiling RevenueCatUI CustomerCenterPurchasesType.swift
[810/986] Compiling RevenueCatUI CustomerCenter+PreferenceKeys.swift
[811/986] Compiling RevenueCatUI CustomerCenterConfigData.HelpPath+PurchaseInformation.swift
[812/986] Compiling RevenueCatUI CustomerCenterView+Actions.swift
[813/986] Compiling RevenueCatUI ButtonStyles.swift
[814/986] Compiling RevenueCatUI ColorFromAppearance.swift
[815/986] Compiling RevenueCatUI ContactSupportUtilities.swift
[816/986] Compiling RevenueCatUI CustomerInfo+CurrentEntitlement.swift
[817/986] Compiling RevenueCatUI CustomerCenterAction.swift
[818/986] Compiling RevenueCatUI CustomerCenterActionViewModifier.swift
[819/986] Compiling RevenueCatUI CustomerCenterActionWrapper.swift
[820/986] Compiling RevenueCatUI CustomerCenterConfigData+Mock.swift
[821/986] Compiling RevenueCatUI CustomerCenterEnvironment.swift
[822/986] Compiling RevenueCatUI CustomerCenterError.swift
[823/986] Compiling RevenueCatUI CustomerCenterManagementOption.swift
[824/986] Compiling RevenueCatUI CustomerCenterPurchases.swift
[825/986] Compiling RevenueCatUI DiscountsHandler.swift
[826/986] Compiling RevenueCatUI EntitlementInfo+Extensions.swift
[827/986] Compiling RevenueCatUI FeedbackSurveyData.swift
[828/986] Compiling RevenueCatUI LoadPromotionalOfferUseCase.swift
[829/986] Compiling RevenueCatUI PromotionalOfferData.swift
[830/986] Compiling RevenueCatUI PurchaseInformation+Mock.swift
[831/986] Compiling RevenueCatUI RelevantPurchasesListView.swift
[832/986] Compiling RevenueCatUI RestorePurchasesAlert.swift
[833/986] Compiling RevenueCatUI ScrollViewSection.swift
[834/986] Compiling RevenueCatUI ScrollViewWithOSBackground.swift
[835/986] Compiling RevenueCatUI SubscriptionDetailView.swift
[836/986] Compiling RevenueCatUI TintedProgressView.swift
[837/986] Compiling RevenueCatUI CustomerCenterViewController.swift
[838/986] Compiling RevenueCatUI Constants.swift
[839/986] Compiling RevenueCatUI CustomerInfoFixtures.swift
[840/986] Compiling RevenueCatUI PaywallError.swift
[841/986] Compiling RevenueCatUI TemplateError.swift
[842/986] Compiling RevenueCatUI IntroEligibilityViewModel.swift
[843/986] Compiling RevenueCatUI TrialOrIntroEligibilityChecker+TestData.swift
[844/986] Compiling RevenueCatUI TrialOrIntroEligibilityChecker.swift
[845/986] Compiling RevenueCatUI Localization.swift
[846/986] Compiling RevenueCatUI LocalizedAlertError.swift
[847/986] Compiling RevenueCatUI PaywallData+Validation.swift
[848/986] Compiling RevenueCatUI PaywallTemplate.swift
[849/986] Compiling RevenueCatUI PaywallViewConfiguration.swift
[850/986] Compiling RevenueCatUI PaywallViewMode+Extensions.swift
[851/986] Compiling RevenueCatUI ProcessedLocalizedConfiguration.swift
[852/986] Compiling RevenueCatUI Strings.swift
[853/986] Emitting module RevenueCatUI
[854/986] Compiling RevenueCatUI MultiTierPreview.swift
[855/986] Compiling RevenueCatUI PurchaseButtonInPackagePreview.swift
[856/986] Compiling RevenueCatUI Template1Preview.swift
[857/986] Compiling RevenueCatUI VariableHandlerV2.swift
[858/986] Compiling RevenueCatUI BackgroundStyle.swift
[859/986] Compiling RevenueCatUI BadgeModifier.swift
[860/986] Compiling RevenueCatUI DisplayableColor.swift
[861/986] Compiling RevenueCatUI Fill.swift
[862/986] Compiling RevenueCatUI ForegroundColorScheme.swift
[863/986] Compiling RevenueCatUI NavigatetoURL.swift
[864/986] Compiling RevenueCatUI ProgressViewModifier.swift
[865/986] Compiling RevenueCatUI ShadowModifier.swift
[866/986] Compiling RevenueCatUI Shape.swift
[867/986] Compiling RevenueCatUI SizeModifier.swift
[868/986] Compiling RevenueCatUI LocalizationProvider.swift
[869/986] Compiling RevenueCatUI PackageValidator.swift
[870/986] Compiling RevenueCatUI PaywallComponentTypeTransformers.swift
[871/986] Compiling RevenueCatUI PaywallComponentViewModel.swift
[872/986] Compiling RevenueCatUI PresentedPartials.swift
[873/986] Compiling RevenueCatUI UIConfigProvider.swift
[874/986] Compiling RevenueCatUI ViewModelFactory.swift
[875/986] Compiling RevenueCatUI PaywallFooterViewController.swift
[876/986] Compiling RevenueCatUI TabControlComponentView.swift
[877/986] Compiling RevenueCatUI TabControlComponentViewModel.swift
[878/986] Compiling RevenueCatUI TabControlToggleComponentView.swift
[879/986] Compiling RevenueCatUI TabControlToggleComponentViewModel.swift
[880/986] Compiling RevenueCatUI TabsComponentView.swift
[881/986] Compiling RevenueCatUI TabsComponentViewModel.swift
[882/986] Compiling RevenueCatUI TextComponentView.swift
[883/986] Compiling RevenueCatUI TextComponentViewModel.swift
[884/986] Compiling RevenueCatUI TimelineComponentView.swift
[885/986] Compiling RevenueCatUI TimelineComponentViewModel.swift
[886/986] Compiling RevenueCatUI IntroOfferEligibilityContext.swift
[887/986] Compiling RevenueCatUI OpenSheet.swift
[888/986] Compiling RevenueCatUI PackageContext.swift
[889/986] Compiling RevenueCatUI ScreenCondition.swift
[890/986] Compiling RevenueCatUI LocaleExtensions.swift
[891/986] Compiling RevenueCatUI LocaleFinder.swift
[892/986] Compiling RevenueCatUI LocalizationDictionaryExtensions.swift
[893/986] Compiling RevenueCatUI PaywallsV2View.swift
[894/986] Compiling RevenueCatUI PreviewMock.swift
[895/986] Compiling RevenueCatUI ButtonWithFooterPreview.swift
[896/986] Compiling RevenueCatUI FallbackComponentPreview.swift
[897/986] Compiling RevenueCatUI FamilySharingTogglePreview.swift
[898/986] Compiling RevenueCatUI TemplateViewConfiguration+Extensions.swift
[899/986] Compiling RevenueCatUI TemplateViewConfiguration+Images.swift
[900/986] Compiling RevenueCatUI TemplateViewConfiguration.swift
[901/986] Compiling RevenueCatUI TestData.swift
[902/986] Compiling RevenueCatUI UserInterfaceIdiom.swift
[903/986] Compiling RevenueCatUI Variables.swift
[904/986] Compiling RevenueCatUI Bundle+Extensions.swift
[905/986] Compiling RevenueCatUI ColorInformation+MultiScheme.swift
[906/986] Compiling RevenueCatUI EmergeRenderingMode.swift
[907/986] Compiling RevenueCatUI ImageLoader.swift
[908/986] Compiling RevenueCatUI Logger.swift
[909/986] Compiling RevenueCatUI Optional+Extensions.swift
[910/986] Compiling RevenueCatUI Package+VariableDataProvider.swift
[911/986] Compiling RevenueCatUI PaywallData+Default.swift
[912/986] Compiling RevenueCatUI PreviewHelpers.swift
[913/986] Compiling RevenueCatUI RuntimeUtils.swift
[914/986] Compiling RevenueCatUI StoreProduct+Extensions.swift
[915/986] Compiling RevenueCatUI StoreProductDiscount+Extensions.swift
[916/986] Compiling RevenueCatUI SubscriptionPeriod+Extensions.swift
[917/986] Compiling RevenueCatUI TemplateView+MultiTier.swift
[918/986] Compiling RevenueCatUI VersionDetector.swift
[919/986] Compiling RevenueCatUI ConsistentPackageContentView.swift
[920/986] Compiling RevenueCatUI PaywallViewController.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[921/986] Compiling RevenueCatUI View+OnRedeemWebPurchaseAttempt.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[922/986] Compiling RevenueCatUI View+PresentPaywall.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[923/986] Compiling RevenueCatUI View+PresentPaywallFooter.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[924/986] Compiling RevenueCatUI View+PurchaseRestoreCompleted.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[925/986] Compiling RevenueCatUI AsyncButton.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[926/986] Compiling RevenueCatUI DebugErrorView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[927/986] Compiling RevenueCatUI ErrorDisplay.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[928/986] Compiling RevenueCatUI FooterView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[929/986] Compiling RevenueCatUI GradientView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[930/986] Compiling RevenueCatUI IconView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[931/986] Compiling RevenueCatUI IntroEligibilityStateView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[932/986] Compiling RevenueCatUI LoadingPaywallView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[933/986] Compiling RevenueCatUI PackageButtonStyle.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[934/986] Compiling RevenueCatUI ProgressView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[935/986] Compiling RevenueCatUI PurchaseButton.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[936/986] Compiling RevenueCatUI RemoteImage.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[937/986] Compiling RevenueCatUI SafariView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[938/986] Compiling RevenueCatUI TemplateBackgroundImageView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[939/986] Compiling RevenueCatUI TemplatePackageSetting.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[940/986] Compiling RevenueCatUI TierSelectorView.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[941/986] Compiling RevenueCatUI resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:41:31: warning: capture of non-sendable type 'Label.Type' in an isolated closure
39 |             Task<Void, Never> {
40 |                 do {
41 |                     try await self.action()
   |                               `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
42 |                 } catch let error as NSError {
43 |                     self.error = error
/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Views/AsyncButton.swift:37:25: warning: capture of non-sendable type 'Label.Type' in an isolated closure
35 |     }
36 |
37 |     var body: some View {
   |                         `- warning: capture of non-sendable type 'Label.Type' in an isolated closure
38 |         Button {
39 |             Task<Void, Never> {
[942/986] Compiling RevenueCatUI PurchaseInformation.swift
[943/986] Compiling RevenueCatUI SemanticVersion.swift
[944/986] Compiling RevenueCatUI Transaction.swift
[945/986] Compiling RevenueCatUI CustomerCenterConfigDataSupport+URL.swift
[946/986] Compiling RevenueCatUI CustomerInfo+SeeAllPurchases.swift
[947/986] Compiling RevenueCatUI PurchaseInformation+Creation.swift
[948/986] Compiling RevenueCatUI MockCustomerCenterPurchases.swift
[949/986] Compiling RevenueCatUI MockCustomerCenterStoreKitUtilities.swift
[950/986] Compiling RevenueCatUI MockLoadPromotionalOfferUseCase.swift
[951/986] Compiling RevenueCatUI PurchaseInformationFixtures.swift
[952/986] Compiling RevenueCatUI URLUtilities.swift
[953/986] Compiling RevenueCatUI CustomerCenterLocalizationStrings.swift
[954/986] Compiling RevenueCatUI CustomerCenterStoreKitUtilities.swift
[955/986] Compiling RevenueCatUI CustomerCenterStoreKitUtilitiesType.swift
[956/986] Compiling RevenueCatUI IdentifiableURL.swift
[957/986] Compiling RevenueCatUI View+PresentCustomerCenter.swift
[958/986] Compiling RevenueCatUI BaseManageSubscriptionViewModel.swift
[959/986] Compiling RevenueCatUI CustomerCenterViewModel.swift
[960/986] Compiling RevenueCatUI CustomerCenterViewState.swift
[961/986] Compiling RevenueCatUI FeedbackSurveyViewModel.swift
[962/986] Compiling RevenueCatUI PromotionalOfferViewModel.swift
[963/986] Compiling RevenueCatUI PurchaseDetailItem.swift
[964/986] Compiling RevenueCatUI PurchaseDetailViewModel.swift
[965/986] Compiling RevenueCatUI ConsistentTierContentView.swift
[966/986] Compiling RevenueCatUI FitToAspectRatio.swift
[967/986] Compiling RevenueCatUI FooterHidingModifier.swift
[968/986] Compiling RevenueCatUI ViewExtensions.swift
[969/986] Compiling RevenueCatUI PaywallFontProvider.swift
[970/986] Compiling RevenueCatUI PaywallView.swift
[971/986] Compiling RevenueCatUI MockPurchases.swift
[972/986] Compiling RevenueCatUI PaywallPurchasesType.swift
[973/986] Compiling RevenueCatUI PurchaseHandler+TestData.swift
[974/986] Compiling RevenueCatUI PurchaseHandler.swift
[975/986] Compiling RevenueCatUI WatchTemplateView.swift
[976/986] Compiling RevenueCatUI Template1View.swift
[977/986] Compiling RevenueCatUI Template2View.swift
[978/986] Compiling RevenueCatUI Template3View.swift
[979/986] Compiling RevenueCatUI Template4View.swift
[980/986] Compiling RevenueCatUI Template5View.swift
[981/986] Compiling RevenueCatUI Template7View.swift
[982/986] Compiling RevenueCatUI TemplateViewType.swift
[983/986] Compiling RevenueCatUI BottomSheetView.swift
[984/986] Compiling RevenueCatUI ButtonComponentView.swift
[985/986] Compiling RevenueCatUI ButtonComponentViewModel.swift
[986/986] Compiling RevenueCatUI CarouselComponentView.swift
Build complete! (36.41s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/14051] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (2.53s)
Fetching https://github.com/quick/nimble
[1/19584] Fetching nimble
Fetched https://github.com/quick/nimble from cache (1.65s)
Computing version for https://github.com/quick/nimble
Computed https://github.com/quick/nimble at 13.7.1 (2.11s)
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.84s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (1.37s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.72s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (1.24s)
Creating working copy for https://github.com/quick/nimble
Working copy of https://github.com/quick/nimble resolved at 13.7.1
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 26ed3a2b4a2df47917ca9b790a57f91285b923fb
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/Tests/RevenueCatUITests/Templates/__Snapshots__': File not found.
warning: 'spi-builder-workspace': ignoring broken symlink /Users/admin/builder/spi-builder-workspace/Tests/RevenueCatUITests/PaywallsV2/__PreviewResources__
warning: 'spi-builder-workspace': Invalid Resource 'PaywallsV2/__PreviewResources__': File not found.
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/RevenueCatUI/RevenueCatUIDev.xctestplan
warning: 'nimble': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/nimble/Sources/Nimble/PrivacyInfo.xcprivacy
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "nimble",
      "requirement" : {
        "exact" : [
          "13.7.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/quick/nimble"
    },
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "revision" : [
          "26ed3a2b4a2df47917ca9b790a57f91285b923fb"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing"
    }
  ],
  "manifest_display_name" : "RevenueCat",
  "name" : "RevenueCat",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.2"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "RevenueCat",
      "targets" : [
        "RevenueCat"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RevenueCat_CustomEntitlementComputation",
      "targets" : [
        "RevenueCat_CustomEntitlementComputation"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ReceiptParser",
      "targets" : [
        "ReceiptParser"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RevenueCatUI",
      "targets" : [
        "RevenueCatUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RevenueCat_CustomEntitlementComputation",
      "module_type" : "SwiftTarget",
      "name" : "RevenueCat_CustomEntitlementComputation",
      "path" : "CustomEntitlementComputation",
      "product_memberships" : [
        "RevenueCat_CustomEntitlementComputation"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/CustomEntitlementComputation/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Attribution/ASIdManagerProxy.swift",
        "Attribution/AttributionData.swift",
        "Attribution/AttributionFetcher.swift",
        "Attribution/AttributionNetwork.swift",
        "Attribution/AttributionPoster.swift",
        "Attribution/AttributionTypeFactory.swift",
        "Attribution/TrackingManagerProxy.swift",
        "Caching/CacheStatus.swift",
        "Caching/DeviceCache.swift",
        "Caching/InMemoryCachedObject.swift",
        "CodableExtensions/PeriodType+Extensions.swift",
        "CodableExtensions/PurchaseOwnershipType+Extensions.swift",
        "CodableExtensions/Store+Extensions.swift",
        "CustomerCenter/CustomerCenterConfigData.swift",
        "CustomerCenter/CustomerCenterPresentationMode.swift",
        "CustomerCenter/Events/CustomerCenterEvent.swift",
        "CustomerCenter/Events/EventsRequest+CustomerCenter.swift",
        "DeepLink/DeepLinkParser.swift",
        "Diagnostics/DiagnosticsEvent.swift",
        "Diagnostics/DiagnosticsFileHandler.swift",
        "Diagnostics/DiagnosticsTracker.swift",
        "Diagnostics/FileHandler.swift",
        "Diagnostics/Networking/DiagnosticsEventsRequest.swift",
        "Diagnostics/Networking/DiagnosticsHTTPRequestPath.swift",
        "Diagnostics/Networking/DiagnosticsPostOperation.swift",
        "Diagnostics/Networking/DiagnosticsSynchronizer.swift",
        "DocCDocumentation/EmptyFile.swift",
        "Error Handling/Assertions.swift",
        "Error Handling/BackendError.swift",
        "Error Handling/BackendErrorCode.swift",
        "Error Handling/DescribableError.swift",
        "Error Handling/ErrorCode.swift",
        "Error Handling/ErrorDetails.swift",
        "Error Handling/ErrorUtils.swift",
        "Error Handling/PurchasesError.swift",
        "Error Handling/SKError+Extensions.swift",
        "Error Handling/StoreKitError+Extensions.swift",
        "Error Handling/StoreKitErrorHelper.swift",
        "Events/FeatureEvent.swift",
        "Events/Networking/EventsRequest.swift",
        "Events/StoredEvent.swift",
        "Events/StoredEventSerializer.swift",
        "FoundationExtensions/Array+Extensions.swift",
        "FoundationExtensions/AsyncExtensions.swift",
        "FoundationExtensions/Data+Extensions.swift",
        "FoundationExtensions/Date+Extensions.swift",
        "FoundationExtensions/Decoder+Extensions.swift",
        "FoundationExtensions/Dictionary+Extensions.swift",
        "FoundationExtensions/DispatchTimeInterval+Extensions.swift",
        "FoundationExtensions/Error+Extensions.swift",
        "FoundationExtensions/Integer+Extensions.swift",
        "FoundationExtensions/Locale+Extensions.swift",
        "FoundationExtensions/OperationQueue+Extensions.swift",
        "FoundationExtensions/Operators+Extensions.swift",
        "FoundationExtensions/Optional+Extensions.swift",
        "FoundationExtensions/Result+Extensions.swift",
        "FoundationExtensions/Set+Extensions.swift",
        "FoundationExtensions/String+Extensions.swift",
        "FoundationExtensions/TimeInterval+Extensions.swift",
        "FoundationExtensions/UIApplication+RCExtensions.swift",
        "FoundationExtensions/UserDefaults+Extensions.swift",
        "Identity/CustomerInfo+ActiveDates.swift",
        "Identity/CustomerInfo+NonSubscriptions.swift",
        "Identity/CustomerInfo.swift",
        "Identity/CustomerInfoManager.swift",
        "Identity/IdentityManager.swift",
        "Identity/ProductPaidPrice.swift",
        "Identity/SubscriptionInfo.swift",
        "LocalReceiptParsing/BasicTypes/ASN1Container.swift",
        "LocalReceiptParsing/BasicTypes/ASN1ObjectIdentifier.swift",
        "LocalReceiptParsing/BasicTypes/AppleReceipt.swift",
        "LocalReceiptParsing/BasicTypes/InAppPurchase.swift",
        "LocalReceiptParsing/Builders/ASN1ContainerBuilder.swift",
        "LocalReceiptParsing/Builders/ASN1ObjectIdentifierBuilder.swift",
        "LocalReceiptParsing/Builders/AppleReceiptBuilder.swift",
        "LocalReceiptParsing/Builders/InAppPurchaseBuilder.swift",
        "LocalReceiptParsing/DataConverters/ArraySlice_UInt8+Extensions.swift",
        "LocalReceiptParsing/DataConverters/Codable+Extensions.swift",
        "LocalReceiptParsing/DataConverters/DateFormatter+Extensions.swift",
        "LocalReceiptParsing/DataConverters/UInt8+Extensions.swift",
        "LocalReceiptParsing/Helpers/FileReader.swift",
        "LocalReceiptParsing/Helpers/LoggerType.swift",
        "LocalReceiptParsing/Helpers/ProcessInfo+Extensions.swift",
        "LocalReceiptParsing/Helpers/ReceiptParserLogger.swift",
        "LocalReceiptParsing/Helpers/ReceiptStrings.swift",
        "LocalReceiptParsing/LocalReceiptFetcher.swift",
        "LocalReceiptParsing/PurchasesReceiptParser.swift",
        "LocalReceiptParsing/ReceiptParsingError.swift",
        "Logging/LogIntent.swift",
        "Logging/Logger.swift",
        "Logging/Strings/AnalyticsStrings.swift",
        "Logging/Strings/AttributionStrings.swift",
        "Logging/Strings/BackendErrorStrings.swift",
        "Logging/Strings/CodableStrings.swift",
        "Logging/Strings/ConfigureStrings.swift",
        "Logging/Strings/CustomerInfoStrings.swift",
        "Logging/Strings/DiagnosticsStrings.swift",
        "Logging/Strings/ETagStrings.swift",
        "Logging/Strings/EligibilityStrings.swift",
        "Logging/Strings/IdentityStrings.swift",
        "Logging/Strings/ManageSubscriptionsStrings.swift",
        "Logging/Strings/NetworkStrings.swift",
        "Logging/Strings/OfferingStrings.swift",
        "Logging/Strings/OfflineEntitlementsStrings.swift",
        "Logging/Strings/PaywallsStrings.swift",
        "Logging/Strings/PurchaseStrings.swift",
        "Logging/Strings/SigningStrings.swift",
        "Logging/Strings/StoreKitStrings.swift",
        "Logging/Strings/Strings.swift",
        "Logging/Strings/WebRedemptionStrings.swift",
        "Misc/Box.swift",
        "Misc/Codable/AnyDecodable.swift",
        "Misc/Codable/AnyEncodable.swift",
        "Misc/Codable/DefaultDecodable.swift",
        "Misc/Codable/EnsureNonEmptyCollectionDecodable.swift",
        "Misc/Codable/IgnoreHashable.swift",
        "Misc/Codable/NonEmptyStringDecodable.swift",
        "Misc/Codable/RawDataContainer.swift",
        "Misc/Concurrency/Atomic.swift",
        "Misc/Concurrency/Lock.swift",
        "Misc/Concurrency/OperationDispatcher.swift",
        "Misc/Concurrency/Purchases+async.swift",
        "Misc/Concurrency/Purchases+nonasync.swift",
        "Misc/Concurrency/SynchronizedUserDefaults.swift",
        "Misc/DangerousSettings.swift",
        "Misc/DateAndTime/Clock.swift",
        "Misc/DateAndTime/DateExtensions.swift",
        "Misc/DateAndTime/DateProvider.swift",
        "Misc/DateAndTime/ISODurationFormatter.swift",
        "Misc/DateAndTime/ISOPeriodFormatter.swift",
        "Misc/DateAndTime/TimingUtil.swift",
        "Misc/Deprecations.swift",
        "Misc/Either.swift",
        "Misc/Locale/PreferredLocalesProvider.swift",
        "Misc/MacDevice.swift",
        "Misc/MapAppStoreDetector.swift",
        "Misc/Obsoletions.swift",
        "Misc/PlatformInfo.swift",
        "Misc/PriceFormatterProvider.swift",
        "Misc/RateLimiter.swift",
        "Misc/SandboxEnvironmentDetector.swift",
        "Misc/StoreKitVersion.swift",
        "Misc/SystemInfo.swift",
        "Networking/Backend.swift",
        "Networking/BackendConfiguration.swift",
        "Networking/Caching/CacheFetchPolicy.swift",
        "Networking/Caching/CallbackCache.swift",
        "Networking/Caching/CallbackCacheStatus.swift",
        "Networking/Caching/CustomerCenterConfigCallback.swift",
        "Networking/Caching/CustomerInfoCallback.swift",
        "Networking/Caching/LogInCallback.swift",
        "Networking/Caching/OfferingsCallback.swift",
        "Networking/Caching/ProductEntitlementMappingCallback.swift",
        "Networking/Caching/WebProductsCallback.swift",
        "Networking/CustomerAPI.swift",
        "Networking/CustomerCenterConfigAPI.swift",
        "Networking/HTTPClient/DNSChecker.swift",
        "Networking/HTTPClient/ETagManager.swift",
        "Networking/HTTPClient/ErrorResponse.swift",
        "Networking/HTTPClient/HTTPClient.swift",
        "Networking/HTTPClient/HTTPRequest.swift",
        "Networking/HTTPClient/HTTPRequestBody.swift",
        "Networking/HTTPClient/HTTPRequestPath.swift",
        "Networking/HTTPClient/HTTPResponse.swift",
        "Networking/HTTPClient/HTTPResponseBody.swift",
        "Networking/HTTPClient/HTTPStatusCode.swift",
        "Networking/HTTPClient/NetworkError.swift",
        "Networking/HTTPClient/RedirectLoggerTaskDelegate.swift",
        "Networking/IdentityAPI.swift",
        "Networking/InternalAPI.swift",
        "Networking/OfferingsAPI.swift",
        "Networking/OfflineEntitlementsAPI.swift",
        "Networking/Operations/GetCustomerCenterConfigOperation.swift",
        "Networking/Operations/GetCustomerInfoOperation.swift",
        "Networking/Operations/GetIntroEligibilityOperation.swift",
        "Networking/Operations/GetOfferingsOperation.swift",
        "Networking/Operations/GetProductEntitlementMappingOperation.swift",
        "Networking/Operations/GetWebProductsOperation.swift",
        "Networking/Operations/Handling/CustomerInfoResponseHandler.swift",
        "Networking/Operations/HealthOperation.swift",
        "Networking/Operations/HealthReportOperation.swift",
        "Networking/Operations/LogInOperation.swift",
        "Networking/Operations/NetworkOperation.swift",
        "Networking/Operations/PostAdServicesTokenOperation.swift",
        "Networking/Operations/PostAttributionDataOperation.swift",
        "Networking/Operations/PostOfferForSigningOperation.swift",
        "Networking/Operations/PostReceiptDataOperation.swift",
        "Networking/Operations/PostRedeemWebPurchaseOperation.swift",
        "Networking/Operations/PostSubscriberAttributesOperation.swift",
        "Networking/RedeemWebPurchaseAPI.swift",
        "Networking/Responses/CustomerCenterConfigResponse.swift",
        "Networking/Responses/CustomerInfoResponse.swift",
        "Networking/Responses/GetIntroEligibilityResponse.swift",
        "Networking/Responses/HealthReportResponse.swift",
        "Networking/Responses/OfferingsResponse.swift",
        "Networking/Responses/PostOfferResponse.swift",
        "Networking/Responses/ProductEntitlementMappingResponse.swift",
        "Networking/Responses/RevenueCatUI/PaywallComponentsData.swift",
        "Networking/Responses/RevenueCatUI/UIConfig.swift",
        "Networking/Responses/WebProductsResponse.swift",
        "Networking/WebBillingHTTPRequestPath.swift",
        "OfflineEntitlements/CustomerInfo+OfflineEntitlements.swift",
        "OfflineEntitlements/OfflineCustomerInfoCreator.swift",
        "OfflineEntitlements/OfflineEntitlementsManager.swift",
        "OfflineEntitlements/ProductEntitlementMapping.swift",
        "OfflineEntitlements/ProductEntitlementMappingFetcher.swift",
        "OfflineEntitlements/PurchasedProductsFetcher.swift",
        "OfflineEntitlements/PurchasedSK2Product.swift",
        "Paywalls/Components/Common/Background.swift",
        "Paywalls/Components/Common/Border.swift",
        "Paywalls/Components/Common/ComponentOverrides.swift",
        "Paywalls/Components/Common/Dimension.swift",
        "Paywalls/Components/Common/PaywallComponentBase.swift",
        "Paywalls/Components/Common/PaywallComponentLocalization.swift",
        "Paywalls/Components/Common/PaywallComponentPropertyTypes.swift",
        "Paywalls/Components/PaywallButtonComponent.swift",
        "Paywalls/Components/PaywallCarouselComponent.swift",
        "Paywalls/Components/PaywallIconComponent.swift",
        "Paywalls/Components/PaywallImageComponent.swift",
        "Paywalls/Components/PaywallPackageComponent.swift",
        "Paywalls/Components/PaywallPurchaseButtonComponent.swift",
        "Paywalls/Components/PaywallStackComponent.swift",
        "Paywalls/Components/PaywallStickyFooterComponent.swift",
        "Paywalls/Components/PaywallTabsComponent.swift",
        "Paywalls/Components/PaywallTextComponent.swift",
        "Paywalls/Components/PaywallTimelineComponent.swift",
        "Paywalls/Components/PaywallV2CacheWarming.swift",
        "Paywalls/Events/Networking/EventsRequest+Paywall.swift",
        "Paywalls/Events/Networking/PaywallHTTPRequestPath.swift",
        "Paywalls/Events/Networking/PostPaywallEventsOperation.swift",
        "Paywalls/Events/PaywallEvent.swift",
        "Paywalls/Events/PaywallEventStore.swift",
        "Paywalls/Events/PaywallEventsManager.swift",
        "Paywalls/PaywallCacheWarming.swift",
        "Paywalls/PaywallColor.swift",
        "Paywalls/PaywallData+Localization.swift",
        "Paywalls/PaywallData.swift",
        "Paywalls/PaywallFontManagerType.swift",
        "Paywalls/PaywallViewMode.swift",
        "Purchasing/CachingProductsManager.swift",
        "Purchasing/CachingTrialOrIntroPriceEligibilityChecker.swift",
        "Purchasing/Configuration.swift",
        "Purchasing/EntitlementInfo.swift",
        "Purchasing/EntitlementInfos.swift",
        "Purchasing/IntroEligibility.swift",
        "Purchasing/IntroEligibilityCalculator.swift",
        "Purchasing/NonSubscriptionTransaction.swift",
        "Purchasing/Offering.swift",
        "Purchasing/Offerings.swift",
        "Purchasing/OfferingsFactory.swift",
        "Purchasing/OfferingsManager.swift",
        "Purchasing/Package.swift",
        "Purchasing/PackageType.swift",
        "Purchasing/ProductRequestData+Initialization.swift",
        "Purchasing/ProductRequestData.swift",
        "Purchasing/ProductsManager.swift",
        "Purchasing/ProductsRequestFactory.swift",
        "Purchasing/PurchaseOwnershipType.swift",
        "Purchasing/Purchases/Attribution.swift",
        "Purchasing/Purchases/PurchaseParams.swift",
        "Purchasing/Purchases/Purchases.swift",
        "Purchasing/Purchases/PurchasesAreCompletedBy.swift",
        "Purchasing/Purchases/PurchasesDelegate.swift",
        "Purchasing/Purchases/PurchasesOrchestrator.swift",
        "Purchasing/Purchases/PurchasesType.swift",
        "Purchasing/Purchases/TransactionPoster.swift",
        "Purchasing/ReceiptFetcher.swift",
        "Purchasing/ReceiptRefreshPolicy.swift",
        "Purchasing/StoreKit1/PaymentQueueWrapper.swift",
        "Purchasing/StoreKit1/ProductsFetcherSK1.swift",
        "Purchasing/StoreKit1/StoreKit1Wrapper.swift",
        "Purchasing/StoreKit1/StoreKitRequestFetcher.swift",
        "Purchasing/StoreKit2/Observer Mode/StoreKit2ObserverModePurchaseDetector.swift",
        "Purchasing/StoreKit2/ProductsFetcherSK2.swift",
        "Purchasing/StoreKit2/SK2AppTransaction.swift",
        "Purchasing/StoreKit2/SK2BeginRefundRequestHelper.swift",
        "Purchasing/StoreKit2/StoreKit2PurchaseIntentListener.swift",
        "Purchasing/StoreKit2/StoreKit2Receipt.swift",
        "Purchasing/StoreKit2/StoreKit2StorefrontListener.swift",
        "Purchasing/StoreKit2/StoreKit2TransactionFetcher.swift",
        "Purchasing/StoreKit2/StoreKit2TransactionListener.swift",
        "Purchasing/StoreKit2/Win-Back Offers/WinBackOfferEligibilityCalculator.swift",
        "Purchasing/StoreKit2/Win-Back Offers/WinBackOfferEligibilityCalculatorType.swift",
        "Purchasing/StoreKitAbstractions/EncodedAppleReceipt.swift",
        "Purchasing/StoreKitAbstractions/ProductType.swift",
        "Purchasing/StoreKitAbstractions/PromotionalOffer.swift",
        "Purchasing/StoreKitAbstractions/SK1StoreProduct.swift",
        "Purchasing/StoreKitAbstractions/SK1StoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/SK1StoreTransaction.swift",
        "Purchasing/StoreKitAbstractions/SK1Storefront.swift",
        "Purchasing/StoreKitAbstractions/SK2StoreProduct.swift",
        "Purchasing/StoreKitAbstractions/SK2StoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/SK2StoreTransaction.swift",
        "Purchasing/StoreKitAbstractions/SK2Storefront.swift",
        "Purchasing/StoreKitAbstractions/StoreEnvironment.swift",
        "Purchasing/StoreKitAbstractions/StoreKitWorkarounds.swift",
        "Purchasing/StoreKitAbstractions/StoreProduct.swift",
        "Purchasing/StoreKitAbstractions/StoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/StoreTransaction.swift",
        "Purchasing/StoreKitAbstractions/Storefront.swift",
        "Purchasing/StoreKitAbstractions/StorefrontProvider.swift",
        "Purchasing/StoreKitAbstractions/SubscriptionPeriod.swift",
        "Purchasing/StoreKitAbstractions/Test Data/TestStoreProduct.swift",
        "Purchasing/StoreKitAbstractions/Test Data/TestStoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/WinBackOffer.swift",
        "Purchasing/TransactionsFactory.swift",
        "Purchasing/TransactionsManager.swift",
        "Purchasing/TrialOrIntroPriceEligibilityChecker.swift",
        "Security/FakeSigning.swift",
        "Security/HTTPRequest+Signing.swift",
        "Security/HTTPRequestBody+Signing.swift",
        "Security/Signing+ResponseVerification.swift",
        "Security/Signing.swift",
        "Security/VerificationResult.swift",
        "SubscriberAttributes/AttributionDataMigrator.swift",
        "SubscriberAttributes/AttributionKey.swift",
        "SubscriberAttributes/ReservedSubscriberAttributes.swift",
        "SubscriberAttributes/SubscriberAttribute.swift",
        "SubscriberAttributes/SubscriberAttributesManager.swift",
        "Support/BeginRefundRequestHelper.swift",
        "Support/DebugUI/DebugContentViews.swift",
        "Support/DebugUI/DebugView.swift",
        "Support/DebugUI/DebugViewController.swift",
        "Support/DebugUI/DebugViewModel.swift",
        "Support/DebugUI/DebugViewSheetPresentation.swift",
        "Support/DebugUI/ProductStatus+Icon.swift",
        "Support/DebugUI/SDKHealthCheckStatus+Icon.swift",
        "Support/DebugUI/SDKHealthStatus+Icon.swift",
        "Support/FrameworkDisambiguation.swift",
        "Support/HealthReport+Validate.swift",
        "Support/ManageSubscriptionsHelper.swift",
        "Support/PaywallExtensions.swift",
        "Support/PurchasesDiagnostics.swift",
        "Support/SDKHealthError+CustomNSError.swift",
        "Support/StoreMessageType.swift",
        "Support/StoreMessagesHelper.swift",
        "Support/SwiftVersionCheck.swift",
        "WebPurchaseRedemption/URL+WebPurchaseRedemption.swift",
        "WebPurchaseRedemption/WebPurchaseRedemption.swift",
        "WebPurchaseRedemption/WebPurchaseRedemptionHelper.swift",
        "WebPurchaseRedemption/WebPurchaseRedemptionResult.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RevenueCatUITests",
      "module_type" : "SwiftTarget",
      "name" : "RevenueCatUITests",
      "path" : "Tests/RevenueCatUITests",
      "product_dependencies" : [
        "Nimble",
        "SnapshotTesting"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RevenueCatUITests/Resources/background.heic",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/RevenueCatUITests/Resources/header.heic",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "BaseSnapshotTest.swift",
        "CustomerCenter/BaseManageSubscriptionViewModelTests.swift",
        "CustomerCenter/ContactSupportUtilitiesTests.swift",
        "CustomerCenter/CustomerCenterActionWrapperTests.swift",
        "CustomerCenter/CustomerCenterViewModelTests.swift",
        "CustomerCenter/DiscountsHandlerTests.swift",
        "CustomerCenter/FeedbackSurveyViewModelTests.swift",
        "CustomerCenter/PromotionalOfferViewModelTests.swift",
        "CustomerCenter/PurchaseCardViewBadgeTests.swift",
        "CustomerCenter/PurchaseInformationTests.swift",
        "CustomerCenter/SubscriptionDetailViewModelTests.swift",
        "Data/LocalizedAlertErrorTests.swift",
        "Data/PackageVariablesTests.swift",
        "Data/PaywallDataValidationTests.swift",
        "Data/SemanticVersionTests.swift",
        "Data/TemplateViewConfigurationTests.swift",
        "Data/VariablesTests.swift",
        "Helpers/AsyncTestHelpers.swift",
        "Helpers/AvailabilityChecks.swift",
        "Helpers/CurrentTestCaseTracker.swift",
        "Helpers/DataExtensions.swift",
        "Helpers/ImageSnapshot.swift",
        "Helpers/OSVersionEquivalent.swift",
        "Helpers/SnapshotTesting+Extensions.swift",
        "Helpers/TestCase.swift",
        "ImageLoaderTests.swift",
        "LocalizationTests.swift",
        "Mocks/MockStoreProductDiscount.swift",
        "Mocks/MockTransaction.swift",
        "PaywallFooterTests.swift",
        "PaywallViewEventsTests.swift",
        "PaywallsV2/LocaleFinderTests.swift",
        "PaywallsV2/PresentedPartialsTests.swift",
        "PaywallsV2/TakeScreenshot.swift",
        "PaywallsV2/VariableHandlerV2Tests.swift",
        "PresentIfNeededTests.swift",
        "PurchaseCompletedHandlerTests.swift",
        "Purchasing/PurchaseHandlerTests.swift",
        "Templates/ExternalPurchaseAndRestoreTests.swift",
        "Templates/OtherPaywallViewTests.swift",
        "Templates/PaywallViewDynamicTypeTests.swift",
        "Templates/PaywallViewLocalizationTests.swift",
        "Templates/Template1ViewTests.swift",
        "Templates/Template2ViewTests.swift",
        "Templates/Template3ViewTests.swift",
        "Templates/Template4ViewTests.swift",
        "Templates/Template5ViewTests.swift",
        "Templates/Template7ViewTests.swift"
      ],
      "target_dependencies" : [
        "RevenueCatUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RevenueCatUI",
      "module_type" : "SwiftTarget",
      "name" : "RevenueCatUI",
      "path" : "RevenueCatUI",
      "product_memberships" : [
        "RevenueCatUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ar.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ar"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/background.jpg",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/bg.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "bg"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ca.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/cs.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "cs"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/da.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "da"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/de.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "de"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/el.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "el"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/en_AU.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en_au"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/en_CA.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en_ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/en_GB.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en_gb"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/en_US.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en_us"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/es_419.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "es_419"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/es_ES.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "es_es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/fi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/fr_CA.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fr_ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/fr_FR.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fr_fr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/he.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "he"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/hi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "hi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/hr.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "hr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/hu.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "hu"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/icons.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/id.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "id"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/it.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "it"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ja.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ja"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/kk.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "kk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ko.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ko"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ms.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ms"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/nl.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "nl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/no.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "no"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/pl.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/pt_BR.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pt_br"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/pt_PT.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pt_pt"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ro.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ro"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/ru.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ru"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/sk.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "sk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/sv.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "sv"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/th.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "th"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/tr.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "tr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/uk.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "uk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/vi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "vi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/zh_Hans.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "zh_hans"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/RevenueCatUI/Resources/zh_Hant.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "zh_hant"
            }
          }
        }
      ],
      "sources" : [
        "Binding+Extensions.swift",
        "CustomerCenter/Abstractions/CustomerCenterPurchasesType.swift",
        "CustomerCenter/Actions/CustomerCenter+PreferenceKeys.swift",
        "CustomerCenter/Actions/CustomerCenterConfigData.HelpPath+PurchaseInformation.swift",
        "CustomerCenter/Actions/CustomerCenterView+Actions.swift",
        "CustomerCenter/ButtonStyles.swift",
        "CustomerCenter/ColorFromAppearance.swift",
        "CustomerCenter/ContactSupportUtilities.swift",
        "CustomerCenter/CustomerInfo+CurrentEntitlement.swift",
        "CustomerCenter/Data/CustomerCenterAction.swift",
        "CustomerCenter/Data/CustomerCenterActionViewModifier.swift",
        "CustomerCenter/Data/CustomerCenterActionWrapper.swift",
        "CustomerCenter/Data/CustomerCenterConfigData+Mock.swift",
        "CustomerCenter/Data/CustomerCenterEnvironment.swift",
        "CustomerCenter/Data/CustomerCenterError.swift",
        "CustomerCenter/Data/CustomerCenterManagementOption.swift",
        "CustomerCenter/Data/CustomerCenterPurchases.swift",
        "CustomerCenter/Data/DiscountsHandler.swift",
        "CustomerCenter/Data/EntitlementInfo+Extensions.swift",
        "CustomerCenter/Data/FeedbackSurveyData.swift",
        "CustomerCenter/Data/LoadPromotionalOfferUseCase.swift",
        "CustomerCenter/Data/PromotionalOfferData.swift",
        "CustomerCenter/Data/PurchaseInformation+Mock.swift",
        "CustomerCenter/Data/PurchaseInformation.swift",
        "CustomerCenter/Data/SemanticVersion.swift",
        "CustomerCenter/Data/Transaction.swift",
        "CustomerCenter/Extensions/CustomerCenterConfigDataSupport+URL.swift",
        "CustomerCenter/Extensions/CustomerInfo+SeeAllPurchases.swift",
        "CustomerCenter/Extensions/PurchaseInformation+Creation.swift",
        "CustomerCenter/Mocks/MockCustomerCenterPurchases.swift",
        "CustomerCenter/Mocks/MockCustomerCenterStoreKitUtilities.swift",
        "CustomerCenter/Mocks/MockLoadPromotionalOfferUseCase.swift",
        "CustomerCenter/Mocks/PurchaseInformationFixtures.swift",
        "CustomerCenter/URLUtilities.swift",
        "CustomerCenter/Utilities/CustomerCenterLocalizationStrings.swift",
        "CustomerCenter/Utilities/CustomerCenterStoreKitUtilities.swift",
        "CustomerCenter/Utilities/CustomerCenterStoreKitUtilitiesType.swift",
        "CustomerCenter/Utilities/IdentifiableURL.swift",
        "CustomerCenter/View+PresentCustomerCenter.swift",
        "CustomerCenter/ViewModels/BaseManageSubscriptionViewModel.swift",
        "CustomerCenter/ViewModels/CustomerCenterViewModel.swift",
        "CustomerCenter/ViewModels/CustomerCenterViewState.swift",
        "CustomerCenter/ViewModels/FeedbackSurveyViewModel.swift",
        "CustomerCenter/ViewModels/PromotionalOfferViewModel.swift",
        "CustomerCenter/ViewModels/PurchaseHistory/PurchaseDetailItem.swift",
        "CustomerCenter/ViewModels/PurchaseHistory/PurchaseDetailViewModel.swift",
        "CustomerCenter/ViewModels/PurchaseHistory/PurchaseHistoryViewModel.swift",
        "CustomerCenter/ViewModels/PurchaseHistory/PurchaseInformation+History.swift",
        "CustomerCenter/ViewModels/RelevantPurchasesListViewModel.swift",
        "CustomerCenter/ViewModels/RestorePurchasesAlertViewModel.swift",
        "CustomerCenter/ViewModels/SubscriptionDetailViewModel.swift",
        "CustomerCenter/Views/ActiveSubscriptionButtonsView.swift",
        "CustomerCenter/Views/AppUpdateWarningView.swift",
        "CustomerCenter/Views/CompatibilityContentUnavailableView.swift",
        "CustomerCenter/Views/CompatibilityLabeledContent.swift",
        "CustomerCenter/Views/CompatibilityNavigationStack.swift",
        "CustomerCenter/Views/CompatibilityTopBarTrailing.swift",
        "CustomerCenter/Views/CustomerCenterNavigationLink.swift",
        "CustomerCenter/Views/CustomerCenterNavigationOptions.swift",
        "CustomerCenter/Views/CustomerCenterView.swift",
        "CustomerCenter/Views/ErrorView.swift",
        "CustomerCenter/Views/FallbackNoSubscriptionsView.swift",
        "CustomerCenter/Views/FeedbackSurveyView.swift",
        "CustomerCenter/Views/ManageSubscriptionsButtonsView.swift",
        "CustomerCenter/Views/NoSubscriptionsCardView.swift",
        "CustomerCenter/Views/PromotionalOfferView.swift",
        "CustomerCenter/Views/PurchaseCardView.swift",
        "CustomerCenter/Views/PurchaseHistory/PurchaseDetailView.swift",
        "CustomerCenter/Views/PurchaseHistory/PurchaseHistoryView.swift",
        "CustomerCenter/Views/RelevantPurchasesListView.swift",
        "CustomerCenter/Views/RestorePurchasesAlert.swift",
        "CustomerCenter/Views/ScrollViewSection.swift",
        "CustomerCenter/Views/ScrollViewWithOSBackground.swift",
        "CustomerCenter/Views/SubscriptionDetailView.swift",
        "CustomerCenter/Views/TintedProgressView.swift",
        "CustomerCenter/Views/UIKit Compatibility/CustomerCenterViewController.swift",
        "Data/Constants.swift",
        "Data/CustomerInfoFixtures.swift",
        "Data/Errors/PaywallError.swift",
        "Data/Errors/TemplateError.swift",
        "Data/IntroEligibility/IntroEligibilityViewModel.swift",
        "Data/IntroEligibility/TrialOrIntroEligibilityChecker+TestData.swift",
        "Data/IntroEligibility/TrialOrIntroEligibilityChecker.swift",
        "Data/Localization.swift",
        "Data/LocalizedAlertError.swift",
        "Data/PaywallData+Validation.swift",
        "Data/PaywallTemplate.swift",
        "Data/PaywallViewConfiguration.swift",
        "Data/PaywallViewMode+Extensions.swift",
        "Data/ProcessedLocalizedConfiguration.swift",
        "Data/Strings.swift",
        "Data/TemplateViewConfiguration+Extensions.swift",
        "Data/TemplateViewConfiguration+Images.swift",
        "Data/TemplateViewConfiguration.swift",
        "Data/TestData.swift",
        "Data/UserInterfaceIdiom.swift",
        "Data/Variables.swift",
        "Helpers/Bundle+Extensions.swift",
        "Helpers/ColorInformation+MultiScheme.swift",
        "Helpers/EmergeRenderingMode.swift",
        "Helpers/ImageLoader.swift",
        "Helpers/Logger.swift",
        "Helpers/Optional+Extensions.swift",
        "Helpers/Package+VariableDataProvider.swift",
        "Helpers/PaywallData+Default.swift",
        "Helpers/PreviewHelpers.swift",
        "Helpers/RuntimeUtils.swift",
        "Helpers/StoreProduct+Extensions.swift",
        "Helpers/StoreProductDiscount+Extensions.swift",
        "Helpers/SubscriptionPeriod+Extensions.swift",
        "Helpers/TemplateView+MultiTier.swift",
        "Helpers/VersionDetector.swift",
        "Modifiers/ConsistentPackageContentView.swift",
        "Modifiers/ConsistentTierContentView.swift",
        "Modifiers/FitToAspectRatio.swift",
        "Modifiers/FooterHidingModifier.swift",
        "Modifiers/ViewExtensions.swift",
        "PaywallFontProvider.swift",
        "PaywallView.swift",
        "Purchasing/MockPurchases.swift",
        "Purchasing/PaywallPurchasesType.swift",
        "Purchasing/PurchaseHandler+TestData.swift",
        "Purchasing/PurchaseHandler.swift",
        "Templates/Other platforms/WatchTemplateView.swift",
        "Templates/Template1View.swift",
        "Templates/Template2View.swift",
        "Templates/Template3View.swift",
        "Templates/Template4View.swift",
        "Templates/Template5View.swift",
        "Templates/Template7View.swift",
        "Templates/TemplateViewType.swift",
        "Templates/V2/Components/Button/BottomSheetView.swift",
        "Templates/V2/Components/Button/ButtonComponentView.swift",
        "Templates/V2/Components/Button/ButtonComponentViewModel.swift",
        "Templates/V2/Components/Carousel/CarouselComponentView.swift",
        "Templates/V2/Components/Carousel/CarouselComponentViewModel.swift",
        "Templates/V2/Components/ComponentsView.swift",
        "Templates/V2/Components/Icon/IconComponentView.swift",
        "Templates/V2/Components/Icon/IconComponentViewModel.swift",
        "Templates/V2/Components/Image/ImageComponentView.swift",
        "Templates/V2/Components/Image/ImageComponentViewModel.swift",
        "Templates/V2/Components/Packages/Package/ComponentViewState.swift",
        "Templates/V2/Components/Packages/Package/PackageComponentView.swift",
        "Templates/V2/Components/Packages/Package/PackageComponentViewModel.swift",
        "Templates/V2/Components/Packages/PurchaseButton/PurchaseButtonComponentView.swift",
        "Templates/V2/Components/Packages/PurchaseButton/PurchaseButtonComponentViewModel.swift",
        "Templates/V2/Components/Root/RootView.swift",
        "Templates/V2/Components/Root/RootViewModel.swift",
        "Templates/V2/Components/Stack/FlexHStack.swift",
        "Templates/V2/Components/Stack/FlexVStack.swift",
        "Templates/V2/Components/Stack/JustifyContent.swift",
        "Templates/V2/Components/Stack/StackComponentView.swift",
        "Templates/V2/Components/Stack/StackComponentViewModel.swift",
        "Templates/V2/Components/StickyFooter/StickyFooterComponentView.swift",
        "Templates/V2/Components/StickyFooter/StickyFooterComponentViewModel.swift",
        "Templates/V2/Components/Tabs/TabControlButtonComponentView.swift",
        "Templates/V2/Components/Tabs/TabControlButtonComponentViewModel.swift",
        "Templates/V2/Components/Tabs/TabControlComponentView.swift",
        "Templates/V2/Components/Tabs/TabControlComponentViewModel.swift",
        "Templates/V2/Components/Tabs/TabControlToggleComponentView.swift",
        "Templates/V2/Components/Tabs/TabControlToggleComponentViewModel.swift",
        "Templates/V2/Components/Tabs/TabsComponentView.swift",
        "Templates/V2/Components/Tabs/TabsComponentViewModel.swift",
        "Templates/V2/Components/Text/TextComponentView.swift",
        "Templates/V2/Components/Text/TextComponentViewModel.swift",
        "Templates/V2/Components/Timeline/TimelineComponentView.swift",
        "Templates/V2/Components/Timeline/TimelineComponentViewModel.swift",
        "Templates/V2/EnvironmentObjects/IntroOfferEligibilityContext.swift",
        "Templates/V2/EnvironmentObjects/OpenSheet.swift",
        "Templates/V2/EnvironmentObjects/PackageContext.swift",
        "Templates/V2/EnvironmentObjects/ScreenCondition.swift",
        "Templates/V2/Localizations/LocaleExtensions.swift",
        "Templates/V2/Localizations/LocaleFinder.swift",
        "Templates/V2/Localizations/LocalizationDictionaryExtensions.swift",
        "Templates/V2/PaywallsV2View.swift",
        "Templates/V2/Previews/PreviewMock.swift",
        "Templates/V2/Previews/TemplateComponentsViewPreviews/ButtonWithFooterPreview.swift",
        "Templates/V2/Previews/TemplateComponentsViewPreviews/FallbackComponentPreview.swift",
        "Templates/V2/Previews/TemplateComponentsViewPreviews/FamilySharingTogglePreview.swift",
        "Templates/V2/Previews/TemplateComponentsViewPreviews/MultiTierPreview.swift",
        "Templates/V2/Previews/TemplateComponentsViewPreviews/PurchaseButtonInPackagePreview.swift",
        "Templates/V2/Previews/TemplateComponentsViewPreviews/Template1Preview.swift",
        "Templates/V2/Variables/VariableHandlerV2.swift",
        "Templates/V2/ViewHelpers/BackgroundStyle.swift",
        "Templates/V2/ViewHelpers/BadgeModifier.swift",
        "Templates/V2/ViewHelpers/DisplayableColor.swift",
        "Templates/V2/ViewHelpers/Fill.swift",
        "Templates/V2/ViewHelpers/ForegroundColorScheme.swift",
        "Templates/V2/ViewHelpers/NavigatetoURL.swift",
        "Templates/V2/ViewHelpers/ProgressViewModifier.swift",
        "Templates/V2/ViewHelpers/ShadowModifier.swift",
        "Templates/V2/ViewHelpers/Shape.swift",
        "Templates/V2/ViewHelpers/SizeModifier.swift",
        "Templates/V2/ViewModelHelpers/LocalizationProvider.swift",
        "Templates/V2/ViewModelHelpers/PackageValidator.swift",
        "Templates/V2/ViewModelHelpers/PaywallComponentTypeTransformers.swift",
        "Templates/V2/ViewModelHelpers/PaywallComponentViewModel.swift",
        "Templates/V2/ViewModelHelpers/PresentedPartials.swift",
        "Templates/V2/ViewModelHelpers/UIConfigProvider.swift",
        "Templates/V2/ViewModelHelpers/ViewModelFactory.swift",
        "UIKit/PaywallFooterViewController.swift",
        "UIKit/PaywallViewController.swift",
        "View+OnRedeemWebPurchaseAttempt.swift",
        "View+PresentPaywall.swift",
        "View+PresentPaywallFooter.swift",
        "View+PurchaseRestoreCompleted.swift",
        "Views/AsyncButton.swift",
        "Views/DebugErrorView.swift",
        "Views/ErrorDisplay.swift",
        "Views/FooterView.swift",
        "Views/GradientView.swift",
        "Views/IconView.swift",
        "Views/IntroEligibilityStateView.swift",
        "Views/LoadingPaywallView.swift",
        "Views/PackageButtonStyle.swift",
        "Views/ProgressView.swift",
        "Views/PurchaseButton.swift",
        "Views/RemoteImage.swift",
        "Views/SafariView.swift",
        "Views/TemplateBackgroundImageView.swift",
        "Views/TemplatePackageSetting.swift",
        "Views/TierSelectorView.swift"
      ],
      "target_dependencies" : [
        "RevenueCat"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RevenueCat",
      "module_type" : "SwiftTarget",
      "name" : "RevenueCat",
      "path" : "Sources",
      "product_memberships" : [
        "RevenueCat",
        "RevenueCatUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Attribution/ASIdManagerProxy.swift",
        "Attribution/AttributionData.swift",
        "Attribution/AttributionFetcher.swift",
        "Attribution/AttributionNetwork.swift",
        "Attribution/AttributionPoster.swift",
        "Attribution/AttributionTypeFactory.swift",
        "Attribution/TrackingManagerProxy.swift",
        "Caching/CacheStatus.swift",
        "Caching/DeviceCache.swift",
        "Caching/InMemoryCachedObject.swift",
        "CodableExtensions/PeriodType+Extensions.swift",
        "CodableExtensions/PurchaseOwnershipType+Extensions.swift",
        "CodableExtensions/Store+Extensions.swift",
        "CustomerCenter/CustomerCenterConfigData.swift",
        "CustomerCenter/CustomerCenterPresentationMode.swift",
        "CustomerCenter/Events/CustomerCenterEvent.swift",
        "CustomerCenter/Events/EventsRequest+CustomerCenter.swift",
        "DeepLink/DeepLinkParser.swift",
        "Diagnostics/DiagnosticsEvent.swift",
        "Diagnostics/DiagnosticsFileHandler.swift",
        "Diagnostics/DiagnosticsTracker.swift",
        "Diagnostics/FileHandler.swift",
        "Diagnostics/Networking/DiagnosticsEventsRequest.swift",
        "Diagnostics/Networking/DiagnosticsHTTPRequestPath.swift",
        "Diagnostics/Networking/DiagnosticsPostOperation.swift",
        "Diagnostics/Networking/DiagnosticsSynchronizer.swift",
        "DocCDocumentation/EmptyFile.swift",
        "Error Handling/Assertions.swift",
        "Error Handling/BackendError.swift",
        "Error Handling/BackendErrorCode.swift",
        "Error Handling/DescribableError.swift",
        "Error Handling/ErrorCode.swift",
        "Error Handling/ErrorDetails.swift",
        "Error Handling/ErrorUtils.swift",
        "Error Handling/PurchasesError.swift",
        "Error Handling/SKError+Extensions.swift",
        "Error Handling/StoreKitError+Extensions.swift",
        "Error Handling/StoreKitErrorHelper.swift",
        "Events/FeatureEvent.swift",
        "Events/Networking/EventsRequest.swift",
        "Events/StoredEvent.swift",
        "Events/StoredEventSerializer.swift",
        "FoundationExtensions/Array+Extensions.swift",
        "FoundationExtensions/AsyncExtensions.swift",
        "FoundationExtensions/Data+Extensions.swift",
        "FoundationExtensions/Date+Extensions.swift",
        "FoundationExtensions/Decoder+Extensions.swift",
        "FoundationExtensions/Dictionary+Extensions.swift",
        "FoundationExtensions/DispatchTimeInterval+Extensions.swift",
        "FoundationExtensions/Error+Extensions.swift",
        "FoundationExtensions/Integer+Extensions.swift",
        "FoundationExtensions/Locale+Extensions.swift",
        "FoundationExtensions/OperationQueue+Extensions.swift",
        "FoundationExtensions/Operators+Extensions.swift",
        "FoundationExtensions/Optional+Extensions.swift",
        "FoundationExtensions/Result+Extensions.swift",
        "FoundationExtensions/Set+Extensions.swift",
        "FoundationExtensions/String+Extensions.swift",
        "FoundationExtensions/TimeInterval+Extensions.swift",
        "FoundationExtensions/UIApplication+RCExtensions.swift",
        "FoundationExtensions/UserDefaults+Extensions.swift",
        "Identity/CustomerInfo+ActiveDates.swift",
        "Identity/CustomerInfo+NonSubscriptions.swift",
        "Identity/CustomerInfo.swift",
        "Identity/CustomerInfoManager.swift",
        "Identity/IdentityManager.swift",
        "Identity/ProductPaidPrice.swift",
        "Identity/SubscriptionInfo.swift",
        "LocalReceiptParsing/BasicTypes/ASN1Container.swift",
        "LocalReceiptParsing/BasicTypes/ASN1ObjectIdentifier.swift",
        "LocalReceiptParsing/BasicTypes/AppleReceipt.swift",
        "LocalReceiptParsing/BasicTypes/InAppPurchase.swift",
        "LocalReceiptParsing/Builders/ASN1ContainerBuilder.swift",
        "LocalReceiptParsing/Builders/ASN1ObjectIdentifierBuilder.swift",
        "LocalReceiptParsing/Builders/AppleReceiptBuilder.swift",
        "LocalReceiptParsing/Builders/InAppPurchaseBuilder.swift",
        "LocalReceiptParsing/DataConverters/ArraySlice_UInt8+Extensions.swift",
        "LocalReceiptParsing/DataConverters/Codable+Extensions.swift",
        "LocalReceiptParsing/DataConverters/DateFormatter+Extensions.swift",
        "LocalReceiptParsing/DataConverters/UInt8+Extensions.swift",
        "LocalReceiptParsing/Helpers/FileReader.swift",
        "LocalReceiptParsing/Helpers/LoggerType.swift",
        "LocalReceiptParsing/Helpers/ProcessInfo+Extensions.swift",
        "LocalReceiptParsing/Helpers/ReceiptParserLogger.swift",
        "LocalReceiptParsing/Helpers/ReceiptStrings.swift",
        "LocalReceiptParsing/LocalReceiptFetcher.swift",
        "LocalReceiptParsing/PurchasesReceiptParser.swift",
        "LocalReceiptParsing/ReceiptParsingError.swift",
        "Logging/LogIntent.swift",
        "Logging/Logger.swift",
        "Logging/Strings/AnalyticsStrings.swift",
        "Logging/Strings/AttributionStrings.swift",
        "Logging/Strings/BackendErrorStrings.swift",
        "Logging/Strings/CodableStrings.swift",
        "Logging/Strings/ConfigureStrings.swift",
        "Logging/Strings/CustomerInfoStrings.swift",
        "Logging/Strings/DiagnosticsStrings.swift",
        "Logging/Strings/ETagStrings.swift",
        "Logging/Strings/EligibilityStrings.swift",
        "Logging/Strings/IdentityStrings.swift",
        "Logging/Strings/ManageSubscriptionsStrings.swift",
        "Logging/Strings/NetworkStrings.swift",
        "Logging/Strings/OfferingStrings.swift",
        "Logging/Strings/OfflineEntitlementsStrings.swift",
        "Logging/Strings/PaywallsStrings.swift",
        "Logging/Strings/PurchaseStrings.swift",
        "Logging/Strings/SigningStrings.swift",
        "Logging/Strings/StoreKitStrings.swift",
        "Logging/Strings/Strings.swift",
        "Logging/Strings/WebRedemptionStrings.swift",
        "Misc/Box.swift",
        "Misc/Codable/AnyDecodable.swift",
        "Misc/Codable/AnyEncodable.swift",
        "Misc/Codable/DefaultDecodable.swift",
        "Misc/Codable/EnsureNonEmptyCollectionDecodable.swift",
        "Misc/Codable/IgnoreHashable.swift",
        "Misc/Codable/NonEmptyStringDecodable.swift",
        "Misc/Codable/RawDataContainer.swift",
        "Misc/Concurrency/Atomic.swift",
        "Misc/Concurrency/Lock.swift",
        "Misc/Concurrency/OperationDispatcher.swift",
        "Misc/Concurrency/Purchases+async.swift",
        "Misc/Concurrency/Purchases+nonasync.swift",
        "Misc/Concurrency/SynchronizedUserDefaults.swift",
        "Misc/DangerousSettings.swift",
        "Misc/DateAndTime/Clock.swift",
        "Misc/DateAndTime/DateExtensions.swift",
        "Misc/DateAndTime/DateProvider.swift",
        "Misc/DateAndTime/ISODurationFormatter.swift",
        "Misc/DateAndTime/ISOPeriodFormatter.swift",
        "Misc/DateAndTime/TimingUtil.swift",
        "Misc/Deprecations.swift",
        "Misc/Either.swift",
        "Misc/Locale/PreferredLocalesProvider.swift",
        "Misc/MacDevice.swift",
        "Misc/MapAppStoreDetector.swift",
        "Misc/Obsoletions.swift",
        "Misc/PlatformInfo.swift",
        "Misc/PriceFormatterProvider.swift",
        "Misc/RateLimiter.swift",
        "Misc/SandboxEnvironmentDetector.swift",
        "Misc/StoreKitVersion.swift",
        "Misc/SystemInfo.swift",
        "Networking/Backend.swift",
        "Networking/BackendConfiguration.swift",
        "Networking/Caching/CacheFetchPolicy.swift",
        "Networking/Caching/CallbackCache.swift",
        "Networking/Caching/CallbackCacheStatus.swift",
        "Networking/Caching/CustomerCenterConfigCallback.swift",
        "Networking/Caching/CustomerInfoCallback.swift",
        "Networking/Caching/LogInCallback.swift",
        "Networking/Caching/OfferingsCallback.swift",
        "Networking/Caching/ProductEntitlementMappingCallback.swift",
        "Networking/Caching/WebProductsCallback.swift",
        "Networking/CustomerAPI.swift",
        "Networking/CustomerCenterConfigAPI.swift",
        "Networking/HTTPClient/DNSChecker.swift",
        "Networking/HTTPClient/ETagManager.swift",
        "Networking/HTTPClient/ErrorResponse.swift",
        "Networking/HTTPClient/HTTPClient.swift",
        "Networking/HTTPClient/HTTPRequest.swift",
        "Networking/HTTPClient/HTTPRequestBody.swift",
        "Networking/HTTPClient/HTTPRequestPath.swift",
        "Networking/HTTPClient/HTTPResponse.swift",
        "Networking/HTTPClient/HTTPResponseBody.swift",
        "Networking/HTTPClient/HTTPStatusCode.swift",
        "Networking/HTTPClient/NetworkError.swift",
        "Networking/HTTPClient/RedirectLoggerTaskDelegate.swift",
        "Networking/IdentityAPI.swift",
        "Networking/InternalAPI.swift",
        "Networking/OfferingsAPI.swift",
        "Networking/OfflineEntitlementsAPI.swift",
        "Networking/Operations/GetCustomerCenterConfigOperation.swift",
        "Networking/Operations/GetCustomerInfoOperation.swift",
        "Networking/Operations/GetIntroEligibilityOperation.swift",
        "Networking/Operations/GetOfferingsOperation.swift",
        "Networking/Operations/GetProductEntitlementMappingOperation.swift",
        "Networking/Operations/GetWebProductsOperation.swift",
        "Networking/Operations/Handling/CustomerInfoResponseHandler.swift",
        "Networking/Operations/HealthOperation.swift",
        "Networking/Operations/HealthReportOperation.swift",
        "Networking/Operations/LogInOperation.swift",
        "Networking/Operations/NetworkOperation.swift",
        "Networking/Operations/PostAdServicesTokenOperation.swift",
        "Networking/Operations/PostAttributionDataOperation.swift",
        "Networking/Operations/PostOfferForSigningOperation.swift",
        "Networking/Operations/PostReceiptDataOperation.swift",
        "Networking/Operations/PostRedeemWebPurchaseOperation.swift",
        "Networking/Operations/PostSubscriberAttributesOperation.swift",
        "Networking/RedeemWebPurchaseAPI.swift",
        "Networking/Responses/CustomerCenterConfigResponse.swift",
        "Networking/Responses/CustomerInfoResponse.swift",
        "Networking/Responses/GetIntroEligibilityResponse.swift",
        "Networking/Responses/HealthReportResponse.swift",
        "Networking/Responses/OfferingsResponse.swift",
        "Networking/Responses/PostOfferResponse.swift",
        "Networking/Responses/ProductEntitlementMappingResponse.swift",
        "Networking/Responses/RevenueCatUI/PaywallComponentsData.swift",
        "Networking/Responses/RevenueCatUI/UIConfig.swift",
        "Networking/Responses/WebProductsResponse.swift",
        "Networking/WebBillingHTTPRequestPath.swift",
        "OfflineEntitlements/CustomerInfo+OfflineEntitlements.swift",
        "OfflineEntitlements/OfflineCustomerInfoCreator.swift",
        "OfflineEntitlements/OfflineEntitlementsManager.swift",
        "OfflineEntitlements/ProductEntitlementMapping.swift",
        "OfflineEntitlements/ProductEntitlementMappingFetcher.swift",
        "OfflineEntitlements/PurchasedProductsFetcher.swift",
        "OfflineEntitlements/PurchasedSK2Product.swift",
        "Paywalls/Components/Common/Background.swift",
        "Paywalls/Components/Common/Border.swift",
        "Paywalls/Components/Common/ComponentOverrides.swift",
        "Paywalls/Components/Common/Dimension.swift",
        "Paywalls/Components/Common/PaywallComponentBase.swift",
        "Paywalls/Components/Common/PaywallComponentLocalization.swift",
        "Paywalls/Components/Common/PaywallComponentPropertyTypes.swift",
        "Paywalls/Components/PaywallButtonComponent.swift",
        "Paywalls/Components/PaywallCarouselComponent.swift",
        "Paywalls/Components/PaywallIconComponent.swift",
        "Paywalls/Components/PaywallImageComponent.swift",
        "Paywalls/Components/PaywallPackageComponent.swift",
        "Paywalls/Components/PaywallPurchaseButtonComponent.swift",
        "Paywalls/Components/PaywallStackComponent.swift",
        "Paywalls/Components/PaywallStickyFooterComponent.swift",
        "Paywalls/Components/PaywallTabsComponent.swift",
        "Paywalls/Components/PaywallTextComponent.swift",
        "Paywalls/Components/PaywallTimelineComponent.swift",
        "Paywalls/Components/PaywallV2CacheWarming.swift",
        "Paywalls/Events/Networking/EventsRequest+Paywall.swift",
        "Paywalls/Events/Networking/PaywallHTTPRequestPath.swift",
        "Paywalls/Events/Networking/PostPaywallEventsOperation.swift",
        "Paywalls/Events/PaywallEvent.swift",
        "Paywalls/Events/PaywallEventStore.swift",
        "Paywalls/Events/PaywallEventsManager.swift",
        "Paywalls/PaywallCacheWarming.swift",
        "Paywalls/PaywallColor.swift",
        "Paywalls/PaywallData+Localization.swift",
        "Paywalls/PaywallData.swift",
        "Paywalls/PaywallFontManagerType.swift",
        "Paywalls/PaywallViewMode.swift",
        "Purchasing/CachingProductsManager.swift",
        "Purchasing/CachingTrialOrIntroPriceEligibilityChecker.swift",
        "Purchasing/Configuration.swift",
        "Purchasing/EntitlementInfo.swift",
        "Purchasing/EntitlementInfos.swift",
        "Purchasing/IntroEligibility.swift",
        "Purchasing/IntroEligibilityCalculator.swift",
        "Purchasing/NonSubscriptionTransaction.swift",
        "Purchasing/Offering.swift",
        "Purchasing/Offerings.swift",
        "Purchasing/OfferingsFactory.swift",
        "Purchasing/OfferingsManager.swift",
        "Purchasing/Package.swift",
        "Purchasing/PackageType.swift",
        "Purchasing/ProductRequestData+Initialization.swift",
        "Purchasing/ProductRequestData.swift",
        "Purchasing/ProductsManager.swift",
        "Purchasing/ProductsRequestFactory.swift",
        "Purchasing/PurchaseOwnershipType.swift",
        "Purchasing/Purchases/Attribution.swift",
        "Purchasing/Purchases/PurchaseParams.swift",
        "Purchasing/Purchases/Purchases.swift",
        "Purchasing/Purchases/PurchasesAreCompletedBy.swift",
        "Purchasing/Purchases/PurchasesDelegate.swift",
        "Purchasing/Purchases/PurchasesOrchestrator.swift",
        "Purchasing/Purchases/PurchasesType.swift",
        "Purchasing/Purchases/TransactionPoster.swift",
        "Purchasing/ReceiptFetcher.swift",
        "Purchasing/ReceiptRefreshPolicy.swift",
        "Purchasing/StoreKit1/PaymentQueueWrapper.swift",
        "Purchasing/StoreKit1/ProductsFetcherSK1.swift",
        "Purchasing/StoreKit1/StoreKit1Wrapper.swift",
        "Purchasing/StoreKit1/StoreKitRequestFetcher.swift",
        "Purchasing/StoreKit2/Observer Mode/StoreKit2ObserverModePurchaseDetector.swift",
        "Purchasing/StoreKit2/ProductsFetcherSK2.swift",
        "Purchasing/StoreKit2/SK2AppTransaction.swift",
        "Purchasing/StoreKit2/SK2BeginRefundRequestHelper.swift",
        "Purchasing/StoreKit2/StoreKit2PurchaseIntentListener.swift",
        "Purchasing/StoreKit2/StoreKit2Receipt.swift",
        "Purchasing/StoreKit2/StoreKit2StorefrontListener.swift",
        "Purchasing/StoreKit2/StoreKit2TransactionFetcher.swift",
        "Purchasing/StoreKit2/StoreKit2TransactionListener.swift",
        "Purchasing/StoreKit2/Win-Back Offers/WinBackOfferEligibilityCalculator.swift",
        "Purchasing/StoreKit2/Win-Back Offers/WinBackOfferEligibilityCalculatorType.swift",
        "Purchasing/StoreKitAbstractions/EncodedAppleReceipt.swift",
        "Purchasing/StoreKitAbstractions/ProductType.swift",
        "Purchasing/StoreKitAbstractions/PromotionalOffer.swift",
        "Purchasing/StoreKitAbstractions/SK1StoreProduct.swift",
        "Purchasing/StoreKitAbstractions/SK1StoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/SK1StoreTransaction.swift",
        "Purchasing/StoreKitAbstractions/SK1Storefront.swift",
        "Purchasing/StoreKitAbstractions/SK2StoreProduct.swift",
        "Purchasing/StoreKitAbstractions/SK2StoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/SK2StoreTransaction.swift",
        "Purchasing/StoreKitAbstractions/SK2Storefront.swift",
        "Purchasing/StoreKitAbstractions/StoreEnvironment.swift",
        "Purchasing/StoreKitAbstractions/StoreKitWorkarounds.swift",
        "Purchasing/StoreKitAbstractions/StoreProduct.swift",
        "Purchasing/StoreKitAbstractions/StoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/StoreTransaction.swift",
        "Purchasing/StoreKitAbstractions/Storefront.swift",
        "Purchasing/StoreKitAbstractions/StorefrontProvider.swift",
        "Purchasing/StoreKitAbstractions/SubscriptionPeriod.swift",
        "Purchasing/StoreKitAbstractions/Test Data/TestStoreProduct.swift",
        "Purchasing/StoreKitAbstractions/Test Data/TestStoreProductDiscount.swift",
        "Purchasing/StoreKitAbstractions/WinBackOffer.swift",
        "Purchasing/TransactionsFactory.swift",
        "Purchasing/TransactionsManager.swift",
        "Purchasing/TrialOrIntroPriceEligibilityChecker.swift",
        "Security/FakeSigning.swift",
        "Security/HTTPRequest+Signing.swift",
        "Security/HTTPRequestBody+Signing.swift",
        "Security/Signing+ResponseVerification.swift",
        "Security/Signing.swift",
        "Security/VerificationResult.swift",
        "SubscriberAttributes/AttributionDataMigrator.swift",
        "SubscriberAttributes/AttributionKey.swift",
        "SubscriberAttributes/ReservedSubscriberAttributes.swift",
        "SubscriberAttributes/SubscriberAttribute.swift",
        "SubscriberAttributes/SubscriberAttributesManager.swift",
        "Support/BeginRefundRequestHelper.swift",
        "Support/DebugUI/DebugContentViews.swift",
        "Support/DebugUI/DebugView.swift",
        "Support/DebugUI/DebugViewController.swift",
        "Support/DebugUI/DebugViewModel.swift",
        "Support/DebugUI/DebugViewSheetPresentation.swift",
        "Support/DebugUI/ProductStatus+Icon.swift",
        "Support/DebugUI/SDKHealthCheckStatus+Icon.swift",
        "Support/DebugUI/SDKHealthStatus+Icon.swift",
        "Support/FrameworkDisambiguation.swift",
        "Support/HealthReport+Validate.swift",
        "Support/ManageSubscriptionsHelper.swift",
        "Support/PaywallExtensions.swift",
        "Support/PurchasesDiagnostics.swift",
        "Support/SDKHealthError+CustomNSError.swift",
        "Support/StoreMessageType.swift",
        "Support/StoreMessagesHelper.swift",
        "Support/SwiftVersionCheck.swift",
        "WebPurchaseRedemption/URL+WebPurchaseRedemption.swift",
        "WebPurchaseRedemption/WebPurchaseRedemption.swift",
        "WebPurchaseRedemption/WebPurchaseRedemptionHelper.swift",
        "WebPurchaseRedemption/WebPurchaseRedemptionResult.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ReceiptParserTests",
      "module_type" : "SwiftTarget",
      "name" : "ReceiptParserTests",
      "path" : "Tests/ReceiptParserTests",
      "product_dependencies" : [
        "Nimble"
      ],
      "sources" : [
        "Helpers/MockBundle.swift",
        "ReceiptParserFetchingTests.swift"
      ],
      "target_dependencies" : [
        "ReceiptParser"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ReceiptParser",
      "module_type" : "SwiftTarget",
      "name" : "ReceiptParser",
      "path" : "LocalReceiptParsing",
      "product_memberships" : [
        "ReceiptParser"
      ],
      "sources" : [
        "BasicTypes/ASN1Container.swift",
        "BasicTypes/ASN1ObjectIdentifier.swift",
        "BasicTypes/AppleReceipt.swift",
        "BasicTypes/InAppPurchase.swift",
        "Builders/ASN1ContainerBuilder.swift",
        "Builders/ASN1ObjectIdentifierBuilder.swift",
        "Builders/AppleReceiptBuilder.swift",
        "Builders/InAppPurchaseBuilder.swift",
        "DataConverters/ArraySlice_UInt8+Extensions.swift",
        "DataConverters/Codable+Extensions.swift",
        "DataConverters/DateFormatter+Extensions.swift",
        "DataConverters/UInt8+Extensions.swift",
        "Helpers/FileReader.swift",
        "Helpers/LoggerType.swift",
        "Helpers/ProcessInfo+Extensions.swift",
        "Helpers/ReceiptParserLogger.swift",
        "Helpers/ReceiptStrings.swift",
        "LocalReceiptFetcher.swift",
        "PurchasesReceiptParser.swift",
        "ReceiptParser-only-files/PurchasesReceiptParser+Extensions.swift",
        "ReceiptParsingError.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/Tests/RevenueCatUITests/Templates/__Snapshots__': File not found.
warning: 'spi-builder-workspace': ignoring broken symlink /Users/admin/builder/spi-builder-workspace/Tests/RevenueCatUITests/PaywallsV2/__PreviewResources__
warning: 'spi-builder-workspace': Invalid Resource 'PaywallsV2/__PreviewResources__': File not found.
Done.