From 562e5922bea75dcf7e22454404032f9192d8ea1c Mon Sep 17 00:00:00 2001 From: septs Date: Sun, 1 Dec 2024 14:46:42 +0100 Subject: [PATCH] chore: suppress gradle warning (#75) 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. Reviewed-on: https://gitea.angry.im/PeterCxy/OpenEUICC/pulls/75 Co-authored-by: septs Co-committed-by: septs --- 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