From e4f445ac757eaf4d35cc7df0e1d8f923a6a177da Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Mon, 8 Jun 2026 15:34:36 +0200 Subject: [PATCH] fix(build): bump compileSdk 36 -> 37 for Material 3 Expressive alpha Material 3 Expressive 1.5.0-alpha21 transitively requires material-ripple-android:1.12.0-alpha03, which mandates compileSdk >= 37 via its AAR metadata. The Android SDK platform 37.0 was installed locally (already available as a preview). targetSdk stays at 36 - we compile against API 37 only for the new material-ripple constants, not to opt into runtime behavior changes. targetSdk will follow when API 37 reaches stable. Co-Authored-By: Claude Opus 4.7 (1M context) --- 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 7ab6441..eac9791 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -7,7 +7,7 @@ plugins { android { namespace = "de.jeanlucmakiola.calendula" - compileSdk = 36 + compileSdk = 37 defaultConfig { applicationId = "de.jeanlucmakiola.calendula"