From 60d732e6fe836f294a7878b3a5fb6426a6e77833 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sun, 26 Apr 2026 22:06:14 +0800 Subject: [PATCH] gradle: Specify compile SDK using the new DSL Ref: https://gitlab.com/fdroid/fdroiddata/-/merge_requests/37141 Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 577de3f8b..f26de4c03 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -52,7 +52,9 @@ kotlin { configure { namespace = "com.aurora.store" - compileSdk = 37 + compileSdk { + version = release(37) + } defaultConfig { applicationId = "com.aurora.store"