Skip to content

Commit 6cf75bb

Browse files
Update all dependencies
1 parent 083f7eb commit 6cf75bb

File tree

12 files changed

+36
-36
lines changed

12 files changed

+36
-36
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ android {
7070
}
7171

7272
dependencies {
73-
def composeBom = platform('androidx.compose:compose-bom:2025.08.01')
73+
def composeBom = platform('androidx.compose:compose-bom:2025.09.00')
7474
implementation(composeBom)
7575
testImplementation(composeBom)
7676
androidTestImplementation(composeBom)
@@ -97,16 +97,16 @@ dependencies {
9797
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
9898

9999
implementation 'androidx.appcompat:appcompat:1.7.1'
100-
implementation 'androidx.activity:activity-ktx:1.10.1'
100+
implementation 'androidx.activity:activity-ktx:1.11.0'
101101
implementation 'androidx.core:core-ktx:1.17.0'
102-
implementation "androidx.activity:activity-compose:1.10.1"
102+
implementation "androidx.activity:activity-compose:1.11.0"
103103

104104
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.3"
105105
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.3"
106106
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.3"
107107
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.3"
108108

109-
implementation 'androidx.navigation:navigation-compose:2.9.3'
109+
implementation 'androidx.navigation:navigation-compose:2.9.4'
110110

111111
androidTestImplementation 'androidx.test:rules:1.7.0'
112112
androidTestImplementation 'androidx.test:runner:1.7.0'

AdaptiveUiCodelab/gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[versions]
22
androidGradlePlugin = "8.13.0"
3-
composeBom = "2025.08.01"
3+
composeBom = "2025.09.00"
44
coreKtx = "1.17.0"
5-
activityCompose = "1.10.1"
5+
activityCompose = "1.11.0"
66
espressoCore = "3.7.0"
77
junit = "4.13.2"
88
junitVersion = "1.3.0"

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ dependencies {
103103
}
104104
}
105105

106-
implementation "androidx.activity:activity-compose:1.10.1"
106+
implementation "androidx.activity:activity-compose:1.11.0"
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.08.01')
110+
def composeBom = platform('androidx.compose:compose-bom:2025.09.00')
111111
implementation(composeBom)
112112
androidTestImplementation(composeBom)
113113
implementation "androidx.compose.runtime:runtime"

BasicLayoutsCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
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.08.01')
64+
def composeBom = platform('androidx.compose:compose-bom:2025.09.00')
6565
implementation(composeBom)
6666
androidTestImplementation(composeBom)
6767

@@ -73,7 +73,7 @@ dependencies {
7373
implementation "androidx.compose.ui:ui-tooling-preview"
7474
implementation "com.google.android.material:material:1.13.0"
7575
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.3'
76-
implementation 'androidx.activity:activity-compose:1.10.1'
76+
implementation 'androidx.activity:activity-compose:1.11.0'
7777
testImplementation 'junit:junit:4.13.2'
7878
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
7979
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'

MigrationCodelab/app/build.gradle

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

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

67-
kapt "androidx.room:room-compiler:2.7.2"
67+
kapt "androidx.room:room-compiler:2.8.0"
6868
kapt "com.github.bumptech.glide:compiler:5.0.4"
6969
implementation "androidx.appcompat:appcompat:1.7.1"
7070
implementation "androidx.constraintlayout:constraintlayout:2.2.1"
7171
implementation "androidx.core:core-ktx:1.17.0"
7272
implementation "androidx.fragment:fragment-ktx:1.8.9"
7373
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.3"
7474
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.3"
75-
implementation "androidx.navigation:navigation-fragment-ktx:2.9.3"
76-
implementation "androidx.navigation:navigation-ui-ktx:2.9.3"
75+
implementation "androidx.navigation:navigation-fragment-ktx:2.9.4"
76+
implementation "androidx.navigation:navigation-ui-ktx:2.9.4"
7777
implementation "androidx.recyclerview:recyclerview:1.4.0"
78-
implementation "androidx.room:room-runtime:2.7.2"
79-
implementation "androidx.room:room-ktx:2.7.2"
78+
implementation "androidx.room:room-runtime:2.8.0"
79+
implementation "androidx.room:room-ktx:2.8.0"
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.3"
82+
implementation "androidx.work:work-runtime-ktx:2.10.4"
8383
implementation "com.github.bumptech.glide:glide:5.0.4"
8484
implementation "com.google.android.material:material:1.13.0"
85-
implementation "com.google.code.gson:gson:2.13.1"
85+
implementation "com.google.code.gson:gson:2.13.2"
8686
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
8787
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2"
8888

@@ -103,9 +103,9 @@ dependencies {
103103
androidTestImplementation "androidx.test.espresso:espresso-intents:3.7.0"
104104
androidTestImplementation "androidx.test.ext:junit:1.3.0"
105105
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.3.0"
106-
androidTestImplementation "androidx.work:work-testing:2.10.3"
106+
androidTestImplementation "androidx.work:work-testing:2.10.4"
107107
androidTestImplementation "com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework:4.1.1"
108-
androidTestImplementation "com.google.truth:truth:1.4.4"
108+
androidTestImplementation "com.google.truth:truth:1.4.5"
109109
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
110110
testImplementation "junit:junit:4.13.2"
111111
}

MigrationCodelab/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
dependencies {
2424
classpath "com.android.tools.build:gradle:8.13.0"
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.21"
26-
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.9.3"
26+
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.9.4"
2727
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.21"
2828
}
2929
}

NavigationCodelab/app/build.gradle

Lines changed: 4 additions & 4 deletions
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.08.01')
84+
def composeBom = platform('androidx.compose:compose-bom:2025.09.00')
8585
implementation(composeBom)
8686
androidTestImplementation(composeBom)
8787

@@ -95,13 +95,13 @@ dependencies {
9595
implementation "androidx.compose.foundation:foundation"
9696
implementation "androidx.compose.material:material"
9797
implementation "androidx.compose.material:material-icons-extended"
98-
implementation "androidx.activity:activity-compose:1.10.1"
99-
implementation "androidx.navigation:navigation-compose:2.9.3"
98+
implementation "androidx.activity:activity-compose:1.11.0"
99+
implementation "androidx.navigation:navigation-compose:2.9.4"
100100
debugImplementation "androidx.compose.ui:ui-tooling"
101101

102102
// Testing dependencies
103103
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
104-
androidTestImplementation "androidx.navigation:navigation-testing:2.9.3"
104+
androidTestImplementation "androidx.navigation:navigation-testing:2.9.4"
105105
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.7.0"
106106
androidTestImplementation "androidx.test.espresso:espresso-core:3.7.0"
107107

PerformanceCodelab/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dependencies {
9292
implementation(libs.androidx.tracing.ktx)
9393

9494
// TODO Codelab task: Add androidx.runtime-tracing dependency to enable Composition Tracing
95-
implementation("androidx.compose.runtime:runtime-tracing:1.9.0")
95+
implementation("androidx.compose.runtime:runtime-tracing:1.9.1")
9696

9797
implementation(libs.coil.compose)
9898
implementation(libs.androidx.media3.exoplayer)

PerformanceCodelab/gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ junit = "4.13.2"
1212
androidx-test-ext-junit = "1.3.0"
1313
espresso-core = "3.7.0"
1414
lifecycle-runtime-ktx = "2.9.3"
15-
activity-compose = "1.10.1"
16-
compose-bom = "2025.08.01"
17-
runtime-tracing = "1.9.0"
15+
activity-compose = "1.11.0"
16+
compose-bom = "2025.09.00"
17+
runtime-tracing = "1.9.1"
1818
tracing-ktx = "1.3.0"
1919
tracing-perfetto = "1.0.0"
2020
uiautomator = "2.3.0"
21-
benchmark = "1.4.0"
22-
androidx-baselineprofile = "1.4.0"
21+
benchmark = "1.4.1"
22+
androidx-baselineprofile = "1.4.1"
2323
profileinstaller = "1.4.1"
2424
material3 = "1.3.2"
2525
spotless = "7.2.1"

TestingCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ android {
8484
}
8585

8686
dependencies {
87-
def composeBom = platform('androidx.compose:compose-bom:2025.08.01')
87+
def composeBom = platform('androidx.compose:compose-bom:2025.09.00')
8888
implementation(composeBom)
8989
androidTestImplementation(composeBom)
9090

0 commit comments

Comments
 (0)