From ba447fbcc8a7e649c9cb1226330f812f9874e805 Mon Sep 17 00:00:00 2001 From: Dmitri Chernysh Date: Fri, 3 Nov 2023 01:01:17 +0200 Subject: [PATCH] Gradle cache is turned ON --- gradle.properties | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 6a8c7d3..e71fb95 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,5 @@ # Gradle properties +# Configuration on demand attempts to configure only projects that are relevant for requested tasks org.gradle.configureondemand=true org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx4g" -XX:+UseParallelGC org.gradle.parallel=true @@ -8,13 +9,15 @@ org.gradle.parallel=true org.gradle.unsafe.configuration-cache=false # Should be enabled for better performance org.gradle.daemon=true - +# The cache stores previous build results, and greatly reduces the need to rebuild things when they have already been built locally. +org.gradle.caching=true +# Show more logs +org.gradle.console=verbose # Application properties android.enableJetifier=false android.useAndroidX=true kapt.incremental.apt=true kotlin.code.style=official - # Abdroid Build features default values android.defaults.buildfeatures.aidl=false android.defaults.buildfeatures.buildconfig=false