From 18d08bf6e0896b1bb54fbba06989ad40932a2834 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 16 May 2024 13:01:15 -0400 Subject: [PATCH] Don't obfuscate data classes. --- commons/proguard-rules.pro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commons/proguard-rules.pro b/commons/proguard-rules.pro index 481bb4348..0f4c1eeb3 100644 --- a/commons/proguard-rules.pro +++ b/commons/proguard-rules.pro @@ -18,4 +18,6 @@ # If you keep the line number information, uncomment this to # hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file +#-renamesourcefileattribute SourceFile + +-keep class com.vitorpamplona.amethyst.commons.data.** { *; } \ No newline at end of file