Skip to content

Commit 7f0f681

Browse files
Update all dependencies
1 parent eebd096 commit 7f0f681

File tree

36 files changed

+42
-55
lines changed

36 files changed

+42
-55
lines changed

AccessibilityCodelab/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ buildscript {
2727
}
2828

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

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.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AccessibilityCodelab/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

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.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdaptiveUiCodelab/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ dependencies {
123123
def lifecycle_version = "2.8.7"
124124
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
125125
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
126-
implementation "com.google.dagger:hilt-android:2.53.1"
127-
kapt "com.google.dagger:hilt-compiler:2.53.1"
126+
implementation "com.google.dagger:hilt-android:2.54"
127+
kapt "com.google.dagger:hilt-compiler:2.54"
128128

129129
implementation "io.coil-kt:coil-compose:2.7.0"
130130

@@ -135,7 +135,7 @@ dependencies {
135135
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
136136
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.1"
137137
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.0"
138-
androidTestImplementation "com.google.dagger:hilt-android:2.53.1"
139-
androidTestImplementation "com.google.dagger:hilt-android-testing:2.53.1"
140-
kaptAndroidTest "com.google.dagger:hilt-compiler:2.53.1"
138+
androidTestImplementation "com.google.dagger:hilt-android:2.54"
139+
androidTestImplementation "com.google.dagger:hilt-android-testing:2.54"
140+
kaptAndroidTest "com.google.dagger:hilt-compiler:2.54"
141141
}

AdvancedStateAndSideEffectsCodelab/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ buildscript {
2222
dependencies {
2323
classpath "com.android.tools.build:gradle:8.7.3"
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0"
25-
classpath "com.google.dagger:hilt-android-gradle-plugin:2.53.1"
25+
classpath "com.google.dagger:hilt-android-gradle-plugin:2.54"
2626
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.0"
2727
}
2828
}
2929

3030
plugins {
31-
id 'com.diffplug.spotless' version '6.25.0'
31+
id 'com.diffplug.spotless' version '7.0.1'
3232
}
3333

3434
subprojects {

AdvancedStateAndSideEffectsCodelab/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.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdvancedStateAndSideEffectsCodelab/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

AnimationCodelab/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.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)