Update dependencies#887
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates numerous dependency versions in the version catalog, migrates Compose test imports to the v2 package, and increments the Gradle wrapper version. Review feedback identifies several likely typos in version numbers for the Compose BOM, Kotlin, and Mockito-Kotlin. Additionally, there is a concern regarding the activation of a specific AndroidX snapshot version in the Gradle properties, which may impact build stability and reproducibility.
| androidx-cameraX = "1.6.0" | ||
| androidx-car = "1.7.0" | ||
| androidx-compose-bom = "2026.03.00" | ||
| androidx-compose-bom = "2026.04.01" |
There was a problem hiding this comment.
| horologist = "0.8.3-alpha" | ||
| junit = "4.13.2" | ||
| kotlin = "2.3.10" | ||
| kotlin = "2.3.21" |
| mockitoKotlin = "5.3.1" | ||
| media3 = "1.10.0" | ||
| media3Ui = "1.10.0" | ||
| mockitoKotlin = "6.3.0" |
| # Use an AndroidX snapshot build. | ||
| # https://androidx.dev/snapshots/builds | ||
| # snapshotVersion=14793336 No newline at end of file | ||
| snapshotVersion=14793336 |
There was a problem hiding this comment.
kul3r4
left a comment
There was a problem hiding this comment.
LGTM for updating Wear dependenciws
kkuan2011
left a comment
There was a problem hiding this comment.
looks good after these comments are addressed!
| # AndroidX package structure to make it clearer which packages are bundled with the | ||
| # Android operating system, and which are packaged with your app's APK | ||
| # https://developer.android.com/topic/libraries/support-library/androidx-rn | ||
| android.useAndroidX=true |
There was a problem hiding this comment.
are lines 21-24 needed? I thought useAndroidX is true by default now?
| # Use an AndroidX snapshot build. | ||
| # https://androidx.dev/snapshots/builds | ||
| # snapshotVersion=14793336 No newline at end of file | ||
| snapshotVersion=14793336 |
There was a problem hiding this comment.
I think Dereck added this as an example in a comment, but I don't think we need to use a snapshot build for anything right now, unless you're aware of any code that requires it?
There was a problem hiding this comment.
agreed to take this out esp for main branch
| android.enableR8.fullMode=true | ||
|
|
||
| android.newDsl=false | ||
| android.newDsl=true |
There was a problem hiding this comment.
since this is true by default, you can remove it now
https://developer.android.com/build/releases/agp-9-0-0-release-notes#android-gradle-plugin-behavior-changes
| gradle-versions = "0.53.0" | ||
| guava = "33.5.0-jre" | ||
| guava-android = "33.5.0-jre" | ||
| health-connect = "1.1.0-alpha11" |
There was a problem hiding this comment.
I think health-connect accidentally got deleted, which is causing the spotless check + build to fail, can you add it back? :)
…roid/snippets into mm/snippet-update-2026-04-27
Update dependencies for Compose 1.11