Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
activityCompose = "1.13.0"
agp = "9.2.1"
agp = "9.3.0"
camerax = "1.6.1"
coil3Compose = "3.5.0"
composeBom = "2026.06.01"
Expand All @@ -14,7 +14,7 @@ firebasePerf = "2.0.2"
gradleVersions = "0.54.0"
junit = "4.13.2"
junitVersion = "1.3.0"
kotlin = "2.4.0"
kotlin = "2.4.10"
kotlinxSerializationCore = "1.11.0"
lifecycle = "2.11.0"
material = "1.14.0"
Expand Down
6 changes: 3 additions & 3 deletions internal/lint/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ java {
}

dependencies {
compileOnly("com.android.tools.lint:lint-api:32.2.1")
testImplementation("com.android.tools.lint:lint:32.2.1")
testImplementation("com.android.tools.lint:lint-tests:32.2.1")
compileOnly("com.android.tools.lint:lint-api:32.3.0")
testImplementation("com.android.tools.lint:lint:32.3.0")
testImplementation("com.android.tools.lint:lint-tests:32.3.0")
Comment on lines +12 to +14

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

To maintain a single source of truth for all dependencies and avoid version drift, these Android Lint dependencies should be defined in the Gradle Version Catalog (gradle/libs.versions.toml) instead of being hardcoded here.\n\nYou can add the following to gradle/libs.versions.toml:\n\ntoml\n[versions]\nandroidLint = "32.3.0"\n\n[libraries]\nandroid-tools-lint-api = { module = "com.android.tools.lint:lint-api", version.ref = "androidLint" }\nandroid-tools-lint = { module = "com.android.tools.lint:lint", version.ref = "androidLint" }\nandroid-tools-lint-tests = { module = "com.android.tools.lint:lint-tests", version.ref = "androidLint" }\n\n\nAdditionally, since junit is already defined in the version catalog, you can also migrate testImplementation("junit:junit:4.13.2") to testImplementation(libs.junit).

    compileOnly(libs.android.tools.lint.api)
    testImplementation(libs.android.tools.lint)
    testImplementation(libs.android.tools.lint.tests)

testImplementation("junit:junit:4.13.2")
}
Loading