From a9b64cc177f152c474596a06165967313fd86a50 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 6 Feb 2026 22:49:43 +0100 Subject: [PATCH] build: avoid deprecated compileSdk with int literal Seems this is now required since . --- app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 1e09531..5d35cb7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,7 +14,9 @@ android { } } - compileSdk 36 + compileSdk { + version = release(36) + } defaultConfig { applicationId "hu.vmiklos.plees_tracker"