Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 17, 2025

Bumps stripe-terminal from 4.7.5 to 5.0.0.
Updates com.stripe:stripeterminal-taptopay from 4.7.5 to 5.0.0

Release notes

Sourced from com.stripe:stripeterminal-taptopay's releases.

5.0.0

If you're using Gradle, update your build file to:

implementation "com.stripe:stripeterminal:5.0.0"

See CHANGELOG.md for details.

4.7.6

If you're using Gradle, update your build file to:

implementation "com.stripe:stripeterminal:4.7.6"

See CHANGELOG.md for details.

Changelog

Sourced from com.stripe:stripeterminal-taptopay's changelog.

5.0.0 - 2025-11-03

5.0.0 includes breaking changes in both APIs and behavior. See the migration guide for more details.

⚠️ Breaking changes required

New Features and Previews

New

  • Simplified payment integration - Added Terminal.processPaymentIntent, Terminal.processSetupIntent and Terminal.processRefund. These new methods combine the collect and confirm steps into a single operation.
  • Coroutine support for Kotlin - A new optional module, com.stripe:stripeterminal-ktx:5.0.0 is now available. This module provides suspend function wrappers for asynchronous Terminal APIs, allowing you to write simple, sequential code instead of nesting callbacks.
  • Streamlined Connection flow - For Tap to Pay, smart readers, and Apps on Devices integrations, you can now use Terminal.easyConnect which combines the discovery and connection steps into a single method call.
  • RECONNECTING status - Added a new enum value RECONNECTING to ConnectionStatus. This new status is used specifically when an auto-reconnect operation is in progress.

Preview

  • Collect NFC and swiped data - The SDK now returns new, specific subclasses for this data: CollectData.Magstripe and CollectData.NfcUid.
  • Mail Order / Telephone Order (MOTO) Payments - The moto booleans on CollectConfiguration and SetupIntentConfiguration have been removed. To enable MOTO payments, you must now pass a non-null MotoConfiguration object to your collect configuration.
    • As past of this change, MotoConfiguration::skipCvv has been renamed to MotoConfiguration::skipCvc.
    • To request access to the this private preview, please contact Stripe Support.

Platform & Initialization

  • Terminal.init has replaced Terminal.initTerminal. The new method now requires a nullable OfflineListener parameter.
  • Consolidated Reader serial number fields. Please use serialNumber across all reader types. The duplicative serial and rawSerialNumber fields have been removed.
  • Terminal::clearCachedCredentials now requires that no reader is connected. It now returns a ClearCachedCredentialsResult object, and will fail with an UNEXPECTED_OPERATION error if called while connected to a reader.

Reader Discovery & Connection

  • Internet reader discovery now supports filtering by Reader::id or Reader::serialNumber. You can set the new discoveryFilter property on the InternetDiscoveryConfiguration to discover a specific reader.
  • The InternetConnectionConfiguration constructor parameters have been reordered, moving the required internetReaderListener parameter first to better support optional parameters.
  • The Terminal.connectedReader property will now remain null until the connection completes successfully. Previously, the property would be populated while the connection was still in progress.

Payment & Data Collection

  • Customer-initiated cancellation is now enabled by default on Smart readers during all relevant flows: payment collection, setup intents, refunds, and data collection flows. This feature can be disabled by setting customerCancellation to DISABLE_IF_AVAILABLE in the relevant collect configuration.
  • The PaymentStatus logic has been refined. After collectPaymentMethod succeeds, the status will transition to READY. However, if you call confirmPaymentIntent immediately from within the onSuccess callback of the collect, the status will skip READY and transition directly to PROCESSING.
  • The Cancelable::onSuccess callback is now guaranteed to be invoked after the operation being cancelled has failed, providing a single, reliable signal that the cancellation operation is complete.
  • Key configuration classes have been renamed to better reflect their purposes:
    • ConfirmConfiguration -> ConfirmPaymentIntentConfiguration
    • CollectConfiguration -> CollectPaymentIntentConfiguration
    • SetupIntentConfiguration -> CollectSetupIntentConfiguration
    • RefundConfiguration -> CollectRefundConfiguration

Tap to Pay

  • Increased the minimum OS version requirement to 33 (Android 13).
  • Tap to Pay on Android 5.0.0 requires that your Android device's KeyStore supports hardware-backed key agreements. This is checked automatically for you by Terminal.supportsReadersOfType(), but can also be verified by checking that your device's FEATURE_HARDWARE_KEYSTORE version is >= 100. This may not be supported if your device was released with Android 12 or lower, even if it has been upgraded to meet the Android 13 runtime requirement.
  • For production environments, reader discovery will now fail with a TAP_TO_PAY_INSECURE_ENVIRONMENT error if developer options, USB/Wi-Fi debugging, or other debug options are enabled on the device.
    • This does not apply to usage of the simulated Tap to Pay reader.
  • The TapToPayUxConfiguration.TapZone class has been refactored. The indicator and position fields have been replaced by a single TapZone object. You can now position the tap zone to the left or right side of the screen using TapZone.Left and TapZone.Right. The TapZone.Above and TapZone.Below options now also respect the horizontal bias value.
  • Added Discover payment method support for Tap to Pay on Android (Public Preview).

Apps on Devices

  • The Maven coordinates for this feature has changed to com.stripe:stripterminal-appsondevices:5.0.0. Please update your build dependencies.
  • "Handoff" has been renamed to "Apps on Devices" to better reflect the feature's functionality. The following classes have been renamed:
    • HandoffReaderListener -> AppsOnDevicesReaderListener

... (truncated)

Commits

Updates com.stripe:stripeterminal-core from 4.7.5 to 5.0.0

Release notes

Sourced from com.stripe:stripeterminal-core's releases.

5.0.0

If you're using Gradle, update your build file to:

implementation "com.stripe:stripeterminal:5.0.0"

See CHANGELOG.md for details.

4.7.6

If you're using Gradle, update your build file to:

implementation "com.stripe:stripeterminal:4.7.6"

See CHANGELOG.md for details.

Changelog

Sourced from com.stripe:stripeterminal-core's changelog.

5.0.0 - 2025-11-03

5.0.0 includes breaking changes in both APIs and behavior. See the migration guide for more details.

⚠️ Breaking changes required

New Features and Previews

New

  • Simplified payment integration - Added Terminal.processPaymentIntent, Terminal.processSetupIntent and Terminal.processRefund. These new methods combine the collect and confirm steps into a single operation.
  • Coroutine support for Kotlin - A new optional module, com.stripe:stripeterminal-ktx:5.0.0 is now available. This module provides suspend function wrappers for asynchronous Terminal APIs, allowing you to write simple, sequential code instead of nesting callbacks.
  • Streamlined Connection flow - For Tap to Pay, smart readers, and Apps on Devices integrations, you can now use Terminal.easyConnect which combines the discovery and connection steps into a single method call.
  • RECONNECTING status - Added a new enum value RECONNECTING to ConnectionStatus. This new status is used specifically when an auto-reconnect operation is in progress.

Preview

  • Collect NFC and swiped data - The SDK now returns new, specific subclasses for this data: CollectData.Magstripe and CollectData.NfcUid.
  • Mail Order / Telephone Order (MOTO) Payments - The moto booleans on CollectConfiguration and SetupIntentConfiguration have been removed. To enable MOTO payments, you must now pass a non-null MotoConfiguration object to your collect configuration.
    • As past of this change, MotoConfiguration::skipCvv has been renamed to MotoConfiguration::skipCvc.
    • To request access to the this private preview, please contact Stripe Support.

Platform & Initialization

  • Terminal.init has replaced Terminal.initTerminal. The new method now requires a nullable OfflineListener parameter.
  • Consolidated Reader serial number fields. Please use serialNumber across all reader types. The duplicative serial and rawSerialNumber fields have been removed.
  • Terminal::clearCachedCredentials now requires that no reader is connected. It now returns a ClearCachedCredentialsResult object, and will fail with an UNEXPECTED_OPERATION error if called while connected to a reader.

Reader Discovery & Connection

  • Internet reader discovery now supports filtering by Reader::id or Reader::serialNumber. You can set the new discoveryFilter property on the InternetDiscoveryConfiguration to discover a specific reader.
  • The InternetConnectionConfiguration constructor parameters have been reordered, moving the required internetReaderListener parameter first to better support optional parameters.
  • The Terminal.connectedReader property will now remain null until the connection completes successfully. Previously, the property would be populated while the connection was still in progress.

Payment & Data Collection

  • Customer-initiated cancellation is now enabled by default on Smart readers during all relevant flows: payment collection, setup intents, refunds, and data collection flows. This feature can be disabled by setting customerCancellation to DISABLE_IF_AVAILABLE in the relevant collect configuration.
  • The PaymentStatus logic has been refined. After collectPaymentMethod succeeds, the status will transition to READY. However, if you call confirmPaymentIntent immediately from within the onSuccess callback of the collect, the status will skip READY and transition directly to PROCESSING.
  • The Cancelable::onSuccess callback is now guaranteed to be invoked after the operation being cancelled has failed, providing a single, reliable signal that the cancellation operation is complete.
  • Key configuration classes have been renamed to better reflect their purposes:
    • ConfirmConfiguration -> ConfirmPaymentIntentConfiguration
    • CollectConfiguration -> CollectPaymentIntentConfiguration
    • SetupIntentConfiguration -> CollectSetupIntentConfiguration
    • RefundConfiguration -> CollectRefundConfiguration

Tap to Pay

  • Increased the minimum OS version requirement to 33 (Android 13).
  • Tap to Pay on Android 5.0.0 requires that your Android device's KeyStore supports hardware-backed key agreements. This is checked automatically for you by Terminal.supportsReadersOfType(), but can also be verified by checking that your device's FEATURE_HARDWARE_KEYSTORE version is >= 100. This may not be supported if your device was released with Android 12 or lower, even if it has been upgraded to meet the Android 13 runtime requirement.
  • For production environments, reader discovery will now fail with a TAP_TO_PAY_INSECURE_ENVIRONMENT error if developer options, USB/Wi-Fi debugging, or other debug options are enabled on the device.
    • This does not apply to usage of the simulated Tap to Pay reader.
  • The TapToPayUxConfiguration.TapZone class has been refactored. The indicator and position fields have been replaced by a single TapZone object. You can now position the tap zone to the left or right side of the screen using TapZone.Left and TapZone.Right. The TapZone.Above and TapZone.Below options now also respect the horizontal bias value.
  • Added Discover payment method support for Tap to Pay on Android (Public Preview).

Apps on Devices

  • The Maven coordinates for this feature has changed to com.stripe:stripterminal-appsondevices:5.0.0. Please update your build dependencies.
  • "Handoff" has been renamed to "Apps on Devices" to better reflect the feature's functionality. The following classes have been renamed:
    • HandoffReaderListener -> AppsOnDevicesReaderListener

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `stripe-terminal` from 4.7.5 to 5.0.0.

Updates `com.stripe:stripeterminal-taptopay` from 4.7.5 to 5.0.0
- [Release notes](https://github.com/stripe/stripe-terminal-android/releases)
- [Changelog](https://github.com/stripe/stripe-terminal-android/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-terminal-android@v4.7.5...v5.0.0)

Updates `com.stripe:stripeterminal-core` from 4.7.5 to 5.0.0
- [Release notes](https://github.com/stripe/stripe-terminal-android/releases)
- [Changelog](https://github.com/stripe/stripe-terminal-android/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-terminal-android@v4.7.5...v5.0.0)

---
updated-dependencies:
- dependency-name: com.stripe:stripeterminal-taptopay
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: com.stripe:stripeterminal-core
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the bot: dependencies update PRs that update a dependency file, used by Dependabot. label Dec 17, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 17, 2025 18:25
@dependabot dependabot bot added the bot: dependencies update PRs that update a dependency file, used by Dependabot. label Dec 17, 2025
@dependabot dependabot bot requested review from kidinov and removed request for a team December 17, 2025 18:25
@dangermattic
Copy link
Collaborator

1 Error
🚫 PR is not assigned to a milestone.

Generated by 🚫 Danger

@wpmobilebot
Copy link
Collaborator

📲 You can test the changes from this Pull Request in WooCommerce-Wear Android by scanning the QR code below to install the corresponding build.
App NameWooCommerce-Wear Android
Platform⌚️ Wear OS
FlavorJalapeno
Build TypeDebug
Commit3f07a60
Direct Downloadwoocommerce-wear-prototype-build-pr15126-3f07a60.apk

@wpmobilebot
Copy link
Collaborator

Project dependencies changes

list
+ New Dependencies
androidx.graphics:graphics-shapes:1.0.1
androidx.graphics:graphics-shapes-android:1.0.1

- Removed Dependencies
app.cash.sqldelight:android-driver:2.0.2
app.cash.sqldelight:runtime:2.0.2
app.cash.sqldelight:runtime-jvm:2.0.2

! Upgraded Dependencies
androidx.dynamicanimation:dynamicanimation:1.1.0, (changed from 1.0.0)
com.google.android.material:material:1.13.0, (changed from 1.12.0)
com.stripe:stripeterminal-core:5.0.0, (changed from 4.7.5)
com.stripe:stripeterminal-external:5.0.0, (changed from 4.7.5)
com.stripe:stripeterminal-internal-common:5.0.0, (changed from 4.7.5)
com.stripe:stripeterminal-taptopay:5.0.0, (changed from 4.7.5)
tree
-+--- com.google.android.material:material:1.12.0
-|    +--- org.jetbrains.kotlin:kotlin-bom:1.8.22
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.21 (c)
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (c)
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (c)
-|    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.8.22 -> 1.9.25 (c)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (c)
-|    +--- com.google.errorprone:error_prone_annotations:2.15.0 -> 2.41.0
-|    +--- androidx.activity:activity:1.8.0 -> 1.9.1 (*)
-|    +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*)
-|    +--- androidx.appcompat:appcompat:1.6.1 -> 1.7.1 (*)
-|    +--- androidx.cardview:cardview:1.0.0
-|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*)
-|    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0
-|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*)
-|    |    +--- androidx.core:core:1.1.0 -> 1.17.0 (*)
-|    |    +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
-|    |    \--- androidx.collection:collection:1.0.0 -> 1.5.0 (*)
-|    +--- androidx.constraintlayout:constraintlayout:2.0.1 -> 2.2.1 (*)
-|    +--- androidx.core:core:1.6.0 -> 1.17.0 (*)
-|    +--- androidx.drawerlayout:drawerlayout:1.1.1 (*)
-|    +--- androidx.dynamicanimation:dynamicanimation:1.0.0
-|    |    +--- androidx.core:core:1.0.0 -> 1.17.0 (*)
-|    |    +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*)
-|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-|    +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.5.0 (*)
-|    +--- androidx.fragment:fragment:1.2.5 -> 1.8.9 (*)
-|    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.10.0 (*)
-|    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.4.0 (*)
-|    +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 (*)
-|    +--- androidx.transition:transition:1.5.0 -> 1.6.0
-|    |    +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*)
-|    |    +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*)
-|    |    +--- androidx.core:core:1.16.0 -> 1.17.0 (*)
-|    |    +--- androidx.dynamicanimation:dynamicanimation:1.0.0 (*)
-|    |    \--- org.jspecify:jspecify:1.0.0
-|    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-|    \--- androidx.viewpager2:viewpager2:1.0.0 -> 1.1.0-beta02
-|         +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*)
-|         +--- androidx.annotation:annotation-experimental:1.3.0 -> 1.5.0 (*)
-|         +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*)
-|         +--- androidx.core:core:1.3.2 -> 1.17.0 (*)
-|         +--- androidx.fragment:fragment:1.1.0 -> 1.8.9 (*)
-|         \--- androidx.recyclerview:recyclerview:1.3.1-rc01 -> 1.4.0 (*)
++--- com.google.android.material:material:1.12.0 -> 1.13.0
+|    +--- org.jetbrains.kotlin:kotlin-bom:1.8.22
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.21 (c)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (c)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (c)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (c)
+|    |    \--- org.jetbrains.kotlin:kotlin-reflect:1.8.22 -> 1.9.25 (c)
+|    +--- com.google.errorprone:error_prone_annotations:2.15.0 -> 2.41.0
+|    +--- androidx.activity:activity:1.8.0 -> 1.9.1 (*)
+|    +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*)
+|    +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.5.0 (*)
+|    +--- androidx.appcompat:appcompat:1.7.0 -> 1.7.1 (*)
+|    +--- androidx.cardview:cardview:1.0.0
+|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*)
+|    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0
+|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*)
+|    |    +--- androidx.core:core:1.1.0 -> 1.17.0 (*)
+|    |    +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
+|    |    \--- androidx.collection:collection:1.0.0 -> 1.5.0 (*)
+|    +--- androidx.constraintlayout:constraintlayout:2.1.0 -> 2.2.1 (*)
+|    +--- androidx.core:core:1.6.0 -> 1.17.0 (*)
+|    +--- androidx.drawerlayout:drawerlayout:1.1.1 (*)
+|    +--- androidx.dynamicanimation:dynamicanimation:1.1.0
+|    |    +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*)
+|    |    +--- androidx.core:core:1.1.0 -> 1.17.0 (*)
+|    |    \--- org.jspecify:jspecify:1.0.0
+|    +--- androidx.fragment:fragment:1.2.5 -> 1.8.9 (*)
+|    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.10.0 (*)
+|    +--- androidx.recyclerview:recyclerview:1.2.1 -> 1.4.0 (*)
+|    +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 (*)
+|    +--- androidx.transition:transition:1.5.0 -> 1.6.0
+|    |    +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*)
+|    |    +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*)
+|    |    +--- androidx.core:core:1.16.0 -> 1.17.0 (*)
+|    |    +--- androidx.dynamicanimation:dynamicanimation:1.0.0 -> 1.1.0 (*)
+|    |    \--- org.jspecify:jspecify:1.0.0
+|    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+|    +--- androidx.viewpager2:viewpager2:1.0.0 -> 1.1.0-beta02
+|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*)
+|    |    +--- androidx.annotation:annotation-experimental:1.3.0 -> 1.5.0 (*)
+|    |    +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*)
+|    |    +--- androidx.core:core:1.3.2 -> 1.17.0 (*)
+|    |    +--- androidx.fragment:fragment:1.1.0 -> 1.8.9 (*)
+|    |    \--- androidx.recyclerview:recyclerview:1.3.1-rc01 -> 1.4.0 (*)
+|    \--- androidx.graphics:graphics-shapes:1.0.1
+|         \--- androidx.graphics:graphics-shapes-android:1.0.1
+|              +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*)
+|              +--- androidx.annotation:annotation-experimental:1.4.1 -> 1.5.0 (*)
+|              +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*)
+|              +--- androidx.core:core-ktx:1.10.0 -> 1.17.0 (*)
+|              \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.21 (*)
 +--- androidx.navigation:navigation-ui:2.9.5
-|    \--- com.google.android.material:material:1.4.0 -> 1.12.0 (*)
+|    \--- com.google.android.material:material:1.4.0 -> 1.13.0 (*)
 +--- org.wordpress:utils:3.15.0
-|    \--- com.google.android.material:material:1.2.1 -> 1.12.0 (*)
+|    \--- com.google.android.material:material:1.2.1 -> 1.13.0 (*)
 +--- project :libs:login
-|    \--- com.google.android.material:material:1.12.0 (*)
+|    \--- com.google.android.material:material:1.12.0 -> 1.13.0 (*)
 +--- org.wordpress:aztec:v2.1.4
-|    \--- com.google.android.material:material:1.0.0 -> 1.12.0 (*)
+|    \--- com.google.android.material:material:1.0.0 -> 1.13.0 (*)
 +--- project :libs:cardreader
-|    +--- com.stripe:stripeterminal-core:4.7.5
-|    |    +--- androidx.annotation:annotation:1.9.1 (*)
-|    |    +--- com.stripe:stripeterminal-external:4.7.5
-|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
-|    |    |    +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
-|    |    |    +--- androidx.annotation:annotation:1.9.1 (*)
-|    |    |    \--- com.squareup.moshi:moshi:1.15.2 (*)
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
-|    |    +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
-|    |    \--- com.stripe:stripeterminal-internal-common:4.7.5
-|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
-|    |         +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
-|    |         +--- androidx.annotation:annotation:1.9.1 (*)
-|    |         +--- androidx.core:core-ktx:1.13.1 -> 1.17.0 (*)
-|    |         +--- com.google.dagger:dagger:2.53 -> 2.57.2 (*)
-|    |         +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25
-|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
-|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
-|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2 (*)
-|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx3:1.8.1 -> 1.10.2
-|    |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|    |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|    |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2
-|    |         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|    |         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|    |         |    |    +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
-|    |         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.21 (*)
-|    |         |    +--- io.reactivex.rxjava3:rxjava:3.0.2 -> 3.1.10
-|    |         |    |    \--- org.reactivestreams:reactive-streams:1.0.4
-|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.21 (*)
-|    |         +--- com.squareup.moshi:moshi:1.15.2 (*)
-|    |         +--- com.squareup.moshi:moshi-adapters:1.15.2
-|    |         |    +--- com.squareup.moshi:moshi:1.15.2 (*)
-|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24 (*)
-|    |         +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3 -> 1.7.3 (*)
-|    |         +--- io.ktor:ktor-client-core:2.3.13
-|    |         |    \--- io.ktor:ktor-client-core-jvm:2.3.13
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2
-|    |         |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|    |         |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|    |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- io.ktor:ktor-http:2.3.13
-|    |         |         |    \--- io.ktor:ktor-http-jvm:2.3.13
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- io.ktor:ktor-utils:2.3.13
-|    |         |         |         |    \--- io.ktor:ktor-utils-jvm:2.3.13
-|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         +--- io.ktor:ktor-io:2.3.13
-|    |         |         |         |         |    \--- io.ktor:ktor-io-jvm:2.3.13
-|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         +--- io.ktor:ktor-events:2.3.13
-|    |         |         |    \--- io.ktor:ktor-events-jvm:2.3.13
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
-|    |         |         |         +--- io.ktor:ktor-utils:2.3.13 (*)
-|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         +--- io.ktor:ktor-websocket-serialization:2.3.13
-|    |         |         |    \--- io.ktor:ktor-websocket-serialization-jvm:2.3.13
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
-|    |         |         |         +--- io.ktor:ktor-serialization:2.3.13
-|    |         |         |         |    \--- io.ktor:ktor-serialization-jvm:2.3.13
-|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
-|    |         |         |         |         +--- io.ktor:ktor-websockets:2.3.13
-|    |         |         |         |         |    \--- io.ktor:ktor-websockets-jvm:2.3.13
-|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
-|    |         |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.7.1 -> 1.10.2
-|    |         |              +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36
-|    |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|    |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|    |         |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.21 (*)
-|    |         +--- io.ktor:ktor-client-content-negotiation:2.3.13
-|    |         |    \--- io.ktor:ktor-client-content-negotiation-jvm:2.3.13
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
-|    |         |         +--- io.ktor:ktor-serialization:2.3.13 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         +--- io.ktor:ktor-client-serialization:2.3.13
-|    |         |    \--- io.ktor:ktor-client-serialization-jvm:2.3.13
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1 -> 1.7.3 (*)
-|    |         |         +--- io.ktor:ktor-client-json:2.3.13
-|    |         |         |    \--- io.ktor:ktor-client-json-jvm:2.3.13
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
-|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         +--- io.ktor:ktor-serialization-kotlinx-json:2.3.13
-|    |         |    \--- io.ktor:ktor-serialization-kotlinx-json-jvm:2.3.13
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- io.ktor:ktor-http:2.3.13 (*)
-|    |         |         +--- io.ktor:ktor-serialization-kotlinx:2.3.13
-|    |         |         |    \--- io.ktor:ktor-serialization-kotlinx-jvm:2.3.13
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
-|    |         |         |         +--- io.ktor:ktor-serialization:2.3.13 (*)
-|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.5.1 -> 1.7.3 (*)
-|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1 -> 1.7.3 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         +--- io.ktor:ktor-client-okhttp:2.3.13
-|    |         |    \--- io.ktor:ktor-client-okhttp-jvm:2.3.13
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
-|    |         |         +--- org.slf4j:slf4j-api:1.7.36
-|    |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
-|    |         |         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.2 (*)
-|    |         |         +--- com.squareup.okio:okio:3.7.0 -> 3.16.4 (*)
-|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
-|    |         +--- com.google.code.gson:gson:2.12.1 -> 2.13.2 (*)
-|    |         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.2 (*)
-|    |         +--- com.squareup.okhttp3:okhttp-tls:4.12.0 -> 5.3.2 (*)
-|    |         +--- com.squareup.tape2:tape:2.0.0-beta1
-|    |         +--- app.cash.sqldelight:android-driver:2.0.2
-|    |         |    +--- androidx.sqlite:sqlite-framework:2.4.0 -> 2.6.2 (*)
-|    |         |    +--- app.cash.sqldelight:runtime:2.0.2
-|    |         |    |    \--- app.cash.sqldelight:runtime-jvm:2.0.2
-|    |         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.21 (*)
-|    |         |    +--- androidx.sqlite:sqlite:2.4.0 -> 2.6.2 (*)
-|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.21 (*)
-|    |         +--- androidx.security:security-crypto:1.1.0-alpha03 -> 1.1.0 (*)
-|    |         +--- androidx.lifecycle:lifecycle-process:2.8.7 -> 2.10.0 (*)
-|    |         +--- androidx.room:room-runtime:2.6.1 -> 2.8.4 (*)
-|    |         +--- androidx.room:room-ktx:2.6.1 -> 2.8.4 (*)
-|    |         +--- com.scottyab:rootbeer-lib:0.1.1
-|    |         +--- org.kamranzafar:jtar:2.3
-|    |         +--- com.squareup.wire:wire-moshi-adapter:4.9.11
-|    |         |    +--- com.squareup.wire:wire-runtime:4.9.11
-|    |         |    |    \--- com.squareup.wire:wire-runtime-jvm:4.9.11
-|    |         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 -> 1.9.24 (*)
-|    |         |    |         +--- com.squareup.okio:okio:3.7.0 -> 3.16.4 (*)
-|    |         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 -> 2.2.21 (*)
-|    |         |    +--- com.squareup.moshi:moshi:1.15.0 -> 1.15.2 (*)
-|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 -> 1.9.24 (*)
-|    |         +--- com.squareup.wire:wire-runtime:4.9.11 (*)
-|    |         \--- com.stripe:stripeterminal-external:4.7.5 (*)
+|    +--- com.stripe:stripeterminal-core:5.0.0
+|    |    +--- androidx.annotation:annotation:1.9.1 (*)
+|    |    +--- com.stripe:stripeterminal-external:5.0.0
+|    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
+|    |    |    +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
+|    |    |    +--- androidx.annotation:annotation:1.9.1 (*)
+|    |    |    \--- com.squareup.moshi:moshi:1.15.2 (*)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
+|    |    +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
+|    |    \--- com.stripe:stripeterminal-internal-common:5.0.0
+|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
+|    |         +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
+|    |         +--- androidx.annotation:annotation:1.9.1 (*)
+|    |         +--- androidx.core:core-ktx:1.13.1 -> 1.17.0 (*)
+|    |         +--- com.google.dagger:dagger:2.53 -> 2.57.2 (*)
+|    |         +--- org.jetbrains.kotlin:kotlin-reflect:1.9.25
+|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
+|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
+|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2 (*)
+|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx3:1.8.1 -> 1.10.2
+|    |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
+|    |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2
+|    |         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
+|    |         |    |    +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
+|    |         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.21 (*)
+|    |         |    +--- io.reactivex.rxjava3:rxjava:3.0.2 -> 3.1.10
+|    |         |    |    \--- org.reactivestreams:reactive-streams:1.0.4
+|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.21 (*)
+|    |         +--- com.squareup.moshi:moshi:1.15.2 (*)
+|    |         +--- com.squareup.moshi:moshi-adapters:1.15.2
+|    |         |    +--- com.squareup.moshi:moshi:1.15.2 (*)
+|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24 (*)
+|    |         +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3 -> 1.7.3 (*)
+|    |         +--- io.ktor:ktor-client-core:2.3.13
+|    |         |    \--- io.ktor:ktor-client-core-jvm:2.3.13
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2
+|    |         |         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |         |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
+|    |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- io.ktor:ktor-http:2.3.13
+|    |         |         |    \--- io.ktor:ktor-http-jvm:2.3.13
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- io.ktor:ktor-utils:2.3.13
+|    |         |         |         |    \--- io.ktor:ktor-utils-jvm:2.3.13
+|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         +--- io.ktor:ktor-io:2.3.13
+|    |         |         |         |         |    \--- io.ktor:ktor-io-jvm:2.3.13
+|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         +--- io.ktor:ktor-events:2.3.13
+|    |         |         |    \--- io.ktor:ktor-events-jvm:2.3.13
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
+|    |         |         |         +--- io.ktor:ktor-utils:2.3.13 (*)
+|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         +--- io.ktor:ktor-websocket-serialization:2.3.13
+|    |         |         |    \--- io.ktor:ktor-websocket-serialization-jvm:2.3.13
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
+|    |         |         |         +--- io.ktor:ktor-serialization:2.3.13
+|    |         |         |         |    \--- io.ktor:ktor-serialization-jvm:2.3.13
+|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
+|    |         |         |         |         +--- io.ktor:ktor-websockets:2.3.13
+|    |         |         |         |         |    \--- io.ktor:ktor-websockets-jvm:2.3.13
+|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
+|    |         |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:1.7.1 -> 1.10.2
+|    |         |              +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36
+|    |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
+|    |         |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.21 (*)
+|    |         +--- io.ktor:ktor-client-content-negotiation:2.3.13
+|    |         |    \--- io.ktor:ktor-client-content-negotiation-jvm:2.3.13
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
+|    |         |         +--- io.ktor:ktor-serialization:2.3.13 (*)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         +--- io.ktor:ktor-client-serialization:2.3.13
+|    |         |    \--- io.ktor:ktor-client-serialization-jvm:2.3.13
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1 -> 1.7.3 (*)
+|    |         |         +--- io.ktor:ktor-client-json:2.3.13
+|    |         |         |    \--- io.ktor:ktor-client-json-jvm:2.3.13
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
+|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         +--- io.ktor:ktor-serialization-kotlinx-json:2.3.13
+|    |         |    \--- io.ktor:ktor-serialization-kotlinx-json-jvm:2.3.13
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- io.ktor:ktor-http:2.3.13 (*)
+|    |         |         +--- io.ktor:ktor-serialization-kotlinx:2.3.13
+|    |         |         |    \--- io.ktor:ktor-serialization-kotlinx-jvm:2.3.13
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         |         +--- io.ktor:ktor-http:2.3.13 (*)
+|    |         |         |         +--- io.ktor:ktor-serialization:2.3.13 (*)
+|    |         |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.5.1 -> 1.7.3 (*)
+|    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1 -> 1.7.3 (*)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         +--- io.ktor:ktor-client-okhttp:2.3.13
+|    |         |    \--- io.ktor:ktor-client-okhttp-jvm:2.3.13
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.24 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.1 -> 1.10.2 (*)
+|    |         |         +--- org.slf4j:slf4j-api:1.7.36
+|    |         |         +--- io.ktor:ktor-client-core:2.3.13 (*)
+|    |         |         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.2 (*)
+|    |         |         +--- com.squareup.okio:okio:3.7.0 -> 3.16.4 (*)
+|    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.10.2 (*)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.21 (*)
+|    |         +--- com.google.code.gson:gson:2.12.1 -> 2.13.2 (*)
+|    |         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.2 (*)
+|    |         +--- com.squareup.okhttp3:okhttp-tls:4.12.0 -> 5.3.2 (*)
+|    |         +--- com.squareup.tape2:tape:2.0.0-beta1
+|    |         +--- androidx.security:security-crypto:1.1.0-alpha03 -> 1.1.0 (*)
+|    |         +--- androidx.lifecycle:lifecycle-process:2.8.7 -> 2.10.0 (*)
+|    |         +--- androidx.room:room-runtime:2.6.1 -> 2.8.4 (*)
+|    |         +--- androidx.room:room-ktx:2.6.1 -> 2.8.4 (*)
+|    |         +--- com.scottyab:rootbeer-lib:0.1.1
+|    |         +--- org.kamranzafar:jtar:2.3
+|    |         +--- com.squareup.wire:wire-moshi-adapter:4.9.11
+|    |         |    +--- com.squareup.wire:wire-runtime:4.9.11
+|    |         |    |    \--- com.squareup.wire:wire-runtime-jvm:4.9.11
+|    |         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 -> 1.9.24 (*)
+|    |         |    |         +--- com.squareup.okio:okio:3.7.0 -> 3.16.4 (*)
+|    |         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 -> 2.2.21 (*)
+|    |         |    +--- com.squareup.moshi:moshi:1.15.0 -> 1.15.2 (*)
+|    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 -> 1.9.24 (*)
+|    |         +--- com.squareup.wire:wire-runtime:4.9.11 (*)
+|    |         +--- com.stripe:stripeterminal-external:5.0.0 (*)
+|    |         +--- androidx.sqlite:sqlite:2.4.0 -> 2.6.2 (*)
+|    |         \--- androidx.sqlite:sqlite-framework:2.4.0 -> 2.6.2 (*)
-|    \--- com.stripe:stripeterminal-taptopay:4.7.5
-|         +--- androidx.databinding:viewbinding:8.8.2 -> 8.13.2 (*)
-|         +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
-|         +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
-|         +--- androidx.annotation:annotation:1.9.1 (*)
-|         +--- androidx.constraintlayout:constraintlayout:2.1.4 -> 2.2.1 (*)
-|         +--- androidx.core:core-ktx:1.13.1 -> 1.17.0 (*)
-|         +--- androidx.fragment:fragment-ktx:1.8.7 -> 1.8.9 (*)
-|         +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.10.0 (*)
-|         +--- androidx.lifecycle:lifecycle-process:2.8.7 -> 2.10.0 (*)
-|         +--- com.scottyab:rootbeer-lib:0.1.1
-|         +--- com.google.android.play:integrity:1.1.0
-|         |    +--- com.google.android.gms:play-services-basement:18.1.0 -> 18.5.0 (*)
-|         |    \--- com.google.android.gms:play-services-tasks:18.0.2 -> 18.2.0 (*)
-|         +--- com.google.android.material:material:1.12.0 (*)
-|         +--- com.google.dagger:dagger:2.53 -> 2.57.2 (*)
-|         +--- com.google.code.gson:gson:2.12.1 -> 2.13.2 (*)
-|         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.2 (*)
-|         +--- com.squareup.okhttp3:okhttp-tls:4.12.0 -> 5.3.2 (*)
-|         +--- io.reactivex.rxjava3:rxjava:3.1.10 (*)
-|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2 (*)
-|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
-|         +--- com.squareup.wire:wire-moshi-adapter:4.9.11 (*)
-|         +--- com.stripe:stripeterminal-external:4.7.5 (*)
-|         +--- com.stripe:stripeterminal-internal-common:4.7.5 (*)
-|         +--- com.fasterxml.jackson.core:jackson-databind:2.16.1
-|         |    +--- com.fasterxml.jackson.core:jackson-annotations:2.16.1
-|         |    |    \--- com.fasterxml.jackson:jackson-bom:2.16.1
-|         |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.16.1 (c)
-|         |    |         +--- com.fasterxml.jackson.core:jackson-core:2.16.1 (c)
-|         |    |         \--- com.fasterxml.jackson.core:jackson-databind:2.16.1 (c)
-|         |    +--- com.fasterxml.jackson.core:jackson-core:2.16.1
-|         |    |    \--- com.fasterxml.jackson:jackson-bom:2.16.1 (*)
-|         |    \--- com.fasterxml.jackson:jackson-bom:2.16.1 (*)
-|         \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations:1.8.1
-|              \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations-jvm:1.8.1
-|                   \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.21 (*)
+|    \--- com.stripe:stripeterminal-taptopay:5.0.0
+|         +--- androidx.databinding:viewbinding:8.8.2 -> 8.13.2 (*)
+|         +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.25 -> 2.2.21 (*)
+|         +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.25 -> 2.2.21 (*)
+|         +--- androidx.annotation:annotation:1.9.1 (*)
+|         +--- androidx.constraintlayout:constraintlayout:2.1.4 -> 2.2.1 (*)
+|         +--- androidx.core:core-ktx:1.13.1 -> 1.17.0 (*)
+|         +--- androidx.fragment:fragment-ktx:1.8.9 (*)
+|         +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.10.0 (*)
+|         +--- androidx.lifecycle:lifecycle-process:2.8.7 -> 2.10.0 (*)
+|         +--- com.scottyab:rootbeer-lib:0.1.1
+|         +--- com.google.android.play:integrity:1.1.0
+|         |    +--- com.google.android.gms:play-services-basement:18.1.0 -> 18.5.0 (*)
+|         |    \--- com.google.android.gms:play-services-tasks:18.0.2 -> 18.2.0 (*)
+|         +--- com.google.android.material:material:1.13.0 (*)
+|         +--- com.google.dagger:dagger:2.53 -> 2.57.2 (*)
+|         +--- com.google.code.gson:gson:2.12.1 -> 2.13.2 (*)
+|         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.3.2 (*)
+|         +--- com.squareup.okhttp3:okhttp-tls:4.12.0 -> 5.3.2 (*)
+|         +--- io.reactivex.rxjava3:rxjava:3.1.10 (*)
+|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2 (*)
+|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
+|         +--- com.squareup.wire:wire-moshi-adapter:4.9.11 (*)
+|         +--- com.stripe:stripeterminal-external:5.0.0 (*)
+|         +--- com.stripe:stripeterminal-internal-common:5.0.0 (*)
+|         +--- com.fasterxml.jackson.core:jackson-databind:2.16.1
+|         |    +--- com.fasterxml.jackson.core:jackson-annotations:2.16.1
+|         |    |    \--- com.fasterxml.jackson:jackson-bom:2.16.1
+|         |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.16.1 (c)
+|         |    |         +--- com.fasterxml.jackson.core:jackson-core:2.16.1 (c)
+|         |    |         \--- com.fasterxml.jackson.core:jackson-databind:2.16.1 (c)
+|         |    +--- com.fasterxml.jackson.core:jackson-core:2.16.1
+|         |    |    \--- com.fasterxml.jackson:jackson-bom:2.16.1 (*)
+|         |    \--- com.fasterxml.jackson:jackson-bom:2.16.1 (*)
+|         \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations:1.8.1
+|              \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations-jvm:1.8.1
+|                   \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.21 (*)
 +--- com.zendesk:support:5.5.1
-|    +--- com.google.android.material:material:1.4.0 -> 1.12.0 (*)
+|    +--- com.google.android.material:material:1.4.0 -> 1.13.0 (*)
 |    \--- com.zendesk:guide:1.5.1
-|         +--- com.google.android.material:material:1.4.0 -> 1.12.0 (*)
+|         +--- com.google.android.material:material:1.4.0 -> 1.13.0 (*)
 |         \--- com.zendesk:messaging:5.7.1
-|              +--- com.google.android.material:material:1.4.0 -> 1.12.0 (*)
+|              +--- com.google.android.material:material:1.4.0 -> 1.13.0 (*)
 |              \--- com.zendesk:common-ui:4.4.0
-|                   \--- com.google.android.material:material:1.4.0 -> 1.12.0 (*)
+|                   \--- com.google.android.material:material:1.4.0 -> 1.13.0 (*)
 \--- org.wordpress:mediapicker:0.3.4
-     \--- com.google.android.material:material:1.6.1 -> 1.12.0 (*)
+     \--- com.google.android.material:material:1.6.1 -> 1.13.0 (*)

@wpmobilebot
Copy link
Collaborator

🤖 Build Failure Analysis

This build has failures. Claude has analyzed them - check the build annotations for details.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot: dependencies update PRs that update a dependency file, used by Dependabot.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants