Files
super-app/android/app/proguard-rules.pro
2024-11-20 11:00:20 +00:00

234 lines
6.7 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 *;
#}
-ignorewarnings
# debugging stack traces.
-keepattributes SourceFile,LineNumberTable
#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 **.models.** { *; }
-keep class **.model.** { *; }
-keep class com.navi.uitron.validation.** { *; }
# hide the original source file name.
#-renamesourcefileattribute SourceFile
#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);
}
#### Start Retrofit and OKHTTP
# Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and
# EnclosingMethod is required to use InnerClasses.
-keepattributes Signature, InnerClasses, EnclosingMethod
# Retrofit does reflection on method and parameter annotations.
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations
# Retain service method parameters when optimizing.
#-keepclassmembers,allowshrinking,allowobfuscation interface * {
# @retrofit2.http.* <methods>;
#}
-keep class org.apache.http.** { *; }
-dontwarn org.apache.http.**
## Retrofit 2
-keepnames class retrofit2.** { *; }
-dontwarn rx.**
-keep class retrofit2.** { *; }
-dontwarn retrofit2.**
# Ignore annotation used for build tooling.
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
# Ignore JSR 305 annotations for embedding nullability information.
-dontwarn javax.annotation.**
# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
-dontwarn kotlin.Unit
# Top-level functions that can only be used by Kotlin.
-dontwarn retrofit2.KotlinExtensions
-dontwarn retrofit2.KotlinExtensions$*
# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
-if interface * { @retrofit2.http.* <methods>; }
-keep,allowobfuscation interface <1>
# JSR 305 annotations are for embedding nullability information.
-dontwarn javax.annotation.**
# A resource is loaded with a relative path so the package of this class must be preserved.
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
-dontwarn org.codehaus.mojo.animal_sniffer.*
# OkHttp platform used only on JVM and when Conscrypt dependency is available.
-dontwarn okhttp3.internal.platform.ConscryptPlatform
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
-dontwarn okio.**
#### END Retrofit and OKHTTP
-dontwarn org.jetbrains.annotations.**
# for Glide
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep class * extends com.bumptech.glide.module.AppGlideModule {
<init>(...);
}
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
**[] $VALUES;
public *;
}
-keep class com.bumptech.glide.load.data.ParcelFileDescriptorRewinder$InternalRewinder {
*** rewind();
}
#third party camera
-keep class com.otaliastudios.cameraview.** { *; }
#stetho
-keep class com.facebook.stetho.** { *; }
#lottie
-dontwarn com.airbnb.lottie.**
-keep class com.airbnb.lottie.** {*;}
#joda time
-dontwarn org.joda.convert.FromString
-dontwarn org.joda.convert.ToString
-keep class org.joda.** { *; }
#Razor Pay STD intg
-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}
-keepattributes JavascriptInterface
-keepattributes *Annotation*
-optimizations !method/inlining/*
-keepclasseswithmembers class * {
public void onPayment*(...);
}
# end of razor pay
#appsflyer
-keep class com.appsflyer.** { *; }
-dontwarn com.android.installreferrer
#digio
-keep class com.naviapp.personalloan.getloan.activities.GetLoanActivity {
public void onDigioNativeEvent*(...); #digio event tracking
public void onDigioNativeKyc*(...); #digio aadhaar verification
public void onSigning*(...); #digio e-nach
}
#Firebase Crashlytcis
-keep public class * extends java.lang.Exception
-keep class com.crashlytics.** { *; }
-dontwarn com.crashlytics.**
-keepclassmembers class com.naviapp.errors.activities.ErrorActivity {
public static ** Companion;
}
-dontwarn com.google.android.gms.location.**
-keep class com.google.android.gms.location.** { *; }
-keep class com.delight.** { *; }
#for selfie : hyperverge
-dontwarn co.hyperverge.**
-keepclassmembers class * implements javax.net.ssl.SSLSocketFactory {
private javax.net.ssl.SSLSocketFactory delegate;
}
#For Firebase
-keep class org.json.* { *; }
-keepattributes Exceptions, Signature, InnerClasses, LineNumberTable, SourceFile, EnclosingMethod
-keep class androidx.core.app.** { *; }
#For Finarkein
-keepclassmembers class io.finarkein.internal.webview.WebAppInterface {
public *;
}
-keep public class io.finarkein.anubhav.** {
*;
}
# SQL Cipher
-keep,includedescriptorclasses class net.zetetic.database.** { *; }
-keep,includedescriptorclasses interface net.zetetic.database.** { *; }
-keep class androidx.lifecycle.SavedStateHandle { *; }
-keep class com.facebook.hermes.unicode.** { *; }
-keep class com.facebook.jni.** { *; }