|
1 | 1 | # Java/Android WebSocket Client
|
2 | | -A very lightweight WebSocket client library for Java/Android which aims to implement the WebSocket protocol as defined in RFC 6455. |
| 2 | +A very lightweight WebSocket client library for JVM based clients or Android which aims to implement the WebSocket protocol as defined in RFC 6455. It has no dependencies and the _jar_ file is only 22KB. |
3 | 3 |
|
4 | 4 | ## Download
|
5 | 5 | This library is published to Maven Central. Versions prior to 2.0.0 were also published to JCenter.
|
@@ -112,7 +112,7 @@ This library supports secure and insecure WebSockets. You just need to define th
|
112 | 112 | When a Ping frame is received, automatically a Pong frame is sent with the same Application Data of the Ping frame. You can also send Ping and Pong frames unsolicited using ```sendPing(byte[] data)``` and ```sendPong(byte[] data)```. Data can be *null* if don't want to send Application Data.
|
113 | 113 |
|
114 | 114 | ## Minimum requirements
|
115 | | -This libary requires at minimum Java 1.6 or Android 1.6 (API 4) |
| 115 | +This library requires at minimum Java 1.6 or Android 1.6 (API 4) |
116 | 116 |
|
117 | 117 | ## License
|
118 | 118 |
|
|
0 commit comments