From 00cab749f8a9825e1fece4a16850a06e1069dd7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 20 Sep 2026 02:23:25 +0000 Subject: [PATCH] Bump the gradle-dependencies group across 1 directory with 2 updates Bumps the gradle-dependencies group with 2 updates in the / directory: [org.robolectric:robolectric](https://github.com/robolectric/robolectric) and org.ow2.asm:asm-tree. Updates `org.robolectric:robolectric` from 4.16.1 to 4.17 - [Release notes](https://github.com/robolectric/robolectric/releases) - [Commits](https://github.com/robolectric/robolectric/compare/robolectric-4.16.1...robolectric-4.17) Updates `org.ow2.asm:asm-tree` from 9.8 to 9.10.1 --- updated-dependencies: - dependency-name: org.robolectric:robolectric dependency-version: '4.17' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: org.ow2.asm:asm-tree dependency-version: 9.10.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies ... Signed-off-by: dependabot[bot] --- androidplot-core/build.gradle | 4 ++-- demoapp/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/androidplot-core/build.gradle b/androidplot-core/build.gradle index 66ac411e..67b76460 100644 --- a/androidplot-core/build.gradle +++ b/androidplot-core/build.gradle @@ -100,8 +100,8 @@ dependencies { testImplementation "org.mockito:mockito-core:5.23.0" testImplementation "junit:junit:4.13.2" - testImplementation "org.robolectric:robolectric:4.16.1" - testImplementation "org.ow2.asm:asm-tree:9.8" + testImplementation "org.robolectric:robolectric:4.17" + testImplementation "org.ow2.asm:asm-tree:9.10.1" // Kotlin is only used by KotlinInteropTest; kotlin.stdlib.default.dependency=false in // gradle.properties keeps the published POM free of a kotlin-stdlib dependency, and // testImplementation never reaches the POM anyway. diff --git a/demoapp/build.gradle b/demoapp/build.gradle index 947ac7dc..0ce8981d 100644 --- a/demoapp/build.gradle +++ b/demoapp/build.gradle @@ -19,7 +19,7 @@ dependencies { // Robolectric tests exercising every example activity; same versions as androidplot-core. // The Robolectric SDK level is pinned in src/test/resources/robolectric.properties. testImplementation "junit:junit:4.13.2" - testImplementation "org.robolectric:robolectric:4.16.1" + testImplementation "org.robolectric:robolectric:4.17" } kotlin {