Latest update


Annotation: v1.11.0-alpha01

July 15, 2026

androidx.annotation:annotation-*:1.11.0-alpha01 is released. Version 1.11.0-alpha01 contains these commits.

API Changes

Bug Fixes

AndroidX releases Stay organized with collections Save and categorize content based on your preferences.:

Compose Material3: v1.5.0-alpha24

July 15, 2026

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

Features

API Changes

Bug Fixes

remote compose: v1.0.0-alpha15

July 15, 2026

androidx.compose.remote:remote-*:1.0.0-alpha15 is released. Version 1.0.0-alpha15 contains these commits.

API Changes

Bug Fixes

Glance Wear: v1.0.0-alpha14

July 15, 2026

androidx.glance.wear:wear:1.0.0-alpha14, androidx.glance.wear:wear-core:1.0.0-alpha14, and androidx.glance.wear:wear-tooling-preview:1.0.0-alpha14 are released. Version 1.0.0-alpha14 contains these commits.

API Changes

New features

Ink: v1.1.0-alpha05

July 15, 2026

androidx.ink:ink-*:1.1.0-alpha05 is released. Version 1.1.0-alpha05 contains these commits.

API Changes

Bug Fixes

Loader: v1.2.0-rc01

July 15, 2026

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

Navigation3: v1.2.0-alpha06

July 15, 2026

androidx.navigation3:navigation3-*:1.2.0-alpha06 is released. Version 1.2.0-alpha06 contains these commits.

Bug Fixes

navigationevent: v1.2.0-alpha02

July 15, 2026

androidx.navigationevent:navigationevent-*:1.2.0-alpha02 is released. Version 1.2.0-alpha02 contains these commits.

API Changes

Bug Fixes

Tracing: v2.0.0-beta01

July 15, 2026

androidx.tracing:tracing-*:2.0.0-beta01 is released. Version 2.0.0-beta01 contains these commits.

API Changes

Bug Fixes

Version 2.0.0-alpha09

June 23, 2026

androidx.tracing:tracing-*:2.0.0-alpha09 is released. Version 2.0.0-alpha09 contains these commits.

API Changes

Version 2.0.0-alpha08

May 19, 2026

androidx.tracing:tracing-*:2.0.0-alpha08 is released. Version 2.0.0-alpha08 contains these commits.

API Changes

Version 2.0.0-alpha07

May 06, 2026

androidx.tracing:tracing-*:2.0.0-alpha07 is released. Version 2.0.0-alpha07 contains these commits.

API Changes

Bug Fixes

Version 2.0.0-alpha06

April 22, 2026

androidx.tracing:tracing-*:2.0.0-alpha06 is released. Version 2.0.0-alpha06 contains these commits.

API Changes

Bug Fixes

Version 2.0.0-alpha05

April 08, 2026

androidx.tracing:tracing-*:2.0.0-alpha05 is released. Version 2.0.0-alpha05 contains these commits.

API Changes

Bug Fixes

Version 2.0.0-alpha04

March 25, 2026

androidx.tracing:tracing-*:2.0.0-alpha04 is released. Version 2.0.0-alpha04 contains these commits.

API Changes

Version 2.0.0-alpha03

March 11, 2026

androidx.tracing:tracing-*:2.0.0-alpha03 is released. Version 2.0.0-alpha03 contains these commits.

API Changes

Bug Fixes

Version 2.0.0-alpha02

February 25, 2026

androidx.tracing:tracing-*:2.0.0-alpha02 is released. Version 2.0.0-alpha02 contains these commits.

New Features

Version 2.0.0-alpha01

January 28, 2026

androidx.tracing:tracing-*:2.0.0-alpha01 is released. Version 2.0.0-alpha01 contains these commits.

New Features

AndroidX Tracing 2.0 introduces a significant new API surface for low-overhead, in-process tracing, as a complement to the existing android.os.Tracing-based APIs in Tracing 1.0. The new APIs are available both on Android and host JVM, which enables host tools to emit low overhead traces for performance analysis, using the same standard Perfetto trace format.

Emitted traces are supported both by Android Studio and Perfetto, and can be recorded with an expanded feature set including tagging slices with metadata (such as function arguments!), and coroutine context trace propagation.

This initial alpha is only meant for in-process tracing workflows, and does not yet integrate with Android OS tracing or Studio Profiler System Tracing - these will be coming in a future alpha.

  /**
  * A [TraceSink] defines how traces are serialized.
  *
  * [androidx.tracing.wire.TraceSink] uses the `Perfetto` trace packet format.
  */
  fun createSink(): TraceSink {
      val outputDirectory = File(/* pathname = */ "/tmp/perfetto")
      // We are using the factory function defined in androidx.tracing.wire
      return TraceSink(
          sequenceId = 1,
          directory = outputDirectory
      )
  }

  /**
  * Creates a new instance of [androidx.tracing.TraceDriver].
  */
  fun createTraceDriver(): TraceDriver {
      // We are using a factory function from androidx.tracing.wire here.
      // `isEnabled` controls whether tracing is enabled for the application.
      val driver = TraceDriver(sink = createSink(), isEnabled = true)
      return driver
  }

  fun main() {
      val driver = createTraceDriver()
      driver.use {
          driver.tracer.trace(category = CATEGORY_MAIN, name = "basic") {
              Thread.sleep(100L)
          }
      }
  }

API Changes

Wear:

Wear Compose: v1.7.0-alpha06

July 15, 2026

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

API Changes

Bug Fixes

Webkit:

WorkManager: v2.12.0-alpha01

July 15, 2026

androidx.work:work-*:2.12.0-alpha01 is released. Version 2.12.0-alpha01 contains these commits.

API Changes

Bug Fixes

ARCore for Jetpack XR: v1.0.0-beta01

July 15, 2026

androidx.xr.arcore:arcore-*:1.0.0-beta01 is released. Version 1.0.0-beta01 contains these commits.

API Changes

Jetpack Compose for XR: v1.0.0-alpha16

July 15, 2026

androidx.xr.compose:compose:1.0.0-alpha16 and androidx.xr.compose:compose-testing:1.0.0-alpha16 are released. Version 1.0.0-alpha16 contains these commits.

API Changes

Bug Fixes

Most APIs will be affected by this. Specifically, the LocalSession CompositionLocal and all CompositionLocals that are dependent on LocalSession (e.g. LocalSpatialConfiguration, LocalSpatialCapabilities, etc.) will now resolve to null or its non-XR versions before the Session is initialized.

Once the Session is available, recomposition will be triggered with the correct state. (I0cfa4, b/514712835, b/514712835)

XR Projected: v1.0.0-alpha10

July 15, 2026

androidx.xr.projected:projected:1.0.0-alpha10, androidx.xr.projected:projected-binding:1.0.0-alpha10, and androidx.xr.projected:projected-testing:1.0.0-alpha10 are released. Version 1.0.0-alpha10 contains these commits.

API Changes

XR Runtime: v1.0.0-beta01

July 15, 2026

androidx.xr.runtime:runtime-*:1.0.0-beta01 is released. Version 1.0.0-beta01 contains these commits.

API Changes

Bug Fixes

Version 1.0.0-alpha15

June 17, 2026

androidx.xr.runtime:runtime-*:1.0.0-alpha15 is released. Version 1.0.0-alpha15 contains these commits.

API Changes

Jetpack SceneCore: v1.0.0-beta01

July 15, 2026

androidx.xr.scenecore:scenecore-*:1.0.0-beta01 is released. Version 1.0.0-beta01 contains these commits.

API Changes