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
2 changes: 1 addition & 1 deletion firestore/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies {
// Support Libs
implementation("androidx.activity:activity-ktx:1.13.0")
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("androidx.core:core-ktx:1.18.0")
implementation("androidx.core:core-ktx:1.19.0")
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

Instead of hardcoding the dependency and duplicating the version, use the version catalog reference libs.androidx.core.ktx which is already defined in gradle/libs.versions.toml.

    implementation(libs.androidx.core.ktx)

implementation("androidx.vectordrawable:vectordrawable-animated:1.2.0")
implementation("androidx.cardview:cardview:1.0.0")
implementation("androidx.browser:browser:1.5.0")
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ camerax = "1.6.1"
coil3Compose = "3.4.0"
composeBom = "2026.05.01"
composeNavigation = "2.9.8"
coreKtx = "1.18.0"
coreKtx = "1.19.0"
espressoCore = "3.7.0"
firebaseBom = "34.14.0"
googleServices = "4.4.4"
Expand All @@ -14,7 +14,7 @@ firebasePerf = "2.0.2"
gradleVersions = "0.54.0"
junit = "4.13.2"
junitVersion = "1.3.0"
kotlin = "2.3.21"
kotlin = "2.4.0"
kotlinxSerializationCore = "1.11.0"
lifecycle = "2.10.0"
material = "1.14.0"
Expand Down
2 changes: 1 addition & 1 deletion messaging/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
implementation(project(":internal:chooserx"))
implementation("androidx.annotation:annotation:1.10.0")
implementation("androidx.vectordrawable:vectordrawable-animated:1.2.0")
implementation("androidx.core:core-ktx:1.18.0")
implementation("androidx.core:core-ktx:1.19.0")
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

Instead of hardcoding the dependency and duplicating the version, use the version catalog reference libs.androidx.core.ktx which is already defined in gradle/libs.versions.toml.

    implementation(libs.androidx.core.ktx)


// Required when asking for permission to post notifications (starting in Android 13)
implementation("androidx.activity:activity-ktx:1.13.0")
Expand Down
Loading