Gradle cannot resolve androidx.compose:compose-bom:2026.06.00


PROBLEM

I want to upgrade my Jetpack Compose version to the latest available release. According to the Compose BOM mapping page: <https://developer.android.com/develop/ui/compose/bom/bom-mapping> the latest Compose BOM version appears to be 2026.06.00.

However, when I try to use it in my project, Gradle fails with the following error:

enter image description here

Is this version not yet included in the Maven repository? Am I doing something wrong? Thanks for your help!

PROJECT

My current libs config:

agp = &quot;9.1.1&quot; kotlin = &quot;2.3.0&quot; ksp = &quot;2.3.4&quot; composeBom = &quot;2026.06.00&quot; // with 2026.05.01 works fine

gradle-wrapper:

distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
2
Jun 8 at 1:36 PM
User AvatarStanisław Olszak
#android#android-jetpack-compose

Accepted Answer

As of when I write this, that BOM is not in the Google Maven repo, which is where it should reside. It is possible the docs are incorrect.

User AvatarCommonsWare
Jun 8 at 1:38 PM
2