Upgrade compose bom to 2024.12.01

The latest version of `androidx.compose.foundation:foundation` fixed an issue where `AndroidEmbeddedExternalSurface` would not reset properly. This in turn prevented PlayerSurface Composable with type `SURFACE_TYPE_TEXTURE_VIEW` from being redrawn after returning to a stopped activity.

PiperOrigin-RevId: 712501647
This commit is contained in:
jbibik 2025-01-06 06:02:55 -08:00 committed by Copybara-Service
parent d01d10ce0e
commit d8333b37cf
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ android {
} }
dependencies { dependencies {
def composeBom = platform('androidx.compose:compose-bom:2024.05.00') def composeBom = platform('androidx.compose:compose-bom:2024.12.01')
implementation composeBom implementation composeBom
implementation 'androidx.activity:activity-compose:1.9.0' implementation 'androidx.activity:activity-compose:1.9.0'

View File

@ -50,7 +50,7 @@ dependencies {
api project(modulePrefix + 'lib-common') api project(modulePrefix + 'lib-common')
api project(modulePrefix + 'lib-common-ktx') api project(modulePrefix + 'lib-common-ktx')
def composeBom = platform('androidx.compose:compose-bom:2024.01.00') def composeBom = platform('androidx.compose:compose-bom:2024.12.01')
implementation composeBom implementation composeBom
implementation 'androidx.compose.foundation:foundation' implementation 'androidx.compose.foundation:foundation'