mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-08-08 06:46:11 +00:00
14 lines
556 B
Prolog
14 lines
556 B
Prolog
# Gson reflection targets in the shared bitchat sources (persisted state payloads).
|
|
-keep class com.bitchat.android.favorites.** { *; }
|
|
-keep class com.bitchat.android.services.SeenMessageStore$* { *; }
|
|
-keepclassmembers class * {
|
|
@com.google.gson.annotations.SerializedName <fields>;
|
|
}
|
|
|
|
# Kotlin metadata needed by reflection-based serialization.
|
|
-keepattributes Signature, InnerClasses, EnclosingMethod
|
|
|
|
# Tink references JSR-305 annotations not present on Android.
|
|
-dontwarn javax.annotation.Nullable
|
|
-dontwarn javax.annotation.concurrent.GuardedBy
|