Compatibility
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>socket.io-client</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
Gradle
Add it as a gradle dependency for Android Studio, in build.gradle:
implementation ('io.socket:socket.io-client:2.1.1') {
// excluding org.json which is provided by Android
exclude group: 'org.json', module: 'json'
}

