aboutsummaryrefslogtreecommitdiffstats
path: root/proguard-rules.pro
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2019-07-17 20:44:55 +0200
committerChristian Schneppe <christian@pix-art.de>2019-07-17 20:44:55 +0200
commitf42d144a660ad1f89b6630e88704cad258bfabb9 (patch)
treed38dcc33b8705dadb665a78c693eb14aac6dcec4 /proguard-rules.pro
parentd52f09b6f4f165fda2d147cd968dcee23524c339 (diff)
updated retrofit
Diffstat (limited to 'proguard-rules.pro')
-rw-r--r--proguard-rules.pro34
1 files changed, 33 insertions, 1 deletions
diff --git a/proguard-rules.pro b/proguard-rules.pro
index 336771bcd..40684f33b 100644
--- a/proguard-rules.pro
+++ b/proguard-rules.pro
@@ -32,4 +32,36 @@
-dontwarn org.codehaus.mojo.animal_sniffer.*
# OkHttp platform used only on JVM and when Conscrypt dependency is available.
--dontwarn okhttp3.internal.platform.ConscryptPlatform \ No newline at end of file
+-dontwarn okhttp3.internal.platform.ConscryptPlatform
+
+
+
+# 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> \ No newline at end of file