Latest update


Activity: v1.12.0-rc01

November 05, 2025

androidx.activity:activity:1.12.0-rc01, androidx.activity:activity-compose:1.12.0-rc01, and androidx.activity:activity-ktx:1.12.0-rc01 are released. Version 1.12.0-rc01 contains these commits.

Bug Fixes

appfunctions: v1.0.0-alpha06

November 05, 2025

androidx.appfunctions:appfunctions-*:1.0.0-alpha06 is released. Version 1.0.0-alpha06 contains these commits.

New Features

API Changes

Bug Fixes

Compose Animation: v1.10.0-beta02

November 05, 2025

androidx.compose.animation:animation-*:1.10.0-beta02 is released. Version 1.10.0-beta02 contains these commits.

Compose Foundation: v1.10.0-beta02

November 05, 2025

androidx.compose.foundation:foundation-*:1.10.0-beta02 is released. Version 1.10.0-beta02 contains these commits.

Compose Material: v1.10.0-beta02

November 05, 2025

androidx.compose.material:material-*:1.10.0-beta02 is released. Version 1.10.0-beta02 contains these commits.

Compose Material3: v1.5.0-alpha08

November 05, 2025

androidx.compose.material3:material3-*:1.5.0-alpha08 is released. Version 1.5.0-alpha08 contains these commits.

API Changes

Bug Fixes

Compose Material3 Adaptive: v1.3.0-alpha03

November 05, 2025

androidx.compose.material3.adaptive:adaptive-*:1.3.0-alpha03 is released. Version 1.3.0-alpha03 contains these commits.

Compose Runtime: v1.10.0-beta02

November 05, 2025

androidx.compose.runtime:runtime-*:1.10.0-beta02 is released. Version 1.10.0-beta02 contains these commits.

API Changes

Previously, installing a custom RetainedValuesStore may have looked like this:

  val retainedValuesStore = retainControlledRetainedValuesStore()
  if (active) {
      CompositionLocalProvider(LocalRetainedValuesStore provides retainedValuesStore) {
          content()
      }

      val composer = currentComposer
      DisposableEffect(retainedValuesStore) {
          val cancellationHandle =
              if (retainedValuesStore.retainExitedValuesRequestsFromSelf > 0) {
                  composer.scheduleFrameEndCallback {
                      retainedValuesStore.stopRetainingExitedValues()
                  }
              } else {
                  null
              }

          onDispose {
              cancellationHandle?.cancel()
              retainedValuesStore.startRetainingExitedValues()
          }
      }
  }

With these API changes, this installation can be expressed with this code instead:

  val retainedValuesStore = retainManagedRetainedValuesStore()
  if (active) {
      LocalRetainedValuesStoreProvider(retainedValuesStore) {
          content()
      }
  }

Bug Fixes

Compose UI: v1.10.0-beta02

November 05, 2025

androidx.compose.ui:ui-*:1.10.0-beta02 is released. Version 1.10.0-beta02 contains these commits.

Core Splashscreen: v1.2.0

November 05, 2025

androidx.core:core-splashscreen:1.2.0 is released. Version 1.2.0 contains these commits.

Core-Backported-Fixes: v1.0.0-beta02

November 05, 2025

androidx.core:core-backported-fixes:1.0.0-beta02 is released. Version 1.0.0-beta02 contains these commits.

API Changes

Bug Fixes

Core-location-altitude: v1.0.0-beta01

November 05, 2025

androidx.core:core-location-altitude:1.0.0-beta01, androidx.core:core-location-altitude-external-protobuf:1.0.0-beta01, and androidx.core:core-location-altitude-proto:1.0.0-beta01 are released with no notable changes since the last alpha. Version 1.0.0-beta01 contains these commits.

DataStore: v1.2.0-rc01

November 05, 2025

androidx.datastore:datastore-*:1.2.0-rc01 is released. Version 1.2.0-rc01 contains these commits.

input: v1.0.0-rc01

November 05, 2025

androidx.input:input-motionprediction:1.0.0-rc01 is released. Version 1.0.0-rc01 contains these commits.

Bug Fixes

Lifecycle: v2.10.0-rc01

November 05, 2025

androidx.lifecycle:lifecycle-*:2.10.0-rc01 is released. Version 2.10.0-rc01 contains these commits.

Navigation: v2.9.6

November 05, 2025

androidx.navigation:navigation-*:2.9.6 is released. Version 2.9.6 contains these commits.

Bug Fixes

navigation3: v1.0.0-rc01

November 05, 2025

androidx.navigation3:navigation3-*:1.0.0-rc01 is released. Version 1.0.0-rc01 contains these commits.

Bug Fixes

navigationevent: v1.0.0-rc01

November 05, 2025

androidx.navigationevent:navigationevent-*:1.0.0-rc01 is released. Version 1.0.0-rc01 contains these commits.

Savedstate: v1.4.0

November 05, 2025

androidx.savedstate:savedstate-*:1.4.0 is released. Version 1.4.0 contains these commits.

Wear Compose: v1.5.5

November 05, 2025

androidx.wear.compose:compose-*:1.5.5 is released. Version 1.5.5 contains these commits.

Bug Fixes

xr glimmer: v1.0.0-alpha01

November 05, 2025

androidx.xr.glimmer:glimmer:1.0.0-alpha01 is released. Version 1.0.0-alpha01 contains these commits.

New Features