From ce1bcd6c7df6c0120e7bfaded52d3f30c6d303b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 14:29:54 +0000 Subject: [PATCH 1/2] Bump androidx.core:core-ktx from 1.18.0 to 1.19.0 Bumps androidx.core:core-ktx from 1.18.0 to 1.19.0. --- updated-dependencies: - dependency-name: androidx.core:core-ktx dependency-version: 1.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 682a56c..61d974f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -169,7 +169,7 @@ tasks.withType { } dependencies { - implementation("androidx.core:core-ktx:1.18.0") + implementation("androidx.core:core-ktx:1.19.0") implementation("androidx.activity:activity-ktx:1.13.0") implementation("androidx.appcompat:appcompat:1.7.1") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.10.0") From fc78fd25130b2edb83d1092a1ecfc7c9fe01566f Mon Sep 17 00:00:00 2001 From: Matt Robinson Date: Sat, 27 Jun 2026 15:52:43 +0100 Subject: [PATCH 2/2] Bump AGP to 9.2.1 and compileSdk to 37 core-ktx 1.19.0 requires a compileSdk of 37 so bump from 36. Also bump AGP from 9.1.0 to 9.2.1 as this is needed to use a compileSdk of 37. --- app/build.gradle.kts | 2 +- build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 61d974f..17116de 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -52,7 +52,7 @@ kotlin { android { namespace = "com.nerdoftheherd.tasker.rsync" - compileSdk = 36 + compileSdk = 37 defaultConfig { applicationId = "com.nerdoftheherd.tasker.rsync" diff --git a/build.gradle.kts b/build.gradle.kts index e95ea76..b4bef25 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright © 2021-2024 Matt Robinson + * Copyright © 2021-2026 Matt Robinson * * SPDX-License-Identifier: GPL-3.0-or-later */ @@ -10,7 +10,7 @@ buildscript { mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:9.1.0") + classpath("com.android.tools.build:gradle:9.2.1") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.21") } }