From d1c53fb1ca0a9c6dda8f1aa051bf40dcf89136dd Mon Sep 17 00:00:00 2001 From: Takeshi Hagikura Date: Mon, 14 May 2018 14:01:57 +0900 Subject: [PATCH] Change the proguard rule from keep to dontobfuscate not to keep the FlexboxLayoutManager in the binary even if it's not used. Fixes 74417025 internally. --- flexbox/proguard-rules.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flexbox/proguard-rules.txt b/flexbox/proguard-rules.txt index 04ca7ecb..0d727ed0 100644 --- a/flexbox/proguard-rules.txt +++ b/flexbox/proguard-rules.txt @@ -17,4 +17,4 @@ # The FlexboxLayoutManager may be set from a layout xml, in that situation the RecyclerView # tries to instantiate the layout manager using reflection. # This is to prevent the layout manager from being obfuscated. --keep public class com.google.android.flexbox.FlexboxLayoutManager \ No newline at end of file +-keepnames public class com.google.android.flexbox.FlexboxLayoutManager \ No newline at end of file