You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 20, 2019. It is now read-only.
The proguard file for retrofit is incomplete. It does not support rest service interfaces with callbacks and error handling. This PR adds support for that.
# If in your rest service interface you use methods with Callback argument.
17
+
-keepattributes Exceptions
18
+
19
+
# If your rest service methods throw custom exceptions, because you've defined an ErrorHandler.
20
+
-keepattributes Signature
21
+
22
+
# Also you must note that if you are using GSON for conversion from JSON to POJO representation, you must ignore those POJO classes from being obfuscated.
23
+
# Here include the POJO's that have you have created for mapping JSON response to POJO for example.
0 commit comments