Skip to content

Commit ce1bfd0

Browse files
authored
Merge pull request #473 from android/renovate/end-all
Update all dependencies (end)
2 parents 896c318 + cef0b92 commit ce1bfd0

File tree

9 files changed

+26
-23
lines changed

9 files changed

+26
-23
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ dependencies {
110110

111111
implementation 'androidx.navigation:navigation-compose:2.7.7'
112112

113-
androidTestImplementation 'androidx.test:rules:1.5.0'
114-
androidTestImplementation 'androidx.test:runner:1.5.2'
113+
androidTestImplementation 'androidx.test:rules:1.6.0'
114+
androidTestImplementation 'androidx.test:runner:1.6.0'
115115

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

AdaptiveUiCodelab/gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ androidGradlePlugin = "8.5.0"
33
composeBom = "2024.06.00"
44
coreKtx = "1.13.1"
55
activityCompose = "1.9.0"
6-
espressoCore = "3.5.1"
6+
espressoCore = "3.6.0"
77
junit = "4.13.2"
8-
junitVersion = "1.1.5"
8+
junitVersion = "1.2.0"
99
kotlin = "2.0.0"
1010
kotlinxCoroutinesAndroid = "1.8.1"
1111
lifecycle = "2.8.2"

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ dependencies {
105105

106106
implementation "androidx.activity:activity-compose:1.9.0"
107107
implementation "androidx.appcompat:appcompat:1.7.0"
108+
implementation "androidx.tracing:tracing:1.2.0"
108109

109110
def composeBom = platform('androidx.compose:compose-bom:2024.06.00')
110111
implementation(composeBom)
@@ -130,11 +131,11 @@ dependencies {
130131
implementation "io.coil-kt:coil-compose:2.6.0"
131132

132133
androidTestImplementation "junit:junit:4.13.2"
133-
androidTestImplementation "androidx.test:core:1.5.0"
134-
androidTestImplementation "androidx.test:runner:1.5.2"
135-
androidTestImplementation "androidx.test:rules:1.5.0"
136-
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
137-
androidTestImplementation "androidx.test.ext:junit-ktx:1.1.5"
134+
androidTestImplementation "androidx.test:core:1.6.0"
135+
androidTestImplementation "androidx.test:runner:1.6.0"
136+
androidTestImplementation "androidx.test:rules:1.6.0"
137+
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.0"
138+
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.0"
138139
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1"
139140
androidTestImplementation "com.google.dagger:hilt-android:2.51.1"
140141
androidTestImplementation "com.google.dagger:hilt-android-testing:2.51.1"

BasicLayoutsCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ dependencies {
7575
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
7676
implementation 'androidx.activity:activity-compose:1.9.0'
7777
testImplementation 'junit:junit:4.13.2'
78-
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
79-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
78+
androidTestImplementation 'androidx.test.ext:junit:1.2.0'
79+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.0'
8080
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
8181
debugImplementation "androidx.compose.ui:ui-tooling"
8282
}

MigrationCodelab/app/build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ dependencies {
7777
implementation "androidx.recyclerview:recyclerview:1.3.2"
7878
implementation "androidx.room:room-runtime:2.6.1"
7979
implementation "androidx.room:room-ktx:2.6.1"
80+
implementation "androidx.tracing:tracing:1.2.0"
8081
implementation "androidx.viewpager2:viewpager2:1.1.0"
8182
implementation "androidx.work:work-runtime-ktx:2.9.0"
8283
implementation "com.github.bumptech.glide:glide:4.16.0"
@@ -97,13 +98,14 @@ dependencies {
9798

9899
// Testing dependencies
99100
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
100-
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.5.1"
101-
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
102-
androidTestImplementation "androidx.test.espresso:espresso-intents:3.5.1"
103-
androidTestImplementation "androidx.test.ext:junit:1.1.5"
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"
104105
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.3.0"
105106
androidTestImplementation "androidx.work:work-testing:2.9.0"
107+
androidTestImplementation "com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework:4.1.1"
106108
androidTestImplementation "com.google.truth:truth:1.4.2"
107109
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
108110
testImplementation "junit:junit:4.13.2"
109-
}
111+
}

NavigationCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ dependencies {
101101

102102
// Testing dependencies
103103
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
104-
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.5.1"
105-
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
104+
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.0"
105+
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.0"
106106

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

PerformanceCodelab/gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ 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.1.5"
13-
espresso-core = "3.5.1"
12+
androidx-test-ext-junit = "1.2.0"
13+
espresso-core = "3.6.0"
1414
lifecycle-runtime-ktx = "2.8.2"
1515
activity-compose = "1.9.0"
1616
compose-bom = "2024.06.00"

TestingCodelab/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ buildscript {
2727
activityComposeVersion = '1.9.0'
2828
coreTestingVersion = '2.2.0'
2929
coroutinesVersion = "1.5.2"
30-
espressoVersion = '3.5.1'
30+
espressoVersion = '3.6.0'
3131
fragmentVersion = '1.8.0'
3232
junitVersion = '4.13.1'
3333
kotlinVersion = '2.0.0'

ThemingCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ dependencies {
120120
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.2"
121121
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2"
122122

123-
androidTestImplementation 'androidx.test:rules:1.5.0'
124-
androidTestImplementation 'androidx.test:runner:1.5.2'
123+
androidTestImplementation 'androidx.test:rules:1.6.0'
124+
androidTestImplementation 'androidx.test:runner:1.6.0'
125125

126126
}
127127

0 commit comments

Comments
 (0)