Skip to content

Commit 091d3cb

Browse files
Update all dependencies
1 parent 7c35fec commit 091d3cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+99
-99
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 8 additions & 8 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.06.01')
73+
def composeBom = platform('androidx.compose:compose-bom:2025.07.00')
7474
implementation(composeBom)
7575
testImplementation(composeBom)
7676
androidTestImplementation(composeBom)
@@ -101,15 +101,15 @@ dependencies {
101101
implementation 'androidx.core:core-ktx:1.16.0'
102102
implementation "androidx.activity:activity-compose:1.10.1"
103103

104-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1"
105-
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1"
106-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.1"
107-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1"
104+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.2"
105+
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.2"
106+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.2"
107+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.2"
108108

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

111-
androidTestImplementation 'androidx.test:rules:1.6.1'
112-
androidTestImplementation 'androidx.test:runner:1.6.2'
111+
androidTestImplementation 'androidx.test:rules:1.7.0'
112+
androidTestImplementation 'androidx.test:runner:1.7.0'
113113

114114
// TODO: Bump to latest after Espresso 3.5.0 goes stable
115115
// (due to https://github.com/robolectric/robolectric/issues/6593)

AccessibilityCodelab/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ buildscript {
2121
}
2222

2323
dependencies {
24-
classpath 'com.android.tools.build:gradle:8.10.1'
24+
classpath 'com.android.tools.build:gradle:8.12.0'
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.21"
2626
}
2727
}
2828

2929
plugins {
30-
id 'com.diffplug.spotless' version '7.0.4'
30+
id 'com.diffplug.spotless' version '7.2.1'
3131
id 'org.jetbrains.kotlin.plugin.compose' version "2.1.21" apply false
3232
}
3333

1.65 KB
Binary file not shown.

AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AccessibilityCodelab/gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

AdaptiveUiCodelab/gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
2-
androidGradlePlugin = "8.10.1"
3-
composeBom = "2025.06.01"
2+
androidGradlePlugin = "8.12.0"
3+
composeBom = "2025.07.00"
44
coreKtx = "1.16.0"
55
activityCompose = "1.10.1"
6-
espressoCore = "3.6.1"
6+
espressoCore = "3.7.0"
77
junit = "4.13.2"
8-
junitVersion = "1.2.1"
8+
junitVersion = "1.3.0"
99
kotlin = "2.1.21"
1010
kotlinxCoroutinesAndroid = "1.10.2"
11-
lifecycle = "2.9.1"
11+
lifecycle = "2.9.2"
1212
material3Adaptive = "1.1.0"
1313
material3AdaptiveNavSuite = "1.3.2"
1414
window = "1.4.0"
1.65 KB
Binary file not shown.

AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdaptiveUiCodelab/gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 12 additions & 12 deletions
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.01')
110+
def composeBom = platform('androidx.compose:compose-bom:2025.07.00')
111111
implementation(composeBom)
112112
androidTestImplementation(composeBom)
113113
implementation "androidx.compose.runtime:runtime"
@@ -121,23 +121,23 @@ dependencies {
121121
debugImplementation "androidx.compose.ui:ui-test-manifest"
122122

123123

124-
def lifecycle_version = "2.9.1"
124+
def lifecycle_version = "2.9.2"
125125
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
126126
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
127127
implementation "androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version"
128-
implementation "com.google.dagger:hilt-android:2.56.2"
129-
kapt "com.google.dagger:hilt-compiler:2.56.2"
128+
implementation "com.google.dagger:hilt-android:2.57"
129+
kapt "com.google.dagger:hilt-compiler:2.57"
130130

131131
implementation "io.coil-kt:coil-compose:2.7.0"
132132

133133
androidTestImplementation "junit:junit:4.13.2"
134-
androidTestImplementation "androidx.test:core:1.6.1"
135-
androidTestImplementation "androidx.test:runner:1.6.2"
136-
androidTestImplementation "androidx.test:rules:1.6.1"
137-
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
138-
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.1"
134+
androidTestImplementation "androidx.test:core:1.7.0"
135+
androidTestImplementation "androidx.test:runner:1.7.0"
136+
androidTestImplementation "androidx.test:rules:1.7.0"
137+
androidTestImplementation "androidx.test.espresso:espresso-core:3.7.0"
138+
androidTestImplementation "androidx.test.ext:junit-ktx:1.3.0"
139139
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2"
140-
androidTestImplementation "com.google.dagger:hilt-android:2.56.2"
141-
androidTestImplementation "com.google.dagger:hilt-android-testing:2.56.2"
142-
kaptAndroidTest "com.google.dagger:hilt-compiler:2.56.2"
140+
androidTestImplementation "com.google.dagger:hilt-android:2.57"
141+
androidTestImplementation "com.google.dagger:hilt-android-testing:2.57"
142+
kaptAndroidTest "com.google.dagger:hilt-compiler:2.57"
143143
}

0 commit comments

Comments
 (0)