Podcini-podcast/app/proguard.cfg

66 lines
1.7 KiB
INI
Raw Normal View History

2024-02-05 21:50:43 +01:00
-dontobfuscate
-renamesourcefileattribute SourceFile
-keepattributes SourceFile,LineNumberTable
-optimizations !code/allocation/variable
-optimizationpasses 5
-allowaccessmodification
-dontskipnonpubliclibraryclassmembers
# Keep our own classes and members. They are all used.
# Without this, methods only used in tests are removed and break tests.
2024-02-20 11:30:25 +01:00
-keep class ac.mdiq.podcini**
-keepclassmembers class ac.mdiq.podcini** {*;}
# -keep class de.test.podcini**
# -keepclassmembers class de.test.podcini** {*;}
2024-02-05 21:50:43 +01:00
# Keep methods used in tests.
# This is only needed when running tests with proguard enabled.
-keepclassmembers class org.apache.commons.lang3.StringUtils {*;}
-keepclassmembers class androidx.appcompat.app.ActionBar {
public ** getTitle();
}
-keepclassmembers class org.apache.commons.io.IOUtils {
public static void write(...);
}
-keep public class org.jsoup.** {
public *;
}
# for okhttp
-dontwarn okhttp3.**
-dontwarn okio.**
# android-iconify
2024-06-23 19:58:04 +02:00
#-keep class com.joanzapata.** { *; }
2024-02-05 21:50:43 +01:00
#### Proguard rules for fyyd client
# Retrofit 2.0
-dontwarn retrofit2.**
-keep class retrofit2.** { *; }
-keepattributes Signature
-keepattributes Exceptions
2024-02-14 12:20:57 +01:00
-dontwarn org.jspecify.annotations.NullMarked
2024-02-05 21:50:43 +01:00
-keepclasseswithmembers class * {
@retrofit2.http.* <methods>;
}
# Moshi
-keep class com.squareup.moshi.** { *; }
-keep interface com.squareup.moshi.** { *; }
####
# awaitility
-dontwarn java.beans.BeanInfo
-dontwarn java.beans.Introspector
-dontwarn java.beans.IntrospectionException
-dontwarn java.beans.PropertyDescriptor
-dontwarn java.lang.management.ManagementFactory
-dontwarn java.lang.management.ThreadInfo
-dontwarn java.lang.management.ThreadMXBean
2024-04-19 12:52:23 +02:00
-dontwarn org.slf4j.impl.StaticLoggerBinder