From f648f6af498ee394e9ef10a5354b7446b136ea5b Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 18 Aug 2023 21:02:26 +0530 Subject: [PATCH] Drop unused/deprecated gradle properties - kapt's incrementatal annotation processing is enabled by default - databinding incremental is deprecated - compile.classpath is experimental Signed-off-by: Aayush Gupta --- gradle.properties | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gradle.properties b/gradle.properties index 39b451648..8aaf803f1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -37,13 +37,5 @@ android.useAndroidX=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official -# Enable Kapt Incremental annotation processing requeste -kapt.incremental.apt=true - -# Enable android.databinding.annotationprocessor.ProcessDataBinding (DYNAMIC) -android.databinding.incremental=true -android.lifecycleProcessor.incremental=true - -# turn off AP discovery in compile path, and therefore turn on Compile Avoidance -kapt.include.compile.classpath=false +# Disable new R8 mode android.enableR8.fullMode=false