Skip to content

Commit 97ea771

Browse files
Update all dependencies
1 parent 06f13f4 commit 97ea771

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

AccessibilityCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ android {
7373
}
7474

7575
dependencies {
76-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
76+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
7777
implementation(composeBom)
7878
testImplementation(composeBom)
7979
androidTestImplementation(composeBom)
@@ -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.10.3'
121+
testImplementation 'org.robolectric:robolectric:4.11'
122122
}
123123

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

AdaptiveUiCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ android {
6565
dependencies {
6666

6767

68-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
68+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
6969
implementation(composeBom)
7070
androidTestImplementation(composeBom)
7171

@@ -82,7 +82,7 @@ dependencies {
8282
implementation 'androidx.core:core-ktx:1.12.0'
8383
implementation "androidx.window:window:1.1.0"
8484
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"
85-
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-alpha09"
85+
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-alpha10"
8686

8787
testImplementation 'junit:junit:4.13.2'
8888
androidTestImplementation 'androidx.test.ext:junit:1.1.5'

AdvancedStateAndSideEffectsCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ dependencies {
110110
implementation "androidx.activity:activity-compose:1.8.0"
111111
implementation "androidx.appcompat:appcompat:1.6.1"
112112

113-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
113+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
114114
implementation(composeBom)
115115
androidTestImplementation(composeBom)
116116
implementation "androidx.compose.runtime:runtime"
@@ -131,7 +131,7 @@ dependencies {
131131
implementation "com.google.dagger:hilt-android:2.48.1"
132132
kapt "com.google.dagger:hilt-compiler:2.48.1"
133133

134-
implementation "io.coil-kt:coil-compose:2.4.0"
134+
implementation "io.coil-kt:coil-compose:2.5.0"
135135

136136
androidTestImplementation "junit:junit:4.13.2"
137137
androidTestImplementation "androidx.test:core:1.5.0"

BasicLayoutsCodelab/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ android {
6363
}
6464

6565
dependencies {
66-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
66+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
6767
implementation(composeBom)
6868
androidTestImplementation(composeBom)
6969

MigrationCodelab/app/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ android {
6161
}
6262

6363
dependencies {
64-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
64+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
6565
implementation(composeBom)
6666
androidTestImplementation(composeBom)
6767

68-
kapt "androidx.room:room-compiler:2.5.2"
68+
kapt "androidx.room:room-compiler:2.6.0"
6969
kapt "com.github.bumptech.glide:compiler:4.16.0"
7070
implementation "androidx.appcompat:appcompat:1.6.1"
7171
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
@@ -75,9 +75,9 @@ dependencies {
7575
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2"
7676
implementation "androidx.navigation:navigation-fragment-ktx:2.7.4"
7777
implementation "androidx.navigation:navigation-ui-ktx:2.7.4"
78-
implementation "androidx.recyclerview:recyclerview:1.3.1"
79-
implementation "androidx.room:room-runtime:2.5.2"
80-
implementation "androidx.room:room-ktx:2.5.2"
78+
implementation "androidx.recyclerview:recyclerview:1.3.2"
79+
implementation "androidx.room:room-runtime:2.6.0"
80+
implementation "androidx.room:room-ktx:2.6.0"
8181
implementation "androidx.viewpager2:viewpager2:1.0.0"
8282
implementation "androidx.work:work-runtime-ktx:2.8.1"
8383
implementation "com.github.bumptech.glide:glide:4.16.0"

NavigationCodelab/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ android {
8080
}
8181

8282
dependencies {
83-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
83+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
8484
implementation(composeBom)
8585
androidTestImplementation(composeBom)
8686

TestingCodelab/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ android {
8787
}
8888

8989
dependencies {
90-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
90+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
9191
implementation(composeBom)
9292
androidTestImplementation(composeBom)
9393

ThemingCodelab/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ android {
9090
}
9191

9292
dependencies {
93-
def composeBom = platform('androidx.compose:compose-bom:2023.10.00')
93+
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
9494
implementation(composeBom)
9595
testImplementation(composeBom)
9696
androidTestImplementation(composeBom)

0 commit comments

Comments
 (0)