mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
32 lines
806 B
INI
32 lines
806 B
INI
|
-dontobfuscate
|
||
|
|
||
|
## Support
|
||
|
|
||
|
-keep class android.support.v4.app.** { *; }
|
||
|
-keep interface android.support.v4.app.** { *; }
|
||
|
|
||
|
-keep class android.support.v7.internal.** { *; }
|
||
|
-keep interface android.support.v7.internal.** { *; }
|
||
|
-keep class android.support.v7.** { *; }
|
||
|
-keep interface android.support.v7.** { *; }
|
||
|
-keep public class * extends android.support.v7.app.ActionBarActivity { *; }
|
||
|
-keep class android.support.v7.widget.** { *; }
|
||
|
-keepattributes *Annotation*
|
||
|
|
||
|
## Protobuf
|
||
|
|
||
|
-keep class com.google.protobuf.** { *; }
|
||
|
|
||
|
## GSON
|
||
|
|
||
|
# removes such information by default, so configure it to keep all of it.
|
||
|
-keepattributes Signature
|
||
|
|
||
|
# For using GSON @Expose annotation
|
||
|
-keepattributes *Annotation*
|
||
|
|
||
|
# Gson specific classes
|
||
|
-keep class sun.misc.Unsafe { *; }
|
||
|
#-keep class com.google.gson.stream.** { *; }
|
||
|
|