Fix missing Compose BOM version in published POM#1470
Merged
steve-the-edwards merged 1 commit intomainfrom Feb 20, 2026
Merged
Conversation
The Compose BOM was declared as `implementation` in workflow-runtime's androidMain dependencies, so it wasn't included in the published POM. This caused `androidx.compose.ui:ui-android` to have no version for consumers resolving from Maven Central (e.g. the tutorial). Change the BOM to `api` scope so it's published, and add the BOM to the tutorial as a workaround for the already-published 1.25.0 artifacts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
| dependencies { | ||
| implementation platform('androidx.compose:compose-bom:2025.03.01') | ||
| } | ||
| } |
Contributor
Author
There was a problem hiding this comment.
Temporary fix so the tutorial builds until we publish again with that api change.
wardellbagby
approved these changes
Feb 20, 2026
japplin
approved these changes
Feb 20, 2026
ijwhelan
approved these changes
Feb 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
workflow-runtime-android:1.25.0was published withandroidx.compose.ui:ui-androidas anapidependency but with no version, because the Compose BOM was declared asimplementationscope (not published in the POM)apiscope inworkflow-runtimeso it's included in the published POM for future releasessubprojectsblock as a workaround for the already-published 1.25.0 artifactsTest plan
./gradlew buildinsamples/tutorial)workflow-runtimebuild succeeds🤖 Generated with Claude Code