123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- # Add project specific ProGuard rules here.
- # You can control the set of applied configuration files using the
- # proguardFiles setting in build.gradle.
- #
- # For more details, see
- # http://developer.android.com/guide/developing/tools/proguard.html
- # If your project uses WebView with JS, uncomment the following
- # and specify the fully qualified class name to the JavaScript interface
- # class:
- #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
- # public *;
- #}
- # Uncomment this to preserve the line number information for
- # debugging stack traces.
- #-keepattributes SourceFile,LineNumberTable
- # If you keep the line number information, uncomment this to
- # hide the original source file name.
- #-renamesourcefileattribute SourceFile
- -keep class * implements java.io.Serializable { *; }
- -keepattributes *Annotation*
- #### OkHttp, Retrofit and Moshi
- -dontwarn okhttp3.**
- -dontwarn retrofit2.Platform$Java8
- -dontwarn okio.**
- -dontwarn javax.annotation.**
- -dontwarn org.jetbrains.annotations.**
- #-keep class kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoaderImpl
- -keep class kotlin.Metadata { *; }
- -keepclassmembers class kotlin.Metadata {
- public <methods>;
- }
- #-keepnames @kotlin.Metadata class gdt.com.e_payments.data.model.**
- #-keep class gdt.com.e_payments.data.model.** { *; }
- #-keepclassmembers class gdt.com.e_payments.data.model.** { *; }
- -keepclasseswithmembers class * {
- @retrofit2.http.* <methods>;
- }
- -keepclasseswithmembers class * {
- @com.squareup.moshi.* <methods>;
- }
- -keepclassmembers class * {
- @com.squareup.moshi.FromJson <methods>;
- @com.squareup.moshi.ToJson <methods>;
- }
- -keepclassmembers @com.squareup.moshi.JsonClass class * extends java.lang.Enum {
- <fields>;
- **[] values();
- }
- -keep @com.squareup.moshi.JsonQualifier interface *
- -keepnames @com.squareup.moshi.JsonClass class *
- # Retain generated target class's synthetic defaults constructor and keep DefaultConstructorMarker's
- # name. We will look this up reflectively to invoke the type's constructor.
- #
- # We can't _just_ keep the defaults constructor because Proguard/R8's spec doesn't allow wildcard
- # matching preceding parameters.
- -keepnames class kotlin.jvm.internal.DefaultConstructorMarker
- -keepclassmembers @com.squareup.moshi.JsonClass @kotlin.Metadata class * {
- synthetic <init>(...);
- }
- # Retain generated JsonAdapters if annotated type is retained.
- -if @com.squareup.moshi.JsonClass class *
- -keep class <1>JsonAdapter {
- <init>(...);
- <fields>;
- }
- -if @com.squareup.moshi.JsonClass class **$*
- -keep class <1>_<2>JsonAdapter {
- <init>(...);
- <fields>;
- }
- -if @com.squareup.moshi.JsonClass class **$*$*
- -keep class <1>_<2>_<3>JsonAdapter {
- <init>(...);
- <fields>;
- }
- -if @com.squareup.moshi.JsonClass class **$*$*$*
- -keep class <1>_<2>_<3>_<4>JsonAdapter {
- <init>(...);
- <fields>;
- }
- -if @com.squareup.moshi.JsonClass class **$*$*$*$*
- -keep class <1>_<2>_<3>_<4>_<5>JsonAdapter {
- <init>(...);
- <fields>;
- }
- -if @com.squareup.moshi.JsonClass class **$*$*$*$*$*
- -keep class <1>_<2>_<3>_<4>_<5>_<6>JsonAdapter {
- <init>(...);
- <fields>;
- }
- # RxJava
- -dontwarn org.reactivestreams.FlowAdapters
- -dontwarn org.reactivestreams.**
- -dontwarn java.util.concurrent.Flow.**
- -dontwarn java.util.concurrent.**
- # Firebase Crashlytics
- -keepattributes SourceFile,LineNumberTable # Keep file names and line numbers.
- -keep public class * extends java.lang.Exception # Optional: Keep custom exceptions.
- -keep class com.google.firebase.crashlytics. { *; }
- -dontwarn com.google.firebase.crashlytics.
- #-keepnames @kotlin.Metadata class com.gdt.dev.gdtevaluationAdmin.data.remote.model.**
- #-keep class com.gdt.dev.gdtevaluationAdmin.data.remote.model.** { *; }
- #-keepclassmembers class com.gdt.dev.gdtevaluationAdmin.data.remote.model.** { *; }
|