Skip to content

Commit 07f497d

Browse files
build(deps): bump the android-deps group across 1 directory with 10 updates
Bumps the android-deps group with 9 updates in the /apps/android directory: | Package | From | To | | --- | --- | --- | | com.android.application | `9.1.0` | `9.2.1` | | com.android.test | `9.1.0` | `9.2.1` | | [org.jetbrains.kotlin.plugin.compose](https://github.com/JetBrains/kotlin) | `2.3.20` | `2.3.21` | | [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin) | `2.3.20` | `2.3.21` | | androidx.compose:compose-bom | `2026.03.01` | `2026.05.00` | | androidx.webkit:webkit | `1.15.0` | `1.16.0` | | [com.google.android.material:material](https://github.com/material-components/material-components-android) | `1.13.0` | `1.14.0` | | [org.jetbrains.kotlinx:kotlinx-coroutines-android](https://github.com/Kotlin/kotlinx.coroutines) | `1.10.2` | `1.11.0` | | [gradle-wrapper](https://github.com/gradle/gradle) | `9.4.1` | `9.5.1` | Updates `com.android.application` from 9.1.0 to 9.2.1 Updates `com.android.test` from 9.1.0 to 9.2.1 Updates `org.jetbrains.kotlin.plugin.compose` from 2.3.20 to 2.3.21 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.20...v2.3.21) Updates `org.jetbrains.kotlin.plugin.serialization` from 2.3.20 to 2.3.21 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.3.20...v2.3.21) Updates `androidx.compose:compose-bom` from 2026.03.01 to 2026.05.00 Updates `androidx.webkit:webkit` from 1.15.0 to 1.16.0 Updates `com.google.android.material:material` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/material-components/material-components-android/releases) - [Commits](material-components/material-components-android@1.13.0...1.14.0) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.10.2 to 1.11.0 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-test` from 1.10.2 to 1.11.0 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0) Updates `gradle-wrapper` from 9.4.1 to 9.5.1 - [Release notes](https://github.com/gradle/gradle/releases) - [Commits](gradle/gradle@v9.4.1...v9.5.1) --- updated-dependencies: - dependency-name: com.android.application dependency-version: 9.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: com.android.test dependency-version: 9.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: org.jetbrains.kotlin.plugin.compose dependency-version: 2.3.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: android-deps - dependency-name: org.jetbrains.kotlin.plugin.serialization dependency-version: 2.3.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: android-deps - dependency-name: androidx.compose:compose-bom dependency-version: 2026.05.00 dependency-type: direct:production dependency-group: android-deps - dependency-name: androidx.webkit:webkit dependency-version: 1.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: com.google.android.material:material dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: gradle-wrapper dependency-version: 9.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fc45a9b commit 07f497d

6 files changed

Lines changed: 95 additions & 104 deletions

File tree

apps/android/app/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ ktlint {
182182
}
183183

184184
dependencies {
185-
val composeBom = platform("androidx.compose:compose-bom:2026.03.01")
185+
val composeBom = platform("androidx.compose:compose-bom:2026.05.00")
186186
implementation(composeBom)
187187
androidTestImplementation(composeBom)
188188

189189
implementation("androidx.core:core-ktx:1.17.0")
190190
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.10.0")
191191
implementation("androidx.activity:activity-compose:1.13.0")
192-
implementation("androidx.webkit:webkit:1.15.0")
192+
implementation("androidx.webkit:webkit:1.16.0")
193193

194194
implementation("androidx.compose.ui:ui")
195195
implementation("androidx.compose.ui:ui-tooling-preview")
@@ -201,9 +201,9 @@ dependencies {
201201
debugImplementation("androidx.compose.ui:ui-tooling")
202202

203203
// Material Components (XML theme + resources)
204-
implementation("com.google.android.material:material:1.13.0")
204+
implementation("com.google.android.material:material:1.14.0")
205205

206-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2")
206+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0")
207207
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0")
208208

209209
implementation("androidx.security:security-crypto:1.1.0")
@@ -227,7 +227,7 @@ dependencies {
227227
implementation("dnsjava:dnsjava:3.6.4")
228228

229229
testImplementation("junit:junit:4.13.2")
230-
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2")
230+
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
231231
testImplementation("io.kotest:kotest-runner-junit5-jvm:6.1.11")
232232
testImplementation("io.kotest:kotest-assertions-core-jvm:6.1.11")
233233
testImplementation("com.squareup.okhttp3:mockwebserver:5.3.2")

apps/android/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
2-
id("com.android.application") version "9.1.0" apply false
3-
id("com.android.test") version "9.1.0" apply false
2+
id("com.android.application") version "9.2.1" apply false
3+
id("com.android.test") version "9.2.1" apply false
44
id("org.jlleitschuh.gradle.ktlint") version "14.2.0" apply false
5-
id("org.jetbrains.kotlin.plugin.compose") version "2.3.20" apply false
6-
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.20" apply false
5+
id("org.jetbrains.kotlin.plugin.compose") version "2.3.21" apply false
6+
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.21" apply false
77
}
-504 Bytes
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
44
networkTimeout=10000
5+
retries=0
6+
retryBackOffMs=500
57
validateDistributionUrl=true
68
zipStoreBase=GRADLE_USER_HOME
79
zipStorePath=wrapper/dists

apps/android/gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/android/gradlew.bat

Lines changed: 82 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)