From 405a60b09b15e191b8b549461edb491c525bdd72 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 25 Oct 2020 00:38:53 +0530 Subject: [PATCH] gradle: disable R8 full mode Signed-off-by: Harsh Shandilya --- gradle.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index bc6a197f..3b2000c1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,7 +21,8 @@ kapt.incremental.apt=true kapt.include.compile.classpath=false # Use R8 instead of ProGuard for code shrinking. -android.enableR8.fullMode=true +# R8 Full Mode be nasty +# android.enableR8.fullMode=true # Enable AndroidX android.useAndroidX=true