We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b100a1 commit a660904Copy full SHA for a660904
1 file changed
README.md
@@ -244,19 +244,19 @@ If you are using ProGuard, the following config is required:
244
245
# Config for OkHttp and Okio
246
-dontwarn okio.**
247
--dontwarn javax.annotation.Nullable
248
--dontwarn javax.annotation.ParametersAreNonnullByDefault
249
--dontwarn javax.annotation.concurrent.GuardedBy
+-dontwarn javax.annotation.**
250
251
# Config for Retrofit
252
-dontnote retrofit2.Platform
253
-dontwarn retrofit2.Platform$Java8
254
--keepattributes Signature
255
--keepattributes Exceptions
256
257
-keepclasseswithmembers class * {
258
@retrofit2.http.* <methods>;
259
}
+
+-keepclasseswithmembers interface * {
+ @retrofit2.http.* <methods>;
+}
260
```
261
262
### More
0 commit comments