Skip to content

Commit 56bc58a

Browse files
Update all dependencies
1 parent bec4c64 commit 56bc58a

File tree

11 files changed

+48
-48
lines changed

11 files changed

+48
-48
lines changed

AccessibilityCodelab/app/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ dependencies {
118118
implementation 'androidx.core:core-ktx:1.13.1'
119119
implementation "androidx.activity:activity-compose:1.9.0"
120120

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

126126
implementation 'androidx.navigation:navigation-compose:2.7.7'
127127

128-
androidTestImplementation 'androidx.test:rules:1.6.0'
129-
androidTestImplementation 'androidx.test:runner:1.6.0'
128+
androidTestImplementation 'androidx.test:rules:1.6.1'
129+
androidTestImplementation 'androidx.test:runner:1.6.1'
130130

131131
// TODO: Bump to latest after Espresso 3.5.0 goes stable
132132
// (due to https://github.com/robolectric/robolectric/issues/6593)

AdaptiveUiCodelab/gradle/libs.versions.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ androidGradlePlugin = "8.5.0"
33
composeBom = "2024.06.00"
44
coreKtx = "1.13.1"
55
activityCompose = "1.9.0"
6-
espressoCore = "3.6.0"
6+
espressoCore = "3.6.1"
77
junit = "4.13.2"
8-
junitVersion = "1.2.0"
8+
junitVersion = "1.2.1"
99
kotlin = "2.0.0"
1010
kotlinxCoroutinesAndroid = "1.8.1"
11-
lifecycle = "2.8.2"
11+
lifecycle = "2.8.3"
1212
window = "1.3.0"
1313

1414
[libraries]

AdvancedStateAndSideEffectsCodelab/app/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ dependencies {
120120
debugImplementation "androidx.compose.ui:ui-tooling"
121121
debugImplementation "androidx.compose.ui:ui-test-manifest"
122122

123-
def lifecycle_version = "2.8.2"
123+
def lifecycle_version = "2.8.3"
124124
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
125125
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
126126
implementation "com.google.dagger:hilt-android:2.51.1"
@@ -129,11 +129,11 @@ dependencies {
129129
implementation "io.coil-kt:coil-compose:2.6.0"
130130

131131
androidTestImplementation "junit:junit:4.13.2"
132-
androidTestImplementation "androidx.test:core:1.6.0"
133-
androidTestImplementation "androidx.test:runner:1.6.0"
134-
androidTestImplementation "androidx.test:rules:1.6.0"
135-
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.0"
136-
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.0"
132+
androidTestImplementation "androidx.test:core:1.6.1"
133+
androidTestImplementation "androidx.test:runner:1.6.1"
134+
androidTestImplementation "androidx.test:rules:1.6.1"
135+
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
136+
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.1"
137137
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1"
138138
androidTestImplementation "com.google.dagger:hilt-android:2.51.1"
139139
androidTestImplementation "com.google.dagger:hilt-android-testing:2.51.1"

BasicLayoutsCodelab/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ dependencies {
7272
implementation "androidx.compose.material:material-icons-extended"
7373
implementation "androidx.compose.ui:ui-tooling-preview"
7474
implementation "com.google.android.material:material:1.12.0"
75-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
75+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.3'
7676
implementation 'androidx.activity:activity-compose:1.9.0'
7777
testImplementation 'junit:junit:4.13.2'
78-
androidTestImplementation 'androidx.test.ext:junit:1.2.0'
79-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.0'
78+
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
79+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
8080
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
8181
debugImplementation "androidx.compose.ui:ui-tooling"
8282
}

BasicStateCodelab/app/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,17 @@ android {
6565

6666
dependencies {
6767
implementation("androidx.core:core-ktx:1.13.1")
68-
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.2")
69-
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2")
68+
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.3")
69+
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.3")
7070
implementation("androidx.activity:activity-compose:1.9.0")
7171
implementation(platform("androidx.compose:compose-bom:2024.06.00"))
7272
implementation("androidx.compose.ui:ui")
7373
implementation("androidx.compose.ui:ui-graphics")
7474
implementation("androidx.compose.ui:ui-tooling-preview")
7575
implementation("androidx.compose.material3:material3")
7676
testImplementation("junit:junit:4.13.2")
77-
androidTestImplementation("androidx.test.ext:junit:1.2.0")
78-
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.0")
77+
androidTestImplementation("androidx.test.ext:junit:1.2.1")
78+
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
7979
androidTestImplementation(platform("androidx.compose:compose-bom:2024.06.00"))
8080
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8181
debugImplementation("androidx.compose.ui:ui-tooling")

BasicsCodelab/app/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ android {
6565

6666
dependencies {
6767
implementation("androidx.core:core-ktx:1.13.1")
68-
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.2")
68+
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.3")
6969
implementation("androidx.activity:activity-compose:1.9.0")
7070
implementation(platform("androidx.compose:compose-bom:2024.06.00"))
7171
implementation("androidx.compose.ui:ui")
@@ -74,8 +74,8 @@ dependencies {
7474
implementation("androidx.compose.material3:material3")
7575
implementation("androidx.compose.material:material-icons-extended")
7676
testImplementation("junit:junit:4.13.2")
77-
androidTestImplementation("androidx.test.ext:junit:1.2.0")
78-
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.0")
77+
androidTestImplementation("androidx.test.ext:junit:1.2.1")
78+
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
7979
androidTestImplementation(platform("androidx.compose:compose-bom:2024.06.00"))
8080
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8181
debugImplementation("androidx.compose.ui:ui-tooling")

MigrationCodelab/app/build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ dependencies {
6969
implementation "androidx.appcompat:appcompat:1.7.0"
7070
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
7171
implementation "androidx.core:core-ktx:1.13.1"
72-
implementation "androidx.fragment:fragment-ktx:1.8.0"
73-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.2"
74-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2"
72+
implementation "androidx.fragment:fragment-ktx:1.8.1"
73+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.3"
74+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.3"
7575
implementation "androidx.navigation:navigation-fragment-ktx:2.7.7"
7676
implementation "androidx.navigation:navigation-ui-ktx:2.7.7"
7777
implementation "androidx.recyclerview:recyclerview:1.3.2"
@@ -98,14 +98,14 @@ dependencies {
9898

9999
// Testing dependencies
100100
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
101-
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.0"
102-
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.0"
103-
androidTestImplementation "androidx.test.espresso:espresso-intents:3.6.0"
104-
androidTestImplementation "androidx.test.ext:junit:1.2.0"
101+
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.1"
102+
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
103+
androidTestImplementation "androidx.test.espresso:espresso-intents:3.6.1"
104+
androidTestImplementation "androidx.test.ext:junit:1.2.1"
105105
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.3.0"
106106
androidTestImplementation "androidx.work:work-testing:2.9.0"
107107
androidTestImplementation "com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework:4.1.1"
108-
androidTestImplementation "com.google.truth:truth:1.4.2"
108+
androidTestImplementation "com.google.truth:truth:1.4.3"
109109
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
110110
testImplementation "junit:junit:4.13.2"
111111
}

NavigationCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ dependencies {
100100

101101
// Testing dependencies
102102
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
103-
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.0"
104-
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.0"
103+
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.1"
104+
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
105105

106106
// Compose testing dependencies
107107
androidTestImplementation "androidx.compose.ui:ui-test-junit4"

PerformanceCodelab/gradle/libs.versions.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ coil = "2.6.0"
33
com-android-application = "8.5.0"
44
desugar_jdk_libs = "2.0.4"
55
kotlinx-datetime = "0.6.0"
6-
lifecycle-viewmodel-compose = "2.8.2"
6+
lifecycle-viewmodel-compose = "2.8.3"
77
material-icons-core = "1.6.8"
88
media3 = "1.3.1"
99
org-jetbrains-kotlin-android = "2.0.0"
1010
core-ktx = "1.13.1"
1111
junit = "4.13.2"
12-
androidx-test-ext-junit = "1.2.0"
13-
espresso-core = "3.6.0"
14-
lifecycle-runtime-ktx = "2.8.2"
12+
androidx-test-ext-junit = "1.2.1"
13+
espresso-core = "3.6.1"
14+
lifecycle-runtime-ktx = "2.8.3"
1515
activity-compose = "1.9.0"
1616
compose-bom = "2024.06.00"
1717
runtime-tracing = "1.0.0-beta01"

TestingCodelab/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ dependencies {
9191
implementation "androidx.appcompat:appcompat:1.7.0"
9292
implementation "androidx.core:core-ktx:1.13.1"
9393
implementation "com.google.android.material:material:1.12.0"
94-
implementation "androidx.fragment:fragment-ktx:1.8.0"
94+
implementation "androidx.fragment:fragment-ktx:1.8.1"
9595

9696
// Compose
9797
implementation "androidx.compose.runtime:runtime"
@@ -108,8 +108,8 @@ dependencies {
108108

109109
// Testing dependencies
110110
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
111-
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.0"
112-
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.0"
111+
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.1"
112+
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
113113

114114
// Compose testing dependencies
115115
androidTestImplementation "androidx.compose.ui:ui-test"

ThemingCodelab/app/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ dependencies {
114114
implementation 'androidx.core:core-ktx:1.13.1'
115115
implementation "androidx.activity:activity-compose:1.9.0"
116116

117-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2"
118-
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.2"
119-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.2"
120-
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2"
117+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.3"
118+
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.3"
119+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.3"
120+
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.3"
121121

122-
androidTestImplementation 'androidx.test:rules:1.6.0'
123-
androidTestImplementation 'androidx.test:runner:1.6.0'
122+
androidTestImplementation 'androidx.test:rules:1.6.1'
123+
androidTestImplementation 'androidx.test:runner:1.6.1'
124124

125125
}
126126

0 commit comments

Comments
 (0)