You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,11 +29,17 @@ You can use this library two ways:
29
29
- If you have Java 8 compatiblity and Jack enabled, this library will work for you
30
30
- Using the new Native Java 8 support
31
31
- As of this writing, you must be using Android Studio Canary to use this feature.
32
+
- Has been tested in the following environments:
33
+
- Canary 9, Gradle plugin v3.0.0-alpha9
34
+
- Canary 8, Gradle plugin v3.0.0-alpha8
35
+
- It *should* work in all 3.0.0+ versions
32
36
- You can find more info on the [Releases Page](https://github.com/forresthopkinsa/StompProtocolAndroid/releases)
33
37
34
38
However, *this fork is NOT compatible with Retrolambda.*
35
39
If you have RL as a dependency, then you should be using the [upstream version](https://github.com/NaikSoftware/StompProtocolAndroid) of this project!
36
40
41
+
Finally, please take bugs and questions to the [Issues page](https://github.com/forresthopkinsa/StompProtocolAndroid/issues)! I'll try to answer within one business day.
42
+
37
43
## Example backend (Spring Boot)
38
44
39
45
**WebSocketConfig.java**
@@ -71,7 +77,7 @@ class SocketController {
71
77
}
72
78
```
73
79
74
-
Check out the full example serverhttps://github.com/NaikSoftware/stomp-protocol-example-server
80
+
Check out the [full example server](https://github.com/NaikSoftware/stomp-protocol-example-server)
75
81
76
82
## Example library usage
77
83
@@ -104,7 +110,7 @@ Check out the full example server https://github.com/NaikSoftware/stomp-protocol
104
110
105
111
```
106
112
107
-
See the full examplehttps://github.com/NaikSoftware/StompProtocolAndroid/tree/master/example-client
113
+
See the [full example](https://github.com/NaikSoftware/StompProtocolAndroid/tree/master/example-client)
108
114
109
115
Method `Stomp.over` consume class for create connection as first parameter.
110
116
You must provide dependency for lib and pass class.
You can use a custom OkHttpClient (for example, [if you want to allow untrusted HTTPS](getUnsafeOkHttpClient())) using the four-argument overload of Stomp.over, like so:
143
+
You can use a custom OkHttpClient (for example, [if you want to allow untrusted HTTPS](https://gist.github.com/grow2014/b6969d8f0cfc0f0a1b2bf12f84973dec)) using the four-argument overload of Stomp.over, like so:
0 commit comments