File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,15 @@ subprojects {
6060 mavenCentral()
6161 }
6262
63+ // Workaround: workflow-runtime-android:1.25.0 declares androidx.compose.ui:ui-android as an
64+ // api dependency without a version (the Compose BOM was published as implementation scope).
65+ // Adding the BOM here allows consumers to resolve the missing version.
66+ plugins. withId(" com.android.application" ) {
67+ dependencies {
68+ implementation platform(' androidx.compose:compose-bom:2025.03.01' )
69+ }
70+ }
71+
6372 tasks. withType(KotlinCompile ). configureEach {
6473 kotlinOptions {
6574 freeCompilerArgs + = ' -opt-in=kotlin.RequiresOptIn'
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ kotlin {
7575 api(libs.androidx.compose.ui.android)
7676 api(libs.androidx.lifecycle.viewmodel.savedstate)
7777
78- implementation (composeBom)
78+ api (composeBom)
7979 }
8080 }
8181
You can’t perform that action at this time.
0 commit comments