From cafba4da508ffa87ffc49a6bb3b0da0c1cdfdc87 Mon Sep 17 00:00:00 2001 From: Masashi Katsumata Date: Sun, 16 Aug 2026 23:45:38 +0900 Subject: [PATCH] Publish explicit versions for BOM-managed Compose dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Maven Central rejects a POM that declares a dependency without a version. The Compose BOM supplies those versions at resolution time, but a BOM does not travel in the published POM, so consumers who do not import the BOM themselves get an unresolvable dependency. Give the BOM-managed Compose artifacts an explicit version (`composeLibs`, 1.7.8 — what compose-bom 2025.02.00 resolves to) so the version reaches the POM. The BOM still governs resolution; this only fixes what is published. Release as 1.3.1: Maven Central versions cannot be replaced. --- gradle.properties | 4 ++-- gradle/libs.versions.toml | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index d0df7de..7a6ca24 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,6 +8,6 @@ minSdk=26 javaVersion=17 jvmTarget=17 -libraryVersion=1.3.0 -coreLibraryVersion=1.3.0 +libraryVersion=1.3.1 +coreLibraryVersion=1.3.1 android.generateSyncIssueWhenLibraryConstraintsAreEnabled=false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index aec4bad..7a4ee81 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,4 +1,5 @@ [versions] +composeLibs = "1.7.8" agp = "9.2.1" kotlin = "2.0.21" @@ -18,9 +19,9 @@ coreKtx = "1.16.0" [libraries] # Jetpack Compose (with BOM) androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } -androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } -androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } -androidx-foundation = { group = "androidx.compose.foundation", name = "foundation" } +androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview", version.ref = "composeLibs" } +androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling", version.ref = "composeLibs" } +androidx-foundation = { group = "androidx.compose.foundation", name = "foundation", version.ref = "composeLibs" } # Core androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }