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 appdistribution/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
implementation(project(":internal:chooserx"))

implementation("com.google.android.material:material:1.14.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
implementation("androidx.constraintlayout:constraintlayout:2.2.2")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.16.0"))
Expand Down
2 changes: 1 addition & 1 deletion auth/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies {
implementation(project(":internal:lintchecks"))

implementation("androidx.activity:activity-ktx:1.13.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
implementation("androidx.constraintlayout:constraintlayout:2.2.2")
implementation("androidx.vectordrawable:vectordrawable-animated:1.2.0")
implementation("com.google.android.material:material:1.14.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.9.8")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allprojects {
val ktlint by configurations.creating

dependencies {
ktlint("com.pinterest:ktlint:0.49.1") {
ktlint("com.pinterest:ktlint:0.50.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.

high

Starting with version 0.49.0, the ktlint artifact has been renamed and moved to new coordinates. Using com.pinterest:ktlint:0.50.0 will cause a dependency resolution failure because this artifact is no longer published under the old coordinates. Please use com.pinterest.ktlint:ktlint-cli:0.50.0 instead.

    ktlint("com.pinterest.ktlint:ktlint-cli:0.50.0") {

attributes {
attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
}
Expand Down
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.1"
agp = "9.3.1"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Suggested change
agp = "9.3.1"
agp = "9.2.1"

camerax = "1.6.1"
coil3Compose = "3.5.0"
composeBom = "2026.06.01"
Expand Down
2 changes: 1 addition & 1 deletion inappmessaging/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
implementation(project(":internal:chooserx"))

implementation("com.google.android.material:material:1.14.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
implementation("androidx.constraintlayout:constraintlayout:2.2.2")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:34.16.0"))
Expand Down
2 changes: 1 addition & 1 deletion internal/chooserx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ android {
dependencies {
api("com.google.android.material:material:1.14.0")
api("androidx.recyclerview:recyclerview:1.4.0")
api("androidx.constraintlayout:constraintlayout:2.2.1")
api("androidx.constraintlayout:constraintlayout:2.2.2")
}
2 changes: 1 addition & 1 deletion perf/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {
implementation("com.google.firebase:firebase-perf")

implementation("com.google.android.material:material:1.14.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
implementation("androidx.constraintlayout:constraintlayout:2.2.2")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.11.0")

implementation("com.github.bumptech.glide:glide:4.12.0")
Expand Down
Loading