Skip to content

Commit 6790438

Browse files
Update all dependencies (#438)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2fdc2b5 commit 6790438

File tree

13 files changed

+41
-41
lines changed

13 files changed

+41
-41
lines changed

AccessibilityCodelab/app/build.gradle

Lines changed: 4 additions & 4 deletions
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:2024.04.00')
93+
def composeBom = platform('androidx.compose:compose-bom:2024.04.01')
9494
implementation(composeBom)
9595
testImplementation(composeBom)
9696
androidTestImplementation(composeBom)
@@ -117,9 +117,9 @@ dependencies {
117117
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"
118118

119119
implementation 'androidx.appcompat:appcompat:1.6.1'
120-
implementation 'androidx.activity:activity-ktx:1.8.2'
121-
implementation 'androidx.core:core-ktx:1.12.0'
122-
implementation "androidx.activity:activity-compose:1.8.2"
120+
implementation 'androidx.activity:activity-ktx:1.9.0'
121+
implementation 'androidx.core:core-ktx:1.13.0'
122+
implementation "androidx.activity:activity-compose:1.9.0"
123123

124124
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"
125125
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.7.0"

AdaptiveUICodelab/app/build.gradle

Lines changed: 3 additions & 3 deletions
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:2024.04.00')
68+
def composeBom = platform('androidx.compose:compose-bom:2024.04.01')
6969
implementation(composeBom)
7070
androidTestImplementation(composeBom)
7171

@@ -78,8 +78,8 @@ dependencies {
7878

7979
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0"
8080
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.7.0"
81-
implementation 'androidx.activity:activity-compose:1.8.2'
82-
implementation 'androidx.core:core-ktx:1.12.0'
81+
implementation 'androidx.activity:activity-compose:1.9.0'
82+
implementation 'androidx.core:core-ktx:1.13.0'
8383
implementation "androidx.window:window:1.2.0"
8484
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"
8585

AdvancedStateAndSideEffectsCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ dependencies {
106106
}
107107
}
108108

109-
implementation "androidx.activity:activity-compose:1.8.2"
109+
implementation "androidx.activity:activity-compose:1.9.0"
110110
implementation "androidx.appcompat:appcompat:1.6.1"
111111

112-
def composeBom = platform('androidx.compose:compose-bom:2024.04.00')
112+
def composeBom = platform('androidx.compose:compose-bom:2024.04.01')
113113
implementation(composeBom)
114114
androidTestImplementation(composeBom)
115115
implementation "androidx.compose.runtime:runtime"

AnimationCodelab/finished/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ android {
4545
}
4646

4747
dependencies {
48-
def composeBom = platform('androidx.compose:compose-bom:2024.04.00')
48+
def composeBom = platform('androidx.compose:compose-bom:2024.04.01')
4949
implementation(composeBom)
5050

51-
implementation 'androidx.activity:activity-compose:1.8.2'
52-
implementation 'androidx.core:core-ktx:1.12.0'
51+
implementation 'androidx.activity:activity-compose:1.9.0'
52+
implementation 'androidx.core:core-ktx:1.13.0'
5353
implementation "androidx.compose.ui:ui"
5454
implementation "androidx.compose.material3:material3"
5555
implementation "androidx.compose.ui:ui-tooling-preview"

AnimationCodelab/start/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ android {
4545
}
4646

4747
dependencies {
48-
def composeBom = platform('androidx.compose:compose-bom:2024.04.00')
48+
def composeBom = platform('androidx.compose:compose-bom:2024.04.01')
4949
implementation(composeBom)
5050

51-
implementation 'androidx.activity:activity-compose:1.8.2'
52-
implementation 'androidx.core:core-ktx:1.12.0'
51+
implementation 'androidx.activity:activity-compose:1.9.0'
52+
implementation 'androidx.core:core-ktx:1.13.0'
5353
implementation "androidx.compose.ui:ui"
5454
implementation "androidx.compose.material3:material3"
5555
implementation "androidx.compose.ui:ui-tooling-preview"

BasicLayoutsCodelab/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@ android {
6363
}
6464

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

70-
implementation 'androidx.core:core-ktx:1.12.0'
70+
implementation 'androidx.core:core-ktx:1.13.0'
7171
implementation "androidx.compose.ui:ui"
7272
implementation 'androidx.compose.material3:material3'
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"
7676
implementation "com.google.android.material:material:1.11.0"
7777
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
78-
implementation 'androidx.activity:activity-compose:1.8.2'
78+
implementation 'androidx.activity:activity-compose:1.9.0'
7979
testImplementation 'junit:junit:4.13.2'
8080
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
8181
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

BasicStateCodelab/app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,19 @@ android {
6666
}
6767

6868
dependencies {
69-
implementation("androidx.core:core-ktx:1.12.0")
69+
implementation("androidx.core:core-ktx:1.13.0")
7070
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
7171
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0")
72-
implementation("androidx.activity:activity-compose:1.8.2")
73-
implementation(platform("androidx.compose:compose-bom:2024.04.00"))
72+
implementation("androidx.activity:activity-compose:1.9.0")
73+
implementation(platform("androidx.compose:compose-bom:2024.04.01"))
7474
implementation("androidx.compose.ui:ui")
7575
implementation("androidx.compose.ui:ui-graphics")
7676
implementation("androidx.compose.ui:ui-tooling-preview")
7777
implementation("androidx.compose.material3:material3")
7878
testImplementation("junit:junit:4.13.2")
7979
androidTestImplementation("androidx.test.ext:junit:1.1.5")
8080
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
81-
androidTestImplementation(platform("androidx.compose:compose-bom:2024.04.00"))
81+
androidTestImplementation(platform("androidx.compose:compose-bom:2024.04.01"))
8282
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8383
debugImplementation("androidx.compose.ui:ui-tooling")
8484
debugImplementation("androidx.compose.ui:ui-test-manifest")

BasicsCodelab/app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ android {
6666
}
6767

6868
dependencies {
69-
implementation("androidx.core:core-ktx:1.12.0")
69+
implementation("androidx.core:core-ktx:1.13.0")
7070
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
71-
implementation("androidx.activity:activity-compose:1.8.2")
72-
implementation(platform("androidx.compose:compose-bom:2024.04.00"))
71+
implementation("androidx.activity:activity-compose:1.9.0")
72+
implementation(platform("androidx.compose:compose-bom:2024.04.01"))
7373
implementation("androidx.compose.ui:ui")
7474
implementation("androidx.compose.ui:ui-graphics")
7575
implementation("androidx.compose.ui:ui-tooling-preview")
@@ -78,7 +78,7 @@ dependencies {
7878
testImplementation("junit:junit:4.13.2")
7979
androidTestImplementation("androidx.test.ext:junit:1.1.5")
8080
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
81-
androidTestImplementation(platform("androidx.compose:compose-bom:2024.04.00"))
81+
androidTestImplementation(platform("androidx.compose:compose-bom:2024.04.01"))
8282
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
8383
debugImplementation("androidx.compose.ui:ui-tooling")
8484
debugImplementation("androidx.compose.ui:ui-test-manifest")

MigrationCodelab/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ android {
6161
}
6262

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

6868
kapt "androidx.room:room-compiler:2.6.1"
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"
72-
implementation "androidx.core:core-ktx:1.12.0"
72+
implementation "androidx.core:core-ktx:1.13.0"
7373
implementation "androidx.fragment:fragment-ktx:1.6.2"
7474
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
7575
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"

NavigationCodelab/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ android {
8080
}
8181

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

8787
implementation "androidx.appcompat:appcompat:1.6.1"
88-
implementation "androidx.core:core-ktx:1.12.0"
88+
implementation "androidx.core:core-ktx:1.13.0"
8989
implementation "com.google.android.material:material:1.11.0"
9090

9191
// Compose
@@ -94,7 +94,7 @@ dependencies {
9494
implementation "androidx.compose.foundation:foundation"
9595
implementation "androidx.compose.material:material"
9696
implementation "androidx.compose.material:material-icons-extended"
97-
implementation "androidx.activity:activity-compose:1.8.2"
97+
implementation "androidx.activity:activity-compose:1.9.0"
9898
debugImplementation "androidx.compose.ui:ui-tooling"
9999

100100
// Testing dependencies

0 commit comments

Comments
 (0)