Skip to content

Commit 1519d94

Browse files
Update all dependencies (#535)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c5d00df commit 1519d94

File tree

14 files changed

+23
-23
lines changed

14 files changed

+23
-23
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ android {
8787
}
8888

8989
dependencies {
90-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
90+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
9191
implementation(composeBom)
9292
testImplementation(composeBom)
9393
androidTestImplementation(composeBom)
@@ -130,7 +130,7 @@ dependencies {
130130

131131
// TODO: Bump to latest after Espresso 3.5.0 goes stable
132132
// (due to https://github.com/robolectric/robolectric/issues/6593)
133-
testImplementation 'org.robolectric:robolectric:4.14.1'
133+
testImplementation 'org.robolectric:robolectric:4.15'
134134
}
135135

136136
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {

AdaptiveUiCodelab/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
androidGradlePlugin = "8.10.1"
3-
composeBom = "2025.06.00"
3+
composeBom = "2025.06.01"
44
coreKtx = "1.16.0"
55
activityCompose = "1.10.1"
66
espressoCore = "3.6.1"

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ dependencies {
107107
implementation "androidx.appcompat:appcompat:1.7.1"
108108
implementation "androidx.tracing:tracing:1.3.0"
109109

110-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
110+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
111111
implementation(composeBom)
112112
androidTestImplementation(composeBom)
113113
implementation "androidx.compose.runtime:runtime"

AnimationCodelab/finished/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
}
4444

4545
dependencies {
46-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
46+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
4747
implementation(composeBom)
4848

4949
implementation 'androidx.activity:activity-compose:1.10.1'

AnimationCodelab/start/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
}
4444

4545
dependencies {
46-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
46+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
4747
implementation(composeBom)
4848

4949
implementation 'androidx.activity:activity-compose:1.10.1'

BasicLayoutsCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161
}
6262

6363
dependencies {
64-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
64+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
6565
implementation(composeBom)
6666
androidTestImplementation(composeBom)
6767

BasicStateCodelab/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ dependencies {
6868
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.1")
6969
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1")
7070
implementation("androidx.activity:activity-compose:1.10.1")
71-
implementation(platform("androidx.compose:compose-bom:2025.06.00"))
71+
implementation(platform("androidx.compose:compose-bom:2025.06.01"))
7272
implementation("androidx.compose.ui:ui")
7373
implementation("androidx.compose.ui:ui-graphics")
7474
implementation("androidx.compose.ui:ui-tooling-preview")
7575
implementation("androidx.compose.material3:material3")
7676
testImplementation("junit:junit:4.13.2")
7777
androidTestImplementation("androidx.test.ext:junit:1.2.1")
7878
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
79-
androidTestImplementation(platform("androidx.compose:compose-bom:2025.06.00"))
79+
androidTestImplementation(platform("androidx.compose:compose-bom:2025.06.01"))
8080
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8181
debugImplementation("androidx.compose.ui:ui-tooling")
8282
debugImplementation("androidx.compose.ui:ui-test-manifest")

BasicsCodelab/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ dependencies {
6767
implementation("androidx.core:core-ktx:1.16.0")
6868
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.1")
6969
implementation("androidx.activity:activity-compose:1.10.1")
70-
implementation(platform("androidx.compose:compose-bom:2025.06.00"))
70+
implementation(platform("androidx.compose:compose-bom:2025.06.01"))
7171
implementation("androidx.compose.ui:ui")
7272
implementation("androidx.compose.ui:ui-graphics")
7373
implementation("androidx.compose.ui:ui-tooling-preview")
@@ -76,7 +76,7 @@ dependencies {
7676
testImplementation("junit:junit:4.13.2")
7777
androidTestImplementation("androidx.test.ext:junit:1.2.1")
7878
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
79-
androidTestImplementation(platform("androidx.compose:compose-bom:2025.06.00"))
79+
androidTestImplementation(platform("androidx.compose:compose-bom:2025.06.01"))
8080
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8181
debugImplementation("androidx.compose.ui:ui-tooling")
8282
debugImplementation("androidx.compose.ui:ui-test-manifest")

MigrationCodelab/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ android {
6060
}
6161

6262
dependencies {
63-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
63+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
6464
implementation(composeBom)
6565
androidTestImplementation(composeBom)
6666

67-
kapt "androidx.room:room-compiler:2.7.1"
67+
kapt "androidx.room:room-compiler:2.7.2"
6868
kapt "com.github.bumptech.glide:compiler:4.16.0"
6969
implementation "androidx.appcompat:appcompat:1.7.1"
7070
implementation "androidx.constraintlayout:constraintlayout:2.2.1"
@@ -75,11 +75,11 @@ dependencies {
7575
implementation "androidx.navigation:navigation-fragment-ktx:2.9.0"
7676
implementation "androidx.navigation:navigation-ui-ktx:2.9.0"
7777
implementation "androidx.recyclerview:recyclerview:1.4.0"
78-
implementation "androidx.room:room-runtime:2.7.1"
79-
implementation "androidx.room:room-ktx:2.7.1"
78+
implementation "androidx.room:room-runtime:2.7.2"
79+
implementation "androidx.room:room-ktx:2.7.2"
8080
implementation "androidx.tracing:tracing:1.3.0"
8181
implementation "androidx.viewpager2:viewpager2:1.1.0"
82-
implementation "androidx.work:work-runtime-ktx:2.10.1"
82+
implementation "androidx.work:work-runtime-ktx:2.10.2"
8383
implementation "com.github.bumptech.glide:glide:4.16.0"
8484
implementation "com.google.android.material:material:1.12.0"
8585
implementation "com.google.code.gson:gson:2.13.1"
@@ -103,7 +103,7 @@ dependencies {
103103
androidTestImplementation "androidx.test.espresso:espresso-intents:3.6.1"
104104
androidTestImplementation "androidx.test.ext:junit:1.2.1"
105105
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.3.0"
106-
androidTestImplementation "androidx.work:work-testing:2.10.1"
106+
androidTestImplementation "androidx.work:work-testing:2.10.2"
107107
androidTestImplementation "com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework:4.1.1"
108108
androidTestImplementation "com.google.truth:truth:1.4.4"
109109
androidTestImplementation "androidx.compose.ui:ui-test-junit4"

NavigationCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ android {
8181
}
8282

8383
dependencies {
84-
def composeBom = platform('androidx.compose:compose-bom:2025.06.00')
84+
def composeBom = platform('androidx.compose:compose-bom:2025.06.01')
8585
implementation(composeBom)
8686
androidTestImplementation(composeBom)
8787

0 commit comments

Comments
 (0)