Proguard rule update.

This commit is contained in:
Thomas Andres Gomez 2023-04-06 13:25:10 +02:00
parent 35d27534df
commit 4be9b70de3
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,9 @@
# 0.1.5
> Published 6 april 2023
* rework the navigation
* add search / filter
* support for multiple sending format.
# 0.1.4 # 0.1.4
> Published 26 October 2022 > Published 26 October 2022
* Fix SignIn and EditProfile Urls. * Fix SignIn and EditProfile Urls.

View file

@ -14,18 +14,16 @@
# Uncomment this to preserve the line number information for # Uncomment this to preserve the line number information for
# debugging stack traces. # debugging stack traces.
-keepattributes SourceFile,LineNumberTable -keepattributes SourceFile,LineNumberTable # Keep file names and line numbers.
-keep public class * extends java.lang.Exception # Optional: Keep custom exceptions.
# If you keep the line number information, uncomment this to # If you keep the line number information, uncomment this to
# hide the original source file name. # hide the original source file name.
-renamesourcefileattribute SourceFile -renamesourcefileattribute SourceFile
# For SerializedName # For SerializedName
-keepattributes *Annotation* -keepattributes *Annotation*
-keepclassmembers,allowobfuscation class * { -keepclassmembers,allowobfuscation class * {
@com.google.gson.annotations.SerializedName <fields>; @com.google.gson.annotations.SerializedName <fields>;
} }
-keep,allowobfuscation @interface com.google.gson.annotations.SerializedName -keep,allowobfuscation @interface com.google.gson.annotations.SerializedName