mirror of
https://github.com/michaldrabik/showly.git
synced 2026-03-13 10:32:25 +08:00
143 lines
5.2 KiB
Prolog
143 lines
5.2 KiB
Prolog
### Moshi
|
|
|
|
# JSR 305 annotations are for embedding nullability information.
|
|
-dontwarn javax.annotation.**
|
|
|
|
-keepclasseswithmembers class * {
|
|
@com.squareup.moshi.* <methods>;
|
|
}
|
|
|
|
-keep @com.squareup.moshi.JsonQualifier interface *
|
|
|
|
# Enum field names are used by the integrated EnumJsonAdapter.
|
|
# Annotate enums with @JsonClass(generateAdapter = false) to use them with Moshi.
|
|
-keepclassmembers @com.squareup.moshi.JsonClass class * extends java.lang.Enum {
|
|
<fields>;
|
|
}
|
|
|
|
# The name of @JsonClass types is used to look up the generated adapter.
|
|
-keepnames @com.squareup.moshi.JsonClass class *
|
|
|
|
# Retain generated target class's synthetic defaults constructor and keep DefaultConstructorMarker's
|
|
# name. We will look this up reflectively to invoke the type's constructor.
|
|
#
|
|
# We can't _just_ keep the defaults constructor because Proguard/R8's spec doesn't allow wildcard
|
|
# matching preceding parameters.
|
|
-keepnames class kotlin.jvm.internal.DefaultConstructorMarker
|
|
-keepclassmembers @com.squareup.moshi.JsonClass @kotlin.Metadata class * {
|
|
synthetic <init>(...);
|
|
}
|
|
|
|
# Retain generated JsonAdapters if annotated type is retained.
|
|
-if @com.squareup.moshi.JsonClass class *
|
|
-keep class <1>JsonAdapter {
|
|
<init>(...);
|
|
<fields>;
|
|
}
|
|
-if @com.squareup.moshi.JsonClass class **$*
|
|
-keep class <1>_<2>JsonAdapter {
|
|
<init>(...);
|
|
<fields>;
|
|
}
|
|
-if @com.squareup.moshi.JsonClass class **$*$*
|
|
-keep class <1>_<2>_<3>JsonAdapter {
|
|
<init>(...);
|
|
<fields>;
|
|
}
|
|
-if @com.squareup.moshi.JsonClass class **$*$*$*
|
|
-keep class <1>_<2>_<3>_<4>JsonAdapter {
|
|
<init>(...);
|
|
<fields>;
|
|
}
|
|
-if @com.squareup.moshi.JsonClass class **$*$*$*$*
|
|
-keep class <1>_<2>_<3>_<4>_<5>JsonAdapter {
|
|
<init>(...);
|
|
<fields>;
|
|
}
|
|
-if @com.squareup.moshi.JsonClass class **$*$*$*$*$*
|
|
-keep class <1>_<2>_<3>_<4>_<5>_<6>JsonAdapter {
|
|
<init>(...);
|
|
<fields>;
|
|
}
|
|
-keep class kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoaderImpl
|
|
|
|
-keepclassmembers class kotlin.Metadata {
|
|
public <methods>;
|
|
}
|
|
|
|
### Retrofit
|
|
|
|
# Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and
|
|
# EnclosingMethod is required to use InnerClasses.
|
|
-keepattributes Signature, InnerClasses, EnclosingMethod
|
|
|
|
# Retrofit does reflection on method and parameter annotations.
|
|
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations
|
|
|
|
# Retain service method parameters when optimizing.
|
|
-keepclassmembers,allowshrinking,allowobfuscation interface * {
|
|
@retrofit2.http.* <methods>;
|
|
}
|
|
|
|
# Ignore annotation used for build tooling.
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
|
|
|
# Ignore JSR 305 annotations for embedding nullability information.
|
|
-dontwarn javax.annotation.**
|
|
|
|
# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
|
|
-dontwarn kotlin.Unit
|
|
|
|
# Top-level functions that can only be used by Kotlin.
|
|
-dontwarn retrofit2.KotlinExtensions
|
|
-dontwarn retrofit2.KotlinExtensions$*
|
|
|
|
# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
|
|
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
|
|
-if interface * { @retrofit2.http.* <methods>; }
|
|
-keep,allowobfuscation interface <1>
|
|
|
|
-keep class com.michaldrabik.data_remote.tmdb.model.** { *; }
|
|
-keep class com.michaldrabik.data_remote.omdb.model.** { *; }
|
|
-keep class com.michaldrabik.data_remote.trakt.model.** { *; }
|
|
-keep class com.michaldrabik.data_remote.aws.model.** { *; }
|
|
-keep class com.michaldrabik.data_remote.gcloud.model.** { *; }
|
|
|
|
### OkHttp
|
|
|
|
# JSR 305 annotations are for embedding nullability information.
|
|
-dontwarn javax.annotation.**
|
|
|
|
# A resource is loaded with a relative path so the package of this class must be preserved.
|
|
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
|
|
|
|
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.*
|
|
|
|
# OkHttp platform used only on JVM and when Conscrypt dependency is available.
|
|
-dontwarn okhttp3.internal.platform.ConscryptPlatform
|
|
|
|
# A resource is loaded with a relative path so the package of this class must be preserved.
|
|
-adaptresourcefilenames okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
|
|
|
|
# OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
|
|
-dontwarn okhttp3.internal.platform.**
|
|
-dontwarn org.conscrypt.**
|
|
-dontwarn org.bouncycastle.**
|
|
-dontwarn org.openjsse.**
|
|
|
|
# With R8 full mode generic signatures are stripped for classes that are not
|
|
# kept. Suspend functions are wrapped in continuations where the type argument
|
|
# is used.
|
|
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
|
|
-keep,allowobfuscation,allowshrinking class com.squareup.moshi.JsonAdapter
|
|
|
|
# With R8 full mode generic signatures are stripped for classes that are not
|
|
# kept. Suspend functions are wrapped in continuations where the type argument
|
|
# is used.
|
|
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
|
|
-keep,allowobfuscation,allowshrinking class retrofit2.Response
|
|
|
|
# R8 full mode strips generic signatures from return types if not kept.
|
|
-if interface * { @retrofit2.http.* public *** *(...); }
|
|
-keep,allowoptimization,allowshrinking,allowobfuscation class <3> |