2016-01-16 10:33:35 -05:00
|
|
|
-dontobfuscate
|
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
# Keep extension's common dependencies
|
|
|
|
-keep,allowoptimization class eu.kanade.tachiyomi.** { public protected *; }
|
2021-05-22 15:52:01 -04:00
|
|
|
-keep,allowoptimization class androidx.preference.** { *; }
|
2021-05-22 14:47:40 -04:00
|
|
|
-keep,allowoptimization class kotlin.** { public protected *; }
|
|
|
|
-keep,allowoptimization class okhttp3.** { public protected *; }
|
2021-05-22 15:52:01 -04:00
|
|
|
-keep,allowoptimization class okio.** { public protected *; }
|
2021-05-22 14:47:40 -04:00
|
|
|
-keep,allowoptimization class rx.** { public protected *; }
|
|
|
|
-keep,allowoptimization class org.jsoup.** { public protected *; }
|
|
|
|
-keep,allowoptimization class com.google.gson.** { public protected *; }
|
|
|
|
-keep,allowoptimization class com.github.salomonbrys.kotson.** { public protected *; }
|
|
|
|
-keep,allowoptimization class com.squareup.duktape.** { public protected *; }
|
|
|
|
|
|
|
|
##---------------Begin: proguard configuration for RxJava 1.x ----------
|
2016-01-16 10:33:35 -05:00
|
|
|
-dontwarn sun.misc.**
|
2015-10-02 07:20:15 -04:00
|
|
|
|
2016-01-16 10:33:35 -05:00
|
|
|
-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
|
|
|
|
long producerIndex;
|
|
|
|
long consumerIndex;
|
2015-10-02 07:20:15 -04:00
|
|
|
}
|
2016-01-16 10:33:35 -05:00
|
|
|
|
|
|
|
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef {
|
|
|
|
rx.internal.util.atomic.LinkedQueueNode producerNode;
|
2015-10-02 07:20:15 -04:00
|
|
|
}
|
2016-01-16 10:33:35 -05:00
|
|
|
|
|
|
|
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef {
|
|
|
|
rx.internal.util.atomic.LinkedQueueNode consumerNode;
|
2015-10-02 07:20:15 -04:00
|
|
|
}
|
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
-dontnote rx.internal.util.PlatformDependent
|
|
|
|
##---------------End: proguard configuration for RxJava 1.x ----------
|
2016-01-16 10:33:35 -05:00
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
##---------------Begin: proguard configuration for Gson ----------
|
2016-01-16 10:33:35 -05:00
|
|
|
# Gson uses generic type information stored in a class file when working with fields. Proguard
|
|
|
|
# removes such information by default, so configure it to keep all of it.
|
|
|
|
-keepattributes Signature
|
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
# For using GSON @Expose annotation
|
|
|
|
-keepattributes *Annotation*
|
|
|
|
|
2016-01-16 10:33:35 -05:00
|
|
|
# Gson specific classes
|
2021-05-22 14:47:40 -04:00
|
|
|
-dontwarn sun.misc.**
|
2016-01-16 10:33:35 -05:00
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
|
2016-12-03 10:54:29 -05:00
|
|
|
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
|
2021-05-22 14:47:40 -04:00
|
|
|
-keep class * extends com.google.gson.TypeAdapter
|
2016-12-03 10:54:29 -05:00
|
|
|
-keep class * implements com.google.gson.TypeAdapterFactory
|
|
|
|
-keep class * implements com.google.gson.JsonSerializer
|
|
|
|
-keep class * implements com.google.gson.JsonDeserializer
|
2020-10-13 17:34:39 -04:00
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
# Prevent R8 from leaving Data object members always null
|
|
|
|
-keepclassmembers,allowobfuscation class * {
|
|
|
|
@com.google.gson.annotations.SerializedName <fields>;
|
|
|
|
}
|
|
|
|
##---------------End: proguard configuration for Gson ----------
|
2020-10-13 17:34:39 -04:00
|
|
|
|
2021-05-22 15:41:08 -04:00
|
|
|
##---------------Begin: proguard configuration for kotlinx.serialization ----------
|
2020-10-13 17:34:39 -04:00
|
|
|
-keepattributes *Annotation*, InnerClasses
|
|
|
|
-dontnote kotlinx.serialization.AnnotationsKt # core serialization annotations
|
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
# kotlinx-serialization-json specific. Add this if you have java.lang.NoClassDefFoundError kotlinx.serialization.json.JsonObjectSerializer
|
2020-10-13 17:34:39 -04:00
|
|
|
-keepclassmembers class kotlinx.serialization.json.** {
|
|
|
|
*** Companion;
|
|
|
|
}
|
|
|
|
-keepclasseswithmembers class kotlinx.serialization.json.** {
|
|
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep,includedescriptorclasses class eu.kanade.tachiyomi.**$$serializer { *; }
|
|
|
|
-keepclassmembers class eu.kanade.tachiyomi.** {
|
|
|
|
*** Companion;
|
|
|
|
}
|
|
|
|
-keepclasseswithmembers class eu.kanade.tachiyomi.** {
|
|
|
|
kotlinx.serialization.KSerializer serializer(...);
|
|
|
|
}
|
2021-05-22 15:41:08 -04:00
|
|
|
|
|
|
|
-keep class kotlinx.serialization.**
|
|
|
|
-keepclassmembers class kotlinx.serialization.** {
|
|
|
|
<methods>;
|
|
|
|
}
|
|
|
|
##---------------End: proguard configuration for kotlinx.serialization ----------
|