Update the Compose BOM to v2026.01.00 (#6401)

This commit is contained in:
David Perez 2026-01-27 09:21:13 -06:00 committed by GitHub
parent 006a13d5ac
commit 0f05e30997
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -19,7 +19,7 @@ androdixAutofill = "1.3.0"
androidxBiometrics = "1.2.0-alpha05"
androidxBrowser = "1.9.0"
androidxCamera = "1.5.2"
androidxComposeBom = "2025.12.01"
androidxComposeBom = "2026.01.00"
androidxCore = "1.17.0"
androidxCredentials = "1.6.0-beta03"
androidxCredentialsProviderEvents = "1.0.0-alpha03"

View File

@ -3,7 +3,6 @@ package com.bitwarden.ui.platform.base
import androidx.activity.OnBackPressedDispatcher
import androidx.activity.compose.LocalOnBackPressedDispatcherOwner
import androidx.compose.runtime.Composable
import androidx.compose.ui.test.ExperimentalTestApi
import androidx.compose.ui.test.junit4.createComposeRule
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.test.UnconfinedTestDispatcher
@ -17,7 +16,6 @@ abstract class BaseComposeTest : BaseRobolectricTest() {
@OptIn(ExperimentalCoroutinesApi::class)
protected val dispatcher = UnconfinedTestDispatcher()
@OptIn(ExperimentalTestApi::class)
@get:Rule
val composeTestRule = createComposeRule(effectContext = dispatcher)