From 745d603de9ccf1d8a3fdc8e35bb1d1663df383ce Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 27 Mar 2025 12:11:55 +0800 Subject: [PATCH] gradle: Enable configuration cache as suggested by AS Signed-off-by: Aayush Gupta --- gradle.properties | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 8aaf803f1..6456748c9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -37,5 +37,7 @@ android.useAndroidX=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official -# Disable new R8 mode +# https://r8.googlesource.com/r8/+/refs/heads/master/compatibility-faq.md#r8-full-mode android.enableR8.fullMode=false +# https://docs.gradle.org/current/userguide/configuration_cache.html +org.gradle.configuration-cache=true