NotallyX/app/proguard-rules.pro

49 lines
1.5 KiB
Prolog
Raw Normal View History

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 *;
#}
-keepattributes LineNumberTable,SourceFile
-renamesourcefileattribute SourceFile
-dontobfuscate
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable
-printmapping obfuscation/mapping.txt
-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