Files
uitron/app/proguard-rules.pro
Maila Rajanikanth 26edc2a6c2 TP-26487 | release build support (#36)
* TP-25794 | mock changes

* TP-25794 | pair fix for release builds

* TP-25794 | proguard changes

* TP-25794 | revert manifest and mock changes

* TP-25794 | revert gradle changes

* TP-25794 | remove unused imports
2023-04-25 15:46:18 +05:30

34 lines
1.1 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 *;
#}
-keep class **.models.** { *; }
-keep class **.model.** { *; }
-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);
}
#Gson specific classes
-keep class com.google.gson.stream.** { *; }
-keep class com.google.gson.FieldNamingStrategy { *; }
-keep class com.google.gson.Gson.** { *; }