Skip to content

Commit 2b6fc1d

Browse files
Update all dependencies (#528)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f4f6aef commit 2b6fc1d

File tree

77 files changed

+117
-117
lines changed

Some content is hidden

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

77 files changed

+117
-117
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 6 additions & 6 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.04.01')
90+
def composeBom = platform('androidx.compose:compose-bom:2025.05.00')
9191
implementation(composeBom)
9292
testImplementation(composeBom)
9393
androidTestImplementation(composeBom)
@@ -118,12 +118,12 @@ dependencies {
118118
implementation 'androidx.core:core-ktx:1.16.0'
119119
implementation "androidx.activity:activity-compose:1.10.1"
120120

121-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7"
122-
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.7"
123-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.7"
124-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7"
121+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0"
122+
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0"
123+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.0"
124+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0"
125125

126-
implementation 'androidx.navigation:navigation-compose:2.8.9'
126+
implementation 'androidx.navigation:navigation-compose:2.9.0'
127127

128128
androidTestImplementation 'androidx.test:rules:1.6.1'
129129
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
window = "1.3.0"
1313

1414
[libraries]
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)