118 lines
3.3 KiB
Prolog
118 lines
3.3 KiB
Prolog
# 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
|
|
|
|
-ignorewarnings
|
|
|
|
# debugging stack traces.
|
|
-keepattributes SourceFile,LineNumberTable
|
|
|
|
-keepclasseswithmembernames class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# Keep class names of Hilt injected ViewModels since their name are used as a multibinding map key.
|
|
-keepnames @dagger.hilt.android.lifecycle.HiltViewModel class * extends androidx.lifecycle.ViewModel
|
|
|
|
#remove logs
|
|
-assumenosideeffects class android.util.Log {
|
|
public static *** d(...);
|
|
public static *** v(...);
|
|
public static *** i(...);
|
|
public static *** w(...);
|
|
public static *** e(...);
|
|
public static *** wtf(...);
|
|
public static *** println(...);
|
|
}
|
|
|
|
-assumenosideeffects class java.io.PrintStream {
|
|
public void println(%);
|
|
public void println(**);
|
|
}
|
|
|
|
-keep class **.response.** { *; }
|
|
-keep class **.model.** { *; }
|
|
|
|
#Gson specific classes
|
|
-keep class sun.misc.Unsafe { *; }
|
|
-keep class com.google.gson.stream.** { *; }
|
|
-keep class com.google.gson.FieldNamingStrategy { *; }
|
|
-keep class com.google.gson.Gson.** { *; }
|
|
|
|
#play services
|
|
-keep class * extends java.util.ListResourceBundle {
|
|
protected Object[][] getContents();
|
|
}
|
|
|
|
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
|
|
public static final *** NULL;
|
|
}
|
|
|
|
-keepnames @com.google.android.gms.common.annotation.KeepName class *
|
|
-keepclassmembernames class * {
|
|
@com.google.android.gms.common.annotation.KeepName *;
|
|
}
|
|
|
|
-keepnames class * implements android.os.Parcelable {
|
|
public static final ** CREATOR;
|
|
}
|
|
-keepclassmembers class * implements android.os.Parcelable {
|
|
public static final android.os.Parcelable$Creator *;
|
|
}
|
|
|
|
#enums
|
|
-keepclassmembers class * extends java.lang.Enum {
|
|
<fields>;
|
|
public static **[] values();
|
|
public static ** valueOf(java.lang.String);
|
|
}
|
|
|
|
-dontwarn org.jetbrains.annotations.**
|
|
|
|
# for Glide
|
|
-keep public class * implements com.bumptech.glide.module.GlideModule
|
|
-keep public class * extends com.bumptech.glide.module.AppGlideModule
|
|
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
|
|
**[] $VALUES;
|
|
public *;
|
|
}
|
|
|
|
#appsflyer
|
|
-keep class com.appsflyer.** { *; }
|
|
-dontwarn com.android.installreferrer
|
|
|
|
#Firebase Crashlytcis
|
|
-keep public class * extends java.lang.Exception
|
|
-keep class com.crashlytics.** { *; }
|
|
-dontwarn com.crashlytics.**
|
|
|
|
-dontwarn com.google.android.gms.location.**
|
|
-keep class com.google.android.gms.location.** { *; }
|
|
|
|
-keep class com.delight.** { *; }
|
|
|
|
-dontwarn com.google.android.material.**
|
|
-keep class com.google.android.material.** { *; }
|
|
|
|
-dontwarn androidx.**
|
|
-keep class androidx.** { *; }
|
|
-keep interface androidx.** { *; }
|