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
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,11 @@ And this to your module build.gradle:
19
19
20
20
```groovy
21
21
dependencies {
22
-
compile 'com.github.proxer:ProxerLibJava:3.2.1'
22
+
compile 'com.github.proxer:ProxerLibJava:4.0.0'
23
23
}
24
24
```
25
25
26
-
You can also download the `jar` directly from [here](https://jitpack.io/com/github/proxer/ProxerLibJava/3.2.1/ProxerLibJava-3.2.1.jar), if you prefer.
26
+
You can also download the `jar` directly from [here](https://jitpack.io/com/github/proxer/ProxerLibJava/4.0.0/ProxerLibJava-4.0.0.jar), if you prefer.
27
27
28
28
> Note that this jar does not come with the required dependencies. You have to include those manually in that case.
29
29
@@ -48,6 +48,7 @@ Method | Description
48
48
`client` | Sets a custom `OkHttpClient` instance, used for Http requests. Note, that various interceptors are still applied, to make the API work properly.
49
49
`retrofit` | Sets a custom `Retrofit` instance.
50
50
`logginStrategy` | Allows for simple logging of Http requests, sent through the API. Available strategies are: `NONE`, `API`, `ALL`.
51
+
`loggingTag` | Sets a custom tag for logging.
51
52
52
53
### Sending a request
53
54
@@ -237,6 +238,8 @@ If you are using ProGuard, the following config is required:
237
238
238
239
```proguard
239
240
# Config for ProxerLibJava itself
241
+
-dontwarn com.uber.javaxextras.**
242
+
240
243
-keep enum me.proxer.library.** {
241
244
**[] $VALUES;
242
245
public *;
@@ -267,7 +270,7 @@ If you are using ProGuard, the following config is required:
267
270
268
271
### More
269
272
270
-
You can find detailed JavaDoc [here](https://jitpack.io/com/github/proxer/ProxerLibJava/3.2.1/javadoc/).
273
+
You can find detailed JavaDoc [here](https://jitpack.io/com/github/proxer/ProxerLibJava/4.0.0/javadoc/).
0 commit comments