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 socket.io 2.0.x
6+ * update engine.io-client
7+ * custom encoder/decoder support
8+ * fix socket id
9+
2100.9.0 / 2017-07-11
311==================
412
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Add the following dependency to your `pom.xml`.
2121 <dependency >
2222 <groupId >io.socket</groupId >
2323 <artifactId >socket.io-client</artifactId >
24- <version >0.9 .0</version >
24+ <version >1.0 .0</version >
2525 </dependency >
2626</dependencies >
2727```
@@ -30,12 +30,17 @@ Add the following dependency to your `pom.xml`.
3030Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
3131
3232``` groovy
33- compile ('io.socket:socket.io-client:0.9 .0') {
33+ compile ('io.socket:socket.io-client:1.0 .0') {
3434 // excluding org.json which is provided by Android
3535 exclude group: 'org.json', module: 'json'
3636}
3737```
3838
39+ #### Socket.IO Server 1.x suppport
40+
41+ The current version of socket.io-client-java doesn't support socket.io server 1.x.
42+ Please use socket.io-client-java 0.9.x for that instead.
43+
3944## Usage
4045Socket.IO-client Java has almost the same api and features with the original JS client. You use ` IO#socket ` to initialize ` Socket ` :
4146
Original file line number Diff line number Diff line change 6262 <dependency >
6363 <groupId >io.socket</groupId >
6464 <artifactId >engine.io-client</artifactId >
65- <version >1.0.0-SNAPSHOT </version >
65+ <version >1.0.0</version >
6666 </dependency >
6767 <dependency >
6868 <groupId >org.json</groupId >
You can’t perform that action at this time.
0 commit comments