Skip to content
Merged
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
2 changes: 1 addition & 1 deletion 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.0"
agp = "9.2.1"
camerax = "1.6.0"
coil3Compose = "3.4.0"
composeBom = "2026.04.01"
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.0")
testImplementation("com.android.tools.lint:lint:32.2.0")
testImplementation("com.android.tools.lint:lint-tests:32.2.0")
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")
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

The Android Lint version is hardcoded and repeated across multiple dependencies. Since the project uses a Version Catalog (libs.versions.toml), it is recommended to define the Lint version there to maintain a single source of truth and ensure it stays in sync with the Android Gradle Plugin (AGP) version (the Lint version 32.2.1 correctly corresponds to AGP 9.2.1). At a minimum, using a local variable within this block reduces repetition and simplifies future updates.

    val lintVersion = "32.2.1"
    compileOnly("com.android.tools.lint:lint-api:$lintVersion")
    testImplementation("com.android.tools.lint:lint:$lintVersion")
    testImplementation("com.android.tools.lint:lint-tests:$lintVersion")

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