diff --git a/AccessibilityCodelab/app/build.gradle b/AccessibilityCodelab/app/build.gradle index d974f714e..9be52b18e 100644 --- a/AccessibilityCodelab/app/build.gradle +++ b/AccessibilityCodelab/app/build.gradle @@ -86,7 +86,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) testImplementation(composeBom) androidTestImplementation(composeBom) @@ -113,9 +113,9 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2" implementation 'androidx.appcompat:appcompat:1.7.1' - implementation 'androidx.activity:activity-ktx:1.12.3' + implementation 'androidx.activity:activity-ktx:1.12.4' implementation 'androidx.core:core-ktx:1.17.0' - implementation "androidx.activity:activity-compose:1.12.3" + implementation "androidx.activity:activity-compose:1.12.4" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0" implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.10.0" diff --git a/AccessibilityCodelab/build.gradle b/AccessibilityCodelab/build.gradle index ed6aeecaf..5092e7af7 100644 --- a/AccessibilityCodelab/build.gradle +++ b/AccessibilityCodelab/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:9.0.0' + classpath 'com.android.tools.build:gradle:9.0.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" } } diff --git a/AdaptiveUiCodelab/gradle/libs.versions.toml b/AdaptiveUiCodelab/gradle/libs.versions.toml index 4a09b7ce8..21691e31e 100644 --- a/AdaptiveUiCodelab/gradle/libs.versions.toml +++ b/AdaptiveUiCodelab/gradle/libs.versions.toml @@ -1,8 +1,8 @@ [versions] -androidGradlePlugin = "9.0.0" -composeBom = "2026.01.01" +androidGradlePlugin = "9.0.1" +composeBom = "2026.02.00" coreKtx = "1.17.0" -activityCompose = "1.12.3" +activityCompose = "1.12.4" espressoCore = "3.7.0" junit = "4.13.2" junitVersion = "1.3.0" diff --git a/AdvancedStateAndSideEffectsCodelab/app/build.gradle b/AdvancedStateAndSideEffectsCodelab/app/build.gradle index f7f59ad30..5a8a02ac9 100644 --- a/AdvancedStateAndSideEffectsCodelab/app/build.gradle +++ b/AdvancedStateAndSideEffectsCodelab/app/build.gradle @@ -98,11 +98,11 @@ dependencies { } } - implementation "androidx.activity:activity-compose:1.12.3" + implementation "androidx.activity:activity-compose:1.12.4" implementation "androidx.appcompat:appcompat:1.7.1" implementation "androidx.tracing:tracing:1.3.0" - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) androidTestImplementation(composeBom) implementation "androidx.compose.runtime:runtime" diff --git a/AdvancedStateAndSideEffectsCodelab/build.gradle b/AdvancedStateAndSideEffectsCodelab/build.gradle index 543f40966..5c536e139 100644 --- a/AdvancedStateAndSideEffectsCodelab/build.gradle +++ b/AdvancedStateAndSideEffectsCodelab/build.gradle @@ -20,16 +20,16 @@ buildscript { mavenCentral() } dependencies { - classpath "com.android.tools.build:gradle:9.0.0" + classpath "com.android.tools.build:gradle:9.0.1" classpath "com.google.dagger:hilt-android-gradle-plugin:2.59.1" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.10" - classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:2.3.4" + classpath "com.google.devtools.ksp:symbol-processing-gradle-plugin:2.3.5" } } plugins { id 'com.diffplug.spotless' version '8.2.1' - id 'com.google.devtools.ksp' version '2.3.4' apply false + id 'com.google.devtools.ksp' version '2.3.5' apply false } subprojects { diff --git a/AnimationCodelab/build.gradle b/AnimationCodelab/build.gradle index be3101f6a..132934b61 100644 --- a/AnimationCodelab/build.gradle +++ b/AnimationCodelab/build.gradle @@ -20,7 +20,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:9.0.0' + classpath 'com.android.tools.build:gradle:9.0.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" } diff --git a/AnimationCodelab/finished/build.gradle b/AnimationCodelab/finished/build.gradle index a6d7789ab..a8951a537 100644 --- a/AnimationCodelab/finished/build.gradle +++ b/AnimationCodelab/finished/build.gradle @@ -39,10 +39,10 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) - implementation 'androidx.activity:activity-compose:1.12.3' + implementation 'androidx.activity:activity-compose:1.12.4' implementation 'androidx.core:core-ktx:1.17.0' implementation "androidx.compose.ui:ui" implementation "androidx.compose.material3:material3" diff --git a/AnimationCodelab/start/build.gradle b/AnimationCodelab/start/build.gradle index a6d7789ab..a8951a537 100644 --- a/AnimationCodelab/start/build.gradle +++ b/AnimationCodelab/start/build.gradle @@ -39,10 +39,10 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) - implementation 'androidx.activity:activity-compose:1.12.3' + implementation 'androidx.activity:activity-compose:1.12.4' implementation 'androidx.core:core-ktx:1.17.0' implementation "androidx.compose.ui:ui" implementation "androidx.compose.material3:material3" diff --git a/BasicLayoutsCodelab/app/build.gradle b/BasicLayoutsCodelab/app/build.gradle index 771412a2c..cf145e0f5 100644 --- a/BasicLayoutsCodelab/app/build.gradle +++ b/BasicLayoutsCodelab/app/build.gradle @@ -57,7 +57,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) androidTestImplementation(composeBom) @@ -69,7 +69,7 @@ dependencies { implementation "androidx.compose.ui:ui-tooling-preview" implementation "com.google.android.material:material:1.13.0" implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.10.0' - implementation 'androidx.activity:activity-compose:1.12.3' + implementation 'androidx.activity:activity-compose:1.12.4' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0' diff --git a/BasicLayoutsCodelab/build.gradle b/BasicLayoutsCodelab/build.gradle index 67e332739..683d2ca19 100644 --- a/BasicLayoutsCodelab/build.gradle +++ b/BasicLayoutsCodelab/build.gradle @@ -20,7 +20,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.android.tools.build:gradle:9.0.0" + classpath "com.android.tools.build:gradle:9.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" } diff --git a/BasicStateCodelab/app/build.gradle.kts b/BasicStateCodelab/app/build.gradle.kts index bcb7453b4..834e3a683 100644 --- a/BasicStateCodelab/app/build.gradle.kts +++ b/BasicStateCodelab/app/build.gradle.kts @@ -72,8 +72,8 @@ dependencies { implementation("androidx.core:core-ktx:1.17.0") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.10.0") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0") - implementation("androidx.activity:activity-compose:1.12.3") - implementation(platform("androidx.compose:compose-bom:2026.01.01")) + implementation("androidx.activity:activity-compose:1.12.4") + implementation(platform("androidx.compose:compose-bom:2026.02.00")) implementation("androidx.compose.ui:ui") implementation("androidx.compose.ui:ui-graphics") implementation("androidx.compose.ui:ui-tooling-preview") @@ -82,7 +82,7 @@ dependencies { testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.ext:junit:1.3.0") androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0") - androidTestImplementation(platform("androidx.compose:compose-bom:2026.01.01")) + androidTestImplementation(platform("androidx.compose:compose-bom:2026.02.00")) androidTestImplementation("androidx.compose.ui:ui-test-junit4") debugImplementation("androidx.compose.ui:ui-tooling") debugImplementation("androidx.compose.ui:ui-test-manifest") diff --git a/BasicStateCodelab/build.gradle b/BasicStateCodelab/build.gradle index 751faf1e0..760336130 100644 --- a/BasicStateCodelab/build.gradle +++ b/BasicStateCodelab/build.gradle @@ -20,7 +20,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:9.0.0' + classpath 'com.android.tools.build:gradle:9.0.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" } diff --git a/BasicsCodelab/gradle/libs.versions.toml b/BasicsCodelab/gradle/libs.versions.toml index 0b04ad0af..b35ac8e18 100644 --- a/BasicsCodelab/gradle/libs.versions.toml +++ b/BasicsCodelab/gradle/libs.versions.toml @@ -1,13 +1,13 @@ [versions] -agp = "8.13.2" +agp = "9.0.1" kotlin = "2.3.0" coreKtx = "1.17.0" junit = "4.13.2" androidxJunit = "1.3.0" espressoCore = "3.7.0" lifecycleRuntimeKtx = "2.10.0" -activityCompose = "1.12.2" -composeBom = "2026.01.00" +activityCompose = "1.12.4" +composeBom = "2026.02.00" [libraries] androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } diff --git a/MigrationCodelab/app/build.gradle b/MigrationCodelab/app/build.gradle index 1a665554b..1bbf412ce 100644 --- a/MigrationCodelab/app/build.gradle +++ b/MigrationCodelab/app/build.gradle @@ -56,7 +56,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) androidTestImplementation(composeBom) diff --git a/MigrationCodelab/build.gradle b/MigrationCodelab/build.gradle index 313e07508..acbf5309f 100644 --- a/MigrationCodelab/build.gradle +++ b/MigrationCodelab/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath "com.android.tools.build:gradle:9.0.0" + classpath "com.android.tools.build:gradle:9.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.9.7" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" @@ -30,7 +30,7 @@ buildscript { plugins { id 'com.diffplug.spotless' version '8.2.1' - id 'com.android.legacy-kapt' version '9.0.0' apply false + id 'com.android.legacy-kapt' version '9.0.1' apply false } allprojects { diff --git a/NavigationCodelab/app/build.gradle b/NavigationCodelab/app/build.gradle index 6f30a5f02..ee559bb64 100644 --- a/NavigationCodelab/app/build.gradle +++ b/NavigationCodelab/app/build.gradle @@ -76,7 +76,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) androidTestImplementation(composeBom) @@ -90,7 +90,7 @@ dependencies { implementation "androidx.compose.foundation:foundation" implementation "androidx.compose.material:material" implementation "androidx.compose.material:material-icons-extended" - implementation "androidx.activity:activity-compose:1.12.3" + implementation "androidx.activity:activity-compose:1.12.4" debugImplementation "androidx.compose.ui:ui-tooling" // Testing dependencies diff --git a/NavigationCodelab/build.gradle b/NavigationCodelab/build.gradle index f83c99441..3085eca28 100644 --- a/NavigationCodelab/build.gradle +++ b/NavigationCodelab/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath "com.android.tools.build:gradle:9.0.0" + classpath "com.android.tools.build:gradle:9.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" } diff --git a/PerformanceCodelab/gradle/libs.versions.toml b/PerformanceCodelab/gradle/libs.versions.toml index 46bdc89ec..652d15543 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 = "9.0.0" +com-android-application = "9.0.1" desugar_jdk_libs = "2.1.5" kotlinx-datetime = "0.7.1-0.6.x-compat" lifecycle-viewmodel-compose = "2.10.0" material-icons-core = "1.7.8" -media3 = "1.9.1" +media3 = "1.9.2" org-jetbrains-kotlin-android = "2.3.0" core-ktx = "1.17.0" junit = "4.13.2" androidx-test-ext-junit = "1.3.0" espresso-core = "3.7.0" lifecycle-runtime-ktx = "2.10.0" -activity-compose = "1.12.3" -compose-bom = "2026.01.01" -runtime-tracing = "1.10.2" +activity-compose = "1.12.4" +compose-bom = "2026.02.00" +runtime-tracing = "1.10.3" tracing-ktx = "1.3.0" tracing-perfetto = "1.0.1" uiautomator = "2.3.0" diff --git a/TestingCodelab/app/build.gradle b/TestingCodelab/app/build.gradle index 053fd2ee8..85afbce71 100644 --- a/TestingCodelab/app/build.gradle +++ b/TestingCodelab/app/build.gradle @@ -79,7 +79,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) androidTestImplementation(composeBom) @@ -98,7 +98,7 @@ dependencies { implementation "androidx.compose.runtime:runtime-livedata" implementation "androidx.compose.ui:ui-tooling-preview" implementation "androidx.compose.material:material-icons-extended" - implementation "androidx.activity:activity-compose:1.12.3" + implementation "androidx.activity:activity-compose:1.12.4" debugImplementation "androidx.compose.ui:ui-tooling" // Testing dependencies diff --git a/TestingCodelab/build.gradle b/TestingCodelab/build.gradle index 6a7da13e6..43dfe0016 100644 --- a/TestingCodelab/build.gradle +++ b/TestingCodelab/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath "com.android.tools.build:gradle:9.0.0" + classpath "com.android.tools.build:gradle:9.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" } diff --git a/ThemingCodelab/app/build.gradle b/ThemingCodelab/app/build.gradle index 4e9544922..94f6d9b2b 100644 --- a/ThemingCodelab/app/build.gradle +++ b/ThemingCodelab/app/build.gradle @@ -86,7 +86,7 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) testImplementation(composeBom) androidTestImplementation(composeBom) @@ -109,9 +109,9 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2" implementation 'androidx.appcompat:appcompat:1.7.1' - implementation 'androidx.activity:activity-ktx:1.12.3' + implementation 'androidx.activity:activity-ktx:1.12.4' implementation 'androidx.core:core-ktx:1.17.0' - implementation "androidx.activity:activity-compose:1.12.3" + implementation "androidx.activity:activity-compose:1.12.4" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0" implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.10.0" diff --git a/ThemingCodelab/build.gradle b/ThemingCodelab/build.gradle index 50fda5ba1..5a4176eea 100644 --- a/ThemingCodelab/build.gradle +++ b/ThemingCodelab/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:9.0.0' + classpath 'com.android.tools.build:gradle:9.0.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" } diff --git a/ThemingCodelabM2/app/build.gradle b/ThemingCodelabM2/app/build.gradle index d50364715..9b227b118 100644 --- a/ThemingCodelabM2/app/build.gradle +++ b/ThemingCodelabM2/app/build.gradle @@ -43,14 +43,14 @@ android { } dependencies { - def composeBom = platform('androidx.compose:compose-bom:2026.01.01') + def composeBom = platform('androidx.compose:compose-bom:2026.02.00') implementation(composeBom) implementation 'androidx.core:core-ktx:1.17.0' implementation "androidx.compose.ui:ui" implementation "androidx.compose.material:material" implementation "androidx.compose.material:material-icons-extended" - implementation 'androidx.activity:activity-compose:1.12.3' + implementation 'androidx.activity:activity-compose:1.12.4' implementation "androidx.compose.ui:ui-tooling-preview" debugImplementation "androidx.compose.ui:ui-tooling" } diff --git a/ThemingCodelabM2/build.gradle b/ThemingCodelabM2/build.gradle index 3a55e42da..3288f1e06 100644 --- a/ThemingCodelabM2/build.gradle +++ b/ThemingCodelabM2/build.gradle @@ -20,7 +20,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.android.tools.build:gradle:9.0.0" + classpath "com.android.tools.build:gradle:9.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.0" classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.0" }