From be95d0c1984d8cd969e252eb76ce2dfd57eda57b Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 25 Mar 2021 15:37:30 +0530 Subject: [PATCH] gradle: enable R8 full mode Signed-off-by: Harsh Shandilya --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 05ae5ade..2d4245da 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ kotlin.code.style=official # Turn off AP discovery in compile path to enable compile avoidance kapt.include.compile.classpath=false -# Disable R8 full mode due to bugs with Jetpack Compose. -# android.enableR8.fullMode=true +# Enable R8 full mode +android.enableR8.fullMode=true # Enable AndroidX android.useAndroidX=true