Compatibility
| Client version | Engine.IO server | Socket.IO server |
|---|---|---|
| 0.9.x | 1.x | 1.x |
| 1.x | 3.x | 2.x |
| 2.x | 4.x | 3.x |
Installation
The latest artifact is available on Maven Central.
Maven
Add the following dependency to your pom.xml.
<dependencies>
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-client</artifactId>
<version>2.1.0</version>
</dependency>
</dependencies>
Gradle
Add it as a gradle dependency for Android Studio, in build.gradle:
compile ('io.socket:engine.io-client:2.1.0') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}
