2023-01-28 00:00:52 +01:00
|
|
|
# Add project specific ProGuard rules here.
|
|
|
|
# You can control the set of applied configuration files using the
|
|
|
|
# proguardFiles setting in build.gradle.kts.kts.
|
|
|
|
#
|
|
|
|
# For more details, see
|
|
|
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
|
|
|
2023-06-04 19:37:23 +02:00
|
|
|
-dontobfuscate
|
2023-01-28 00:00:52 +01:00
|
|
|
|
2023-06-04 19:37:23 +02:00
|
|
|
# Required for serialization to work properly
|
|
|
|
-if @kotlinx.serialization.Serializable class **
|
|
|
|
-keepclassmembers class <1> {
|
|
|
|
static <1>$Companion Companion;
|
|
|
|
}
|
|
|
|
-if @kotlinx.serialization.Serializable class ** {
|
|
|
|
static **$* *;
|
|
|
|
}
|
|
|
|
-keepclassmembers class <2>$<3> {
|
|
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
|
|
}
|
|
|
|
-if @kotlinx.serialization.Serializable class ** {
|
|
|
|
public static ** INSTANCE;
|
|
|
|
}
|
|
|
|
-keepclassmembers class <1> {
|
|
|
|
public static <1> INSTANCE;
|
|
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
|
|
}
|
2023-01-28 00:00:52 +01:00
|
|
|
|
2024-03-29 16:00:52 +01:00
|
|
|
# This required for the process runtime.
|
|
|
|
-keep class app.revanced.manager.patcher.runtime.process.* {
|
|
|
|
*;
|
|
|
|
}
|
2023-06-04 19:37:23 +02:00
|
|
|
# Required for the patcher to function correctly
|
|
|
|
-keep class app.revanced.patcher.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
-keep class brut.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
-keep class org.xmlpull.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
-keep class kotlin.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
-keep class org.jf.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
-keep class com.android.** {
|
|
|
|
*;
|
|
|
|
}
|
2024-03-29 16:00:52 +01:00
|
|
|
-dontwarn com.google.auto.value.**
|
2023-06-04 19:37:23 +02:00
|
|
|
-dontwarn java.awt.**
|
|
|
|
-dontwarn javax.**
|
|
|
|
-dontwarn org.slf4j.**
|
2023-07-14 13:11:34 +02:00
|
|
|
-dontwarn it.skrape.fetcher.*
|
2023-09-06 19:49:11 +02:00
|
|
|
-dontwarn com.google.j2objc.annotations.*
|
2023-06-04 19:37:23 +02:00
|
|
|
|
|
|
|
-keepattributes RuntimeVisibleAnnotations,AnnotationDefault
|