Skip to content

Commit 1f6f183

Browse files
Update all dependencies
1 parent b9f3d65 commit 1f6f183

File tree

22 files changed

+307
-239
lines changed

22 files changed

+307
-239
lines changed

.github/workflows/AdvancedStateAndSideEffectsCodelab.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
test:
6363
needs: build
64-
runs-on: macos-13
64+
runs-on: macos-14
6565
timeout-minutes: 30
6666
strategy:
6767
matrix:

AccessibilityCodelab/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dependencies {
9797
implementation "com.google.accompanist:accompanist-swiperefresh:$accompanist_version"
9898
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
9999

100-
implementation "com.google.android.material:material:1.11.0"
100+
implementation "com.google.android.material:material:1.12.0"
101101

102102
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"
103103

@@ -106,10 +106,10 @@ dependencies {
106106
implementation 'androidx.core:core-ktx:1.13.1'
107107
implementation "androidx.activity:activity-compose:1.9.0"
108108

109-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"
110-
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.7.0"
111-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
112-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0"
109+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.0"
110+
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.0"
111+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.0"
112+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0"
113113

114114
implementation 'androidx.navigation:navigation-compose:2.7.7'
115115

@@ -118,7 +118,7 @@ dependencies {
118118

119119
// TODO: Bump to latest after Espresso 3.5.0 goes stable
120120
// (due to https://github.com/robolectric/robolectric/issues/6593)
121-
testImplementation 'org.robolectric:robolectric:4.12.1'
121+
testImplementation 'org.robolectric:robolectric:4.12.2'
122122
}
123123

124124
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {

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

AdaptiveUiCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ dependencies {
7676
debugImplementation "androidx.compose.ui:ui-tooling"
7777
debugImplementation "androidx.compose.ui:ui-test-manifest"
7878

79-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0"
80-
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.7.0"
79+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.0"
80+
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.8.0"
8181
implementation 'androidx.activity:activity-compose:1.9.0'
8282
implementation 'androidx.core:core-ktx:1.13.1'
8383
implementation "androidx.window:window:1.2.0"

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

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ dependencies {
123123
debugImplementation "androidx.compose.ui:ui-test-manifest"
124124

125125

126-
def lifecycle_version = "2.7.0"
126+
def lifecycle_version = "2.8.0"
127127
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
128128
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
129129
implementation "androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version"

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

BasicLayoutsCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ dependencies {
7373
implementation 'androidx.compose.material3:material3-window-size-class:1.2.1'
7474
implementation "androidx.compose.material:material-icons-extended"
7575
implementation "androidx.compose.ui:ui-tooling-preview"
76-
implementation "com.google.android.material:material:1.11.0"
77-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
76+
implementation "com.google.android.material:material:1.12.0"
77+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.0'
7878
implementation 'androidx.activity:activity-compose:1.9.0'
7979
testImplementation 'junit:junit:4.13.2'
8080
androidTestImplementation 'androidx.test.ext:junit:1.1.5'

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

MigrationCodelab/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,18 @@ dependencies {
7070
implementation "androidx.appcompat:appcompat:1.6.1"
7171
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
7272
implementation "androidx.core:core-ktx:1.13.1"
73-
implementation "androidx.fragment:fragment-ktx:1.7.0"
74-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
75-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"
73+
implementation "androidx.fragment:fragment-ktx:1.7.1"
74+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.0"
75+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.0"
7676
implementation "androidx.navigation:navigation-fragment-ktx:2.7.7"
7777
implementation "androidx.navigation:navigation-ui-ktx:2.7.7"
7878
implementation "androidx.recyclerview:recyclerview:1.3.2"
7979
implementation "androidx.room:room-runtime:2.6.1"
8080
implementation "androidx.room:room-ktx:2.6.1"
81-
implementation "androidx.viewpager2:viewpager2:1.0.0"
81+
implementation "androidx.viewpager2:viewpager2:1.1.0"
8282
implementation "androidx.work:work-runtime-ktx:2.9.0"
8383
implementation "com.github.bumptech.glide:glide:4.16.0"
84-
implementation "com.google.android.material:material:1.11.0"
84+
implementation "com.google.android.material:material:1.12.0"
8585
implementation "com.google.code.gson:gson:2.10.1"
8686
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"
8787
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0"

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

NavigationCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ dependencies {
8686

8787
implementation "androidx.appcompat:appcompat:1.6.1"
8888
implementation "androidx.core:core-ktx:1.13.1"
89-
implementation "com.google.android.material:material:1.11.0"
89+
implementation "com.google.android.material:material:1.12.0"
9090

9191
// Compose
9292
implementation "androidx.compose.runtime:runtime"

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

PerformanceCodelab/gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[versions]
22
coil = "2.6.0"
3-
com-android-application = "8.3.2"
3+
com-android-application = "8.4.0"
44
desugar_jdk_libs = "2.0.4"
55
kotlinx-datetime = "0.5.0"
6-
lifecycle-viewmodel-compose = "2.7.0"
7-
material-icons-core = "1.6.6"
6+
lifecycle-viewmodel-compose = "2.8.0"
7+
material-icons-core = "1.6.7"
88
media3 = "1.3.1"
99
org-jetbrains-kotlin-android = "2.0.0-RC2"
10-
core-ktx = "1.13.0"
10+
core-ktx = "1.13.1"
1111
junit = "4.13.2"
1212
androidx-test-ext-junit = "1.1.5"
1313
espresso-core = "3.5.1"
14-
lifecycle-runtime-ktx = "2.7.0"
14+
lifecycle-runtime-ktx = "2.8.0"
1515
activity-compose = "1.9.0"
16-
compose-bom = "2024.04.01"
16+
compose-bom = "2024.05.00"
1717
runtime-tracing = "1.0.0-beta01"
1818
tracing-ktx = "1.3.0-alpha02"
1919
tracing-perfetto = "1.0.0"
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Tue May 16 11:33:31 AEST 2023
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)