From ca2089f1f5f737bba2495125e94cd0f70388a181 Mon Sep 17 00:00:00 2001 From: septs Date: Sun, 1 Dec 2024 10:38:04 +0800 Subject: [PATCH] chore: suppress gradle warning We recommend using a newer Android Gradle plugin to use compileSdk = 35 This Android Gradle plugin (8.1.2) was tested up to compileSdk = 34. You are strongly encouraged to update your project to use a newer Android Gradle plugin that has been tested with compileSdk = 35. If you are already using the latest version of the Android Gradle plugin, you may need to wait until a newer version with support for compileSdk = 35 is available. To suppress this warning, add/update android.suppressUnsupportedCompileSdk=35 to this project's gradle.properties. --- gradle.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 022338b..239cc44 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,4 +22,5 @@ kotlin.code.style=official # thereby reducing the size of the R class for that library android.nonTransitiveRClass=true android.defaults.buildfeatures.buildconfig=true -android.nonFinalResIds=false \ No newline at end of file +android.nonFinalResIds=false +android.suppressUnsupportedCompileSdk=35 -- 2.45.3