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: History.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,11 @@
1
1
2
+
1.0.1 / 2020-12-10
3
+
==================
4
+
5
+
### Bug Fixes
6
+
7
+
* handle responses without content type ([#101](https://github.com/socketio/engine.io-client-java/issues/101)) ([6f065b7](https://github.com/socketio/engine.io-client-java/commit/6f065b7a62603730979d43cec71af0046ca4ab7c))
The latest artifact is available on Maven Central. To install manually, please refer [dependencies](https://socketio.github.io/engine.io-client-java/dependencies.html).
28
+
The latest artifact is available on Maven Central.
11
29
12
30
### Maven
13
31
Add the following dependency to your `pom.xml`.
@@ -17,7 +35,7 @@ Add the following dependency to your `pom.xml`.
17
35
<dependency>
18
36
<groupId>io.socket</groupId>
19
37
<artifactId>engine.io-client</artifactId>
20
-
<version>1.0.0</version>
38
+
<version>1.0.1</version>
21
39
</dependency>
22
40
</dependencies>
23
41
```
@@ -26,17 +44,12 @@ Add the following dependency to your `pom.xml`.
26
44
Add it as a gradle dependency for Android Studio, in `build.gradle`:
27
45
28
46
```groovy
29
-
compile ('io.socket:engine.io-client:1.0.0') {
47
+
compile ('io.socket:engine.io-client:1.0.1') {
30
48
// excluding org.json which is provided by Android
31
49
exclude group: 'org.json', module: 'json'
32
50
}
33
51
```
34
52
35
-
#### Engine.IO Server 1.x suppport
36
-
37
-
The current version of engine.io-client-java doesn't support engine.io server 1.x.
38
-
Please use engine.io-client-java 0.9.x for that instead.
39
-
40
53
## Usage
41
54
Engine.IO-client Java has the similar api with the JS client. You can use `Socket` to connect:
0 commit comments