tachiyomi/app/proguard-rules.pro

98 lines
2.8 KiB
Prolog
Raw Normal View History

2016-01-16 16:33:35 +01:00
-dontobfuscate
2016-10-17 08:43:19 +02:00
-keep class eu.kanade.tachiyomi.**
2016-10-30 17:39:16 +01:00
-keep class com.hippo.image.** { *; }
-keep interface com.hippo.image.** { *; }
# OkHttp
-keepattributes Signature
-keepattributes *Annotation*
2016-02-03 12:56:12 +01:00
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
-dontwarn okio.**
2016-01-16 16:33:35 +01:00
# Okio
-keep class sun.misc.Unsafe { *; }
-dontwarn java.nio.file.*
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
-dontwarn okio.**
# Glide specific rules #
# https://github.com/bumptech/glide
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
**[] $VALUES;
public *;
}
2016-01-16 16:33:35 +01:00
# RxJava 1.1.0
-dontwarn sun.misc.**
2016-01-16 16:33:35 +01:00
-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
long producerIndex;
long consumerIndex;
}
2016-01-16 16:33:35 +01:00
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef {
rx.internal.util.atomic.LinkedQueueNode producerNode;
}
2016-01-16 16:33:35 +01:00
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef {
rx.internal.util.atomic.LinkedQueueNode consumerNode;
}
2016-04-06 21:31:35 +02:00
# Retrofit 2.X
## https://square.github.io/retrofit/ ##
2016-02-21 15:59:07 +01:00
2016-04-06 21:31:35 +02:00
-dontwarn retrofit2.**
-keep class retrofit2.** { *; }
-keepattributes Signature
-keepattributes Exceptions
2016-02-21 15:59:07 +01:00
-keepclasseswithmembers class * {
2016-04-06 21:31:35 +02:00
@retrofit2.http.* <methods>;
2016-02-21 15:59:07 +01:00
}
# AppCombat
-keep public class android.support.v7.widget.** { *; }
-keep public class android.support.v7.internal.widget.** { *; }
-keep public class android.support.v7.internal.view.menu.** { *; }
-keep public class * extends android.support.v4.view.ActionProvider {
public <init>(android.content.Context);
}
2016-12-03 16:54:29 +01:00
# ReactiveNetwork
-dontwarn com.github.pwittchen.reactivenetwork.**
## GSON ##
2016-01-16 16:33:35 +01: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
# For using GSON @Expose annotation
-keepattributes *Annotation*
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
2016-12-03 16:54:29 +01:00
#-keep class com.google.gson.stream.** { *; }
2016-01-16 16:33:35 +01:00
2016-12-03 16:54:29 +01:00
# Application classes that will be serialized/deserialized over Gson
-keep class com.google.gson.examples.android.model.** { *; }
2016-01-16 16:33:35 +01:00
2016-12-03 16:54:29 +01:00
# Prevent proguard from stripping interface information from TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep class * implements com.google.gson.TypeAdapterFactory
-keep class * implements com.google.gson.JsonSerializer
-keep class * implements com.google.gson.JsonDeserializer
# SnakeYaml
-keep class org.yaml.snakeyaml.** { public protected private *; }
-keep class org.yaml.snakeyaml.** { public protected private *; }
-dontwarn org.yaml.snakeyaml.**
# Duktape
-keep class com.squareup.duktape.** { *; }