diff --git a/AccessibilityCodelab/app/build.gradle b/AccessibilityCodelab/app/build.gradle index 44ce85687..f514ec055 100644 --- a/AccessibilityCodelab/app/build.gradle +++ b/AccessibilityCodelab/app/build.gradle @@ -70,7 +70,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) testImplementation(composeBom) androidTestImplementation(composeBom) @@ -96,15 +96,15 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1" - implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'androidx.appcompat:appcompat:1.7.1' implementation 'androidx.activity:activity-ktx:1.10.1' implementation 'androidx.core:core-ktx:1.16.0' implementation "androidx.activity:activity-compose:1.10.1" - implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0" - implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0" + implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1" + implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1" implementation 'androidx.navigation:navigation-compose:2.9.0' diff --git a/AccessibilityCodelab/build.gradle b/AccessibilityCodelab/build.gradle index 864c02f3b..ca85deb85 100644 --- a/AccessibilityCodelab/build.gradle +++ b/AccessibilityCodelab/build.gradle @@ -21,13 +21,13 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:8.10.0' + classpath 'com.android.tools.build:gradle:8.10.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10" } } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' id 'org.jetbrains.kotlin.plugin.compose' version "2.1.10" apply false } diff --git a/AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties b/AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/AdaptiveUiCodelab/gradle/libs.versions.toml b/AdaptiveUiCodelab/gradle/libs.versions.toml index 7774d3c20..84d2f7626 100644 --- a/AdaptiveUiCodelab/gradle/libs.versions.toml +++ b/AdaptiveUiCodelab/gradle/libs.versions.toml @@ -1,6 +1,6 @@ [versions] -androidGradlePlugin = "8.10.0" -composeBom = "2025.05.00" +androidGradlePlugin = "8.10.1" +composeBom = "2025.06.00" coreKtx = "1.16.0" activityCompose = "1.10.1" espressoCore = "3.6.1" @@ -8,10 +8,10 @@ junit = "4.13.2" junitVersion = "1.2.1" kotlin = "2.1.10" kotlinxCoroutinesAndroid = "1.10.1" -lifecycle = "2.9.0" +lifecycle = "2.9.1" material3Adaptive = "1.1.0" material3AdaptiveNavSuite = "1.3.2" -window = "1.3.0" +window = "1.4.0" [libraries] androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" } diff --git a/AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties b/AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/AdvancedStateAndSideEffectsCodelab/app/build.gradle b/AdvancedStateAndSideEffectsCodelab/app/build.gradle index cf5e5fb1c..12819c96d 100644 --- a/AdvancedStateAndSideEffectsCodelab/app/build.gradle +++ b/AdvancedStateAndSideEffectsCodelab/app/build.gradle @@ -104,10 +104,10 @@ dependencies { } implementation "androidx.activity:activity-compose:1.10.1" - implementation "androidx.appcompat:appcompat:1.7.0" + implementation "androidx.appcompat:appcompat:1.7.1" implementation "androidx.tracing:tracing:1.3.0" - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) androidTestImplementation(composeBom) implementation "androidx.compose.runtime:runtime" @@ -121,7 +121,7 @@ dependencies { debugImplementation "androidx.compose.ui:ui-test-manifest" - def lifecycle_version = "2.9.0" + def lifecycle_version = "2.9.1" implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version" diff --git a/AdvancedStateAndSideEffectsCodelab/build.gradle b/AdvancedStateAndSideEffectsCodelab/build.gradle index e5958be88..c770d9718 100644 --- a/AdvancedStateAndSideEffectsCodelab/build.gradle +++ b/AdvancedStateAndSideEffectsCodelab/build.gradle @@ -20,7 +20,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.android.tools.build:gradle:8.10.0" + classpath "com.android.tools.build:gradle:8.10.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10" classpath "com.google.dagger:hilt-android-gradle-plugin:2.56.2" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10" @@ -28,7 +28,7 @@ buildscript { } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' } subprojects { diff --git a/AdvancedStateAndSideEffectsCodelab/gradle/wrapper/gradle-wrapper.properties b/AdvancedStateAndSideEffectsCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/AdvancedStateAndSideEffectsCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/AdvancedStateAndSideEffectsCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/BasicLayoutsCodelab/app/build.gradle b/BasicLayoutsCodelab/app/build.gradle index efdb60976..251798844 100644 --- a/BasicLayoutsCodelab/app/build.gradle +++ b/BasicLayoutsCodelab/app/build.gradle @@ -61,7 +61,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) androidTestImplementation(composeBom) @@ -72,7 +72,7 @@ dependencies { implementation "androidx.compose.material:material-icons-extended" implementation "androidx.compose.ui:ui-tooling-preview" implementation "com.google.android.material:material:1.12.0" - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.1' implementation 'androidx.activity:activity-compose:1.10.1' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.2.1' diff --git a/BasicLayoutsCodelab/build.gradle b/BasicLayoutsCodelab/build.gradle index 2f8d3cc9e..5ce0f9c03 100644 --- a/BasicLayoutsCodelab/build.gradle +++ b/BasicLayoutsCodelab/build.gradle @@ -19,14 +19,14 @@ buildscript { mavenCentral() } dependencies { - classpath "com.android.tools.build:gradle:8.10.0" + classpath "com.android.tools.build:gradle:8.10.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10" } } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' } subprojects { diff --git a/BasicLayoutsCodelab/gradle/wrapper/gradle-wrapper.properties b/BasicLayoutsCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/BasicLayoutsCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/BasicLayoutsCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/MigrationCodelab/app/build.gradle b/MigrationCodelab/app/build.gradle index a8ae438cb..b6aa74d37 100644 --- a/MigrationCodelab/app/build.gradle +++ b/MigrationCodelab/app/build.gradle @@ -60,18 +60,18 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) androidTestImplementation(composeBom) kapt "androidx.room:room-compiler:2.7.1" kapt "com.github.bumptech.glide:compiler:4.16.0" - implementation "androidx.appcompat:appcompat:1.7.0" + implementation "androidx.appcompat:appcompat:1.7.1" implementation "androidx.constraintlayout:constraintlayout:2.2.1" implementation "androidx.core:core-ktx:1.16.0" - implementation "androidx.fragment:fragment-ktx:1.8.6" - implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0" + implementation "androidx.fragment:fragment-ktx:1.8.8" + implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1" implementation "androidx.navigation:navigation-fragment-ktx:2.9.0" implementation "androidx.navigation:navigation-ui-ktx:2.9.0" implementation "androidx.recyclerview:recyclerview:1.4.0" diff --git a/MigrationCodelab/build.gradle b/MigrationCodelab/build.gradle index 3389f9497..e1bae25cb 100644 --- a/MigrationCodelab/build.gradle +++ b/MigrationCodelab/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath "com.android.tools.build:gradle:8.10.0" + classpath "com.android.tools.build:gradle:8.10.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10" classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.9.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10" @@ -29,7 +29,7 @@ buildscript { } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' } allprojects { diff --git a/MigrationCodelab/gradle/wrapper/gradle-wrapper.properties b/MigrationCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/MigrationCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/MigrationCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/NavigationCodelab/app/build.gradle b/NavigationCodelab/app/build.gradle index 9a2c50be6..bf33948d8 100644 --- a/NavigationCodelab/app/build.gradle +++ b/NavigationCodelab/app/build.gradle @@ -81,11 +81,11 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) androidTestImplementation(composeBom) - implementation "androidx.appcompat:appcompat:1.7.0" + implementation "androidx.appcompat:appcompat:1.7.1" implementation "androidx.core:core-ktx:1.16.0" implementation "com.google.android.material:material:1.12.0" @@ -101,7 +101,7 @@ dependencies { // Testing dependencies androidTestImplementation "androidx.arch.core:core-testing:2.2.0" - androidTestImplementation "androidx.navigation:navigation-testing:2.8.9" + androidTestImplementation "androidx.navigation:navigation-testing:2.9.0" androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.1" androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1" diff --git a/NavigationCodelab/build.gradle b/NavigationCodelab/build.gradle index ea6290056..61e4febb4 100644 --- a/NavigationCodelab/build.gradle +++ b/NavigationCodelab/build.gradle @@ -21,14 +21,14 @@ buildscript { } dependencies { - classpath "com.android.tools.build:gradle:8.10.0" + classpath "com.android.tools.build:gradle:8.10.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10" } } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' } subprojects { diff --git a/NavigationCodelab/gradle/wrapper/gradle-wrapper.properties b/NavigationCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/NavigationCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/NavigationCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/PerformanceCodelab/app/build.gradle.kts b/PerformanceCodelab/app/build.gradle.kts index 52072b28b..5ecad969b 100644 --- a/PerformanceCodelab/app/build.gradle.kts +++ b/PerformanceCodelab/app/build.gradle.kts @@ -92,7 +92,7 @@ dependencies { implementation(libs.androidx.tracing.ktx) // TODO Codelab task: Add androidx.runtime-tracing dependency to enable Composition Tracing - implementation("androidx.compose.runtime:runtime-tracing:1.8.1") + implementation("androidx.compose.runtime:runtime-tracing:1.8.2") implementation(libs.coil.compose) implementation(libs.androidx.media3.exoplayer) diff --git a/PerformanceCodelab/gradle/libs.versions.toml b/PerformanceCodelab/gradle/libs.versions.toml index 4c364884f..3765a36a4 100644 --- a/PerformanceCodelab/gradle/libs.versions.toml +++ b/PerformanceCodelab/gradle/libs.versions.toml @@ -1,20 +1,20 @@ [versions] coil = "2.7.0" -com-android-application = "8.10.0" +com-android-application = "8.10.1" desugar_jdk_libs = "2.1.5" kotlinx-datetime = "0.6.1" -lifecycle-viewmodel-compose = "2.9.0" +lifecycle-viewmodel-compose = "2.9.1" material-icons-core = "1.7.8" -media3 = "1.6.1" +media3 = "1.7.1" org-jetbrains-kotlin-android = "2.1.10" core-ktx = "1.16.0" junit = "4.13.2" androidx-test-ext-junit = "1.2.1" espresso-core = "3.6.1" -lifecycle-runtime-ktx = "2.9.0" +lifecycle-runtime-ktx = "2.9.1" activity-compose = "1.10.1" -compose-bom = "2025.05.00" -runtime-tracing = "1.8.1" +compose-bom = "2025.06.00" +runtime-tracing = "1.8.2" tracing-ktx = "1.3.0" tracing-perfetto = "1.0.0" uiautomator = "2.3.0" @@ -22,7 +22,7 @@ benchmark = "1.3.4" androidx-baselineprofile = "1.3.4" profileinstaller = "1.4.1" material3 = "1.3.2" -spotless = "7.0.3" +spotless = "7.0.4" ktlint = "1.2.1" [libraries] diff --git a/PerformanceCodelab/gradle/wrapper/gradle-wrapper.properties b/PerformanceCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/PerformanceCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/PerformanceCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/TestingCodelab/app/build.gradle b/TestingCodelab/app/build.gradle index 49fd8deff..9887df588 100644 --- a/TestingCodelab/app/build.gradle +++ b/TestingCodelab/app/build.gradle @@ -84,7 +84,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) androidTestImplementation(composeBom) diff --git a/TestingCodelab/build.gradle b/TestingCodelab/build.gradle index 7a3b61989..ffcb60b9e 100644 --- a/TestingCodelab/build.gradle +++ b/TestingCodelab/build.gradle @@ -23,12 +23,12 @@ buildscript { targetSdkVersion = 33 // App dependencies - appCompatVersion = '1.7.0' + appCompatVersion = '1.7.1' activityComposeVersion = '1.10.1' coreTestingVersion = '2.2.0' coroutinesVersion = "1.5.2" espressoVersion = '3.6.1' - fragmentVersion = '1.8.6' + fragmentVersion = '1.8.8' junitVersion = '4.13.1' kotlinVersion = '2.1.10' ktlintVersion = '0.48.2' @@ -48,14 +48,14 @@ buildscript { } dependencies { - classpath "com.android.tools.build:gradle:8.10.0" + classpath "com.android.tools.build:gradle:8.10.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlinVersion" } } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' } subprojects { diff --git a/TestingCodelab/gradle/wrapper/gradle-wrapper.properties b/TestingCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/TestingCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/TestingCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/ThemingCodelab/app/build.gradle b/ThemingCodelab/app/build.gradle index f89cc03e0..9bc5c2a1c 100644 --- a/ThemingCodelab/app/build.gradle +++ b/ThemingCodelab/app/build.gradle @@ -87,7 +87,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2025.05.00') + def composeBom = platform('androidx.compose:compose-bom:2025.06.00') implementation(composeBom) testImplementation(composeBom) androidTestImplementation(composeBom) @@ -109,16 +109,16 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1" - implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'androidx.appcompat:appcompat:1.7.1' implementation 'androidx.activity:activity-ktx:1.10.1' implementation 'androidx.core:core-ktx:1.16.0' implementation "androidx.activity:activity-compose:1.10.1" - implementation "androidx.lifecycle:lifecycle-runtime-compose:2.9.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0" - implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0" + implementation "androidx.lifecycle:lifecycle-runtime-compose:2.9.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1" + implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1" androidTestImplementation 'androidx.test:rules:1.6.1' androidTestImplementation 'androidx.test:runner:1.6.2' diff --git a/ThemingCodelab/build.gradle b/ThemingCodelab/build.gradle index 64b7b0340..f0ee04b86 100644 --- a/ThemingCodelab/build.gradle +++ b/ThemingCodelab/build.gradle @@ -21,14 +21,14 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:8.10.0' + classpath 'com.android.tools.build:gradle:8.10.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10" } } plugins { - id 'com.diffplug.spotless' version '7.0.3' + id 'com.diffplug.spotless' version '7.0.4' } subprojects { diff --git a/ThemingCodelab/gradle/wrapper/gradle-wrapper.properties b/ThemingCodelab/gradle/wrapper/gradle-wrapper.properties index ca025c83a..ff23a68d7 100644 --- a/ThemingCodelab/gradle/wrapper/gradle-wrapper.properties +++ b/ThemingCodelab/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME