File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 11
2+ 1.0.0 / 2017-07-14
3+ ==================
4+
5+ * compatible with engine.io 3.1.0
6+ * update parser: no strict UTF8 check
7+ * no UTF encodng for payloads which contains string only
8+ * add ` transportOptions ` option
9+
2100.9.0 / 2017-07-11
311==================
412
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Add the following dependency to your `pom.xml`.
1616 <dependency >
1717 <groupId >io.socket</groupId >
1818 <artifactId >engine.io-client</artifactId >
19- <version >0.9 .0</version >
19+ <version >1.0 .0</version >
2020 </dependency >
2121</dependencies >
2222```
@@ -25,12 +25,17 @@ Add the following dependency to your `pom.xml`.
2525Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
2626
2727``` groovy
28- compile ('io.socket:engine.io-client:0.9 .0') {
28+ compile ('io.socket:engine.io-client:1.0 .0') {
2929 // excluding org.json which is provided by Android
3030 exclude group: 'org.json', module: 'json'
3131}
3232```
3333
34+ #### Engine.IO Server 1.x suppport
35+
36+ The current version of engine.io-client-java doesn't support engine.io server 1.x.
37+ Please use engine.io-client-java 0.9.x for that instead.
38+
3439## Usage
3540Engine.IO-client Java has the similar api with the JS client. You can use ` Socket ` to connect:
3641
Original file line number Diff line number Diff line change 22 <modelVersion >4.0.0</modelVersion >
33 <groupId >io.socket</groupId >
44 <artifactId >engine.io-client</artifactId >
5- <version >0.9.1 -SNAPSHOT</version >
5+ <version >1.0.0 -SNAPSHOT</version >
66 <packaging >jar</packaging >
77 <name >engine.io-client</name >
88 <description >Engine.IO Client Library for Java</description >
You can’t perform that action at this time.
0 commit comments