We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86898db commit 8538fcdCopy full SHA for 8538fcd
README.md
@@ -30,7 +30,10 @@ Add the following dependency to your `pom.xml`.
30
Add it as a gradle dependency for Android Studio, in `build.gradle`:
31
32
```groovy
33
-compile 'io.socket:socket.io-client:0.6.2'
+compile ('io.socket:socket.io-client:0.6.2') {
34
+ // excluding org.json which is provided by Android
35
+ exclude group: 'org.json', module: 'json'
36
+}
37
```
38
39
## Usage
0 commit comments