Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sample-androidx-composeRuntime = "androidx.compose.runtime:runtime:1.5.4"
sample-androidx-composeNavigation = "androidx.navigation:navigation-compose:2.5.2"
sample-androidx-composeActivity = "androidx.activity:activity-compose:1.4.0"
sample-androidx-composeFoundation = "androidx.compose.foundation:foundation:1.5.4"
sample-androidx-composeFoundationLayout = "androidx.compose.foundation:foundation-layout:1.5.4"
sample-androidx-composeFoundationLayout = "androidx.compose.foundation:foundation-layout:1.12.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incompatible Compose foundation-layout bump

Medium Severity

sample-androidx-composeFoundationLayout jumps to 1.12.1 while sample foundation and runtime stay on 1.5.4. Compose 1.12 requires compileSdk 37 and AGP 9.2, but the instrumentation sample still uses compileSdk 35 and AGP 8.13.2, so preMerge sample check can fail or hit mixed-version Compose errors.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2a1fef7. Configure here.


sample-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "sampleCoroutines" }
sample-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "sampleCoroutines" }
Expand Down
Loading