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:

Is this version not yet included in the Maven repository? Am I doing something wrong? Thanks for your help!
My current libs config:
agp = "9.1.1" kotlin = "2.3.0" ksp = "2.3.4" composeBom = "2026.06.00" // with 2026.05.01 works fine
gradle-wrapper:
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
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.
CommonsWare