From 575a2ebbd876cf1d7b53b6dc78ea08fa0ab3efed Mon Sep 17 00:00:00 2001 From: jbibik Date: Mon, 6 Jan 2025 09:31:46 -0800 Subject: [PATCH] [ui-compose] Add gradle version to `androidx.compose.foundation` This will ensure that the new `ui-compose` module gets published on Maven The fix is not necessary for `demo-effect` and `demo-compose` because they are not publishable PiperOrigin-RevId: 712555702 --- libraries/ui_compose/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/ui_compose/build.gradle b/libraries/ui_compose/build.gradle index 84376d7072..e6f09c0eda 100644 --- a/libraries/ui_compose/build.gradle +++ b/libraries/ui_compose/build.gradle @@ -53,7 +53,8 @@ dependencies { def composeBom = platform('androidx.compose:compose-bom:2024.12.01') implementation composeBom - implementation 'androidx.compose.foundation:foundation' + // Remove the version number once b/385138624 is fixed, GMaven doesn't resolve the BOM above + implementation 'androidx.compose.foundation:foundation:1.7.6' implementation 'androidx.core:core:' + androidxCoreVersion testImplementation 'androidx.compose.ui:ui-test'