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
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
activityCompose = "1.13.0"
agp = "9.3.2"
agp = "9.4.0"
camerax = "1.6.2"
coil3Compose = "3.6.0"
coil3Compose = "3.6.1"
composeBom = "2026.08.00"
composeNavigation = "2.10.0"
coreKtx = "1.19.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.3.2")
testImplementation("com.android.tools.lint:lint:32.3.2")
testImplementation("com.android.tools.lint:lint-tests:32.3.2")
compileOnly("com.android.tools.lint:lint-api:32.4.0")
testImplementation("com.android.tools.lint:lint:32.4.0")
testImplementation("com.android.tools.lint:lint-tests:32.4.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

Hardcoding dependency versions directly in build.gradle.kts files reduces maintainability and bypasses centralized dependency management. Consider defining the Lint version (e.g., androidLint = "32.4.0") and the corresponding libraries in gradle/libs.versions.toml, and then referencing them here using the libs catalog.

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