From ed5bb871f40ab578e5e90740b139b1eb515ff614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 8 Dec 2021 20:33:37 +0100 Subject: [PATCH] fix(android) fix NoClassDefFoundError for Landroid/graphics/ColorSpace Fixes: https://github.com/jitsi/jitsi-meet/issues/10182 --- android/app/proguard-rules.pro | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro index 261aca42a..40860cb97 100644 --- a/android/app/proguard-rules.pro +++ b/android/app/proguard-rules.pro @@ -85,4 +85,9 @@ # ^^^ We added the above when we switched minifyEnabled on. # Rule to avoid build errors related to SVGs. --keep public class com.horcrux.svg.** {*;} \ No newline at end of file +-keep public class com.horcrux.svg.** {*;} + +# https://github.com/facebook/fresco/issues/2638 +-keep public class com.facebook.imageutils.** { + public *; +}