From 76f613f82f2014375f74b2ed77535cc228c17a06 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 17 Dec 2020 11:43:07 +0530 Subject: [PATCH] gradle: disable 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 bc6a197f..50a4edb3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,8 +20,8 @@ kapt.incremental.apt=true # Turn off AP discovery in compile path to enable compile avoidance kapt.include.compile.classpath=false -# Use R8 instead of ProGuard for code shrinking. -android.enableR8.fullMode=true +# Disable R8 full mode due to bugs with Jetpack Compose. +# android.enableR8.fullMode=true # Enable AndroidX android.useAndroidX=true