proguard: cleanup unused parts

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2023-04-27 13:12:02 +02:00
parent 0ba064ff48
commit 0797e99559
3 changed files with 2 additions and 17 deletions

View File

@ -34,7 +34,7 @@ android {
release {
minifyEnabled true
shrinkResources true
proguardFiles "proguard-android-optimize.txt", "proguard-rules.pro"
proguardFiles "proguard-android-optimize.txt"
packagingOptions {
exclude "DebugProbesKt.bin"
exclude "kotlin-tooling-metadata.json"

View File

@ -1,7 +1,6 @@
-allowaccessmodification
-dontpreverify
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontobfuscate
-verbose
-keepattributes *Annotation*

14
ui/proguard-rules.pro vendored
View File

@ -1,14 +0,0 @@
# Squelch all warnings, they're harmless but ProGuard
# escalates them as errors.
-dontwarn sun.misc.Unsafe
# Fragment 1.2.4 allows Fragment classes to be obfuscated but
# databinding references in XML seem to not be rewritten to
# match, so we preserve the names as 1.2.3 did.
-if public class ** extends androidx.fragment.app.Fragment
-keep public class <1> {
public <init>();
}
# Don't obfuscate
-dontobfuscate