From 3dccb7a6514c6eb2d7528e96d80dfda281f3d4ca Mon Sep 17 00:00:00 2001 From: Jonathan Kaleve Date: Sun, 19 Jul 2026 10:24:01 +0200 Subject: [PATCH] Bump compileSdk to 36 + AndroidX/Kotlin deps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit androidx activity 1.13 / core 1.19 require compileSdk 36. Bump compileSdk (kept targetSdk 35 — no runtime behavior change) and the Kotlin compose plugin to 2.4.10 to match. Supersedes Dependabot #9/#10. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01CtjY18wugKidN837FnzhAS --- app/build.gradle.kts | 6 +++--- build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 00d4094..dcb0836 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -5,7 +5,7 @@ plugins { android { namespace = "com.minesweeper" - compileSdk = 35 + compileSdk = 36 defaultConfig { applicationId = "io.github.johnathan.minesweeper" @@ -41,8 +41,8 @@ dependencies { implementation("androidx.compose.material3:material3") implementation("androidx.compose.animation:animation") implementation("androidx.compose.foundation:foundation") - implementation("androidx.activity:activity-compose:1.10.1") - implementation("androidx.core:core-ktx:1.16.0") + implementation("androidx.activity:activity-compose:1.13.0") + implementation("androidx.core:core-ktx:1.19.0") debugImplementation("androidx.compose.ui:ui-tooling") } diff --git a/build.gradle.kts b/build.gradle.kts index bd1ebbf..bfcb048 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,4 @@ plugins { id("com.android.application") version "9.3.0" apply false - id("org.jetbrains.kotlin.plugin.compose") version "2.2.21" apply false + id("org.jetbrains.kotlin.plugin.compose") version "2.4.10" apply false }