Skip to content

Commit 2327d18

Browse files
Update all dependencies (#529)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 06a204f commit 2327d18

Some content is hidden

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

53 files changed

+86
-86
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 6 additions & 6 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.04.01')
73+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
7474
implementation(composeBom)
7575
testImplementation(composeBom)
7676
androidTestImplementation(composeBom)
@@ -101,12 +101,12 @@ 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.8.7"
105-
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.7"
106-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.7"
107-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7"
104+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0"
105+
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0"
106+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.0"
107+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0"
108108

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

111111
androidTestImplementation 'androidx.test:rules:1.6.1'
112112
androidTestImplementation 'androidx.test:runner:1.6.2'

AccessibilityCodelab/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222

2323
dependencies {
24-
classpath 'com.android.tools.build:gradle:8.9.2'
24+
classpath 'com.android.tools.build:gradle:8.10.0'
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2626
}
2727
}
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.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AccessibilityCodelab/gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117+
CLASSPATH="\\\"\\\""
118118

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

AccessibilityCodelab/gradlew.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73+
set CLASSPATH=
7474

7575

7676
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
77+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7878

7979
:end
8080
@rem End local scope for the variables with windows NT shell

AdaptiveUiCodelab/gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
2-
androidGradlePlugin = "8.9.2"
3-
composeBom = "2025.04.01"
2+
androidGradlePlugin = "8.10.0"
3+
composeBom = "2025.05.00"
44
coreKtx = "1.16.0"
55
activityCompose = "1.10.1"
66
espressoCore = "3.6.1"
77
junit = "4.13.2"
88
junitVersion = "1.2.1"
99
kotlin = "2.1.10"
1010
kotlinxCoroutinesAndroid = "1.10.1"
11-
lifecycle = "2.8.7"
11+
lifecycle = "2.9.0"
1212
material3Adaptive = "1.1.0"
1313
material3AdaptiveNavSuite = "1.3.2"
1414
window = "1.3.0"
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.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdaptiveUiCodelab/gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117+
CLASSPATH="\\\"\\\""
118118

119119

120120
# Determine the Java command to use to start the JVM.
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
213213
set -- \
214214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215215
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
216+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217217
"$@"
218218

219219
# Stop when "xargs" is not available.

0 commit comments

Comments
 (0)