2020-05-10 14:52:35 +05:30
|
|
|
# Add project specific ProGuard rules here.
|
|
|
|
# You can control the set of applied configuration files using the
|
2025-01-16 22:31:04 +01:00
|
|
|
# proguardFiles setting in build.gradle.kts.
|
2020-05-10 14:52:35 +05:30
|
|
|
#
|
|
|
|
# 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 *;
|
|
|
|
#}
|
2025-03-27 18:14:08 +01:00
|
|
|
-keepattributes LineNumberTable,SourceFile
|
2021-12-09 23:43:25 +05:30
|
|
|
-renamesourcefileattribute SourceFile
|
2025-03-27 18:14:08 +01:00
|
|
|
-dontobfuscate
|
|
|
|
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable
|
|
|
|
-printmapping obfuscation/mapping.txt
|
|
|
|
|
2022-09-30 20:02:22 +05:30
|
|
|
-keep class ** extends androidx.navigation.Navigator
|
2024-10-20 15:57:58 +02:00
|
|
|
-keep class ** implements org.ocpsoft.prettytime.TimeUnit
|
|
|
|
|
2024-10-29 17:40:29 +01:00
|
|
|
# SQLCipher
|
2024-10-20 15:57:58 +02:00
|
|
|
-keep class net.sqlcipher.** { *; }
|
2024-10-29 17:40:29 +01:00
|
|
|
-keep class net.sqlcipher.database.** { *; }
|
|
|
|
|
|
|
|
# SimpleXML
|
|
|
|
-keepattributes Signature
|
|
|
|
-keepattributes *Annotation
|
|
|
|
-keep interface org.simpleframework.xml.core.Label {
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
-keep class * implements org.simpleframework.xml.core.Label {
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
-keep interface org.simpleframework.xml.core.Parameter {
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
-keep class * implements org.simpleframework.xml.core.Parameter {
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
-keep interface org.simpleframework.xml.core.Extractor {
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
-keep class * implements org.simpleframework.xml.core.Extractor {
|
|
|
|
public *;
|
2024-11-04 17:44:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
-keep class * implements java.io.Serializable
|