mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
21 lines
854 B
Prolog
21 lines
854 B
Prolog
# native methods
|
|
-keep class com.b44t.messenger.** { * ; }
|
|
|
|
# Gson uses generic type information stored in a class file when working with
|
|
# fields. Proguard removes such information by default, keep it.
|
|
-keepattributes Signature
|
|
# This is also needed for R8 in compat mode since multiple
|
|
# optimizations will remove the generic signature such as class
|
|
# merging and argument removal. See:
|
|
# https://r8.googlesource.com/r8/+/refs/heads/main/compatibility-faq.md#troubleshooting-gson-gson
|
|
-keep class com.google.gson.reflect.TypeToken { *; }
|
|
-keep class * extends com.google.gson.reflect.TypeToken
|
|
|
|
# bug with video recoder
|
|
-keep class com.coremedia.iso.** { *; }
|
|
|
|
# unused SealedData constructor needed by JsonUtils
|
|
-keep class org.thoughtcrime.securesms.crypto.KeyStoreHelper* { *; }
|
|
|
|
-dontwarn com.google.firebase.analytics.connector.AnalyticsConnector
|