@@ -17,36 +17,49 @@ Pusher Channels client library for Java targeting **Android** and general Java.
17
17
18
18
This README covers the following topics:
19
19
20
- - [ Installation] ( #installation )
21
- - [Maven](#maven)
22
- - [Gradle](#gradle)
23
- - [Download](#download)
24
- - [Source](#source)
25
- - [ API Overview] ( #api-overview )
26
- - [ The Pusher constructor] ( #the-pusher-constructor )
27
- - [ Connecting] ( #connecting )
28
- - [ Reconnecting] ( #reconnecting )
29
- - [ Disconnecting] ( #disconnecting )
30
- - [ Listening to connection events] ( #listening-to-connection-events )
31
- - [ Subscribing to channels] ( #subscribing-to-channels )
32
- - [Public channels](#public-channels)
33
- - [Private channels](#private-channels)
34
- - [Private encrypted channels](#private-encrypted-channels)
35
- - [Presence channels](#presence-channels)
36
- - [The User object](#the-user-object)
37
- - [ Binding and handling events] ( #binding-and-handling-events )
38
- - [ Triggering events] ( #triggering-events )
39
- - [ Accessing the connection socket ID] ( #accessing-the-connection-socket-id )
40
- - [ Helper Methods] ( #helper-methods )
41
- - [Getting a channel from string](#getting-a-channel-from-string)
42
- - [Check if a channel has subscribed](#check-if-a-channel-has-subscribed)
43
- - [ JavaDocs] ( #javadocs )
44
- - [ Library Development Environment] ( #library-development-environment )
45
- - [Prerequisites](#prerequisites)
46
- - [Cloning the project](#cloning-the-project)
47
- - [Eclipse Project](#eclipse-project)
48
- - [Build](#build)
49
- - [Run the Example Application](#run-the-example-application)
20
+ - [ Pusher Channels Java Client] ( #pusher-channels-java-client )
21
+ - [ Supported platforms] ( #supported-platforms )
22
+ - [ TOC] ( #toc )
23
+ - [ Installation] ( #installation )
24
+ - [ Maven] ( #maven )
25
+ - [ Gradle] ( #gradle )
26
+ - [ Download] ( #download )
27
+ - [ Source] ( #source )
28
+ - [ API Overview] ( #api-overview )
29
+ - [ The Pusher constructor] ( #the-pusher-constructor )
30
+ - [ Connecting] ( #connecting )
31
+ - [ The PusherOptions object] ( #the-pusheroptions-object )
32
+ - [ Reconnecting] ( #reconnecting )
33
+ - [ Disconnecting] ( #disconnecting )
34
+ - [ Listening to connection events] ( #listening-to-connection-events )
35
+ - [ Subscribing to channels] ( #subscribing-to-channels )
36
+ - [ Public channels] ( #public-channels )
37
+ - [ Private channels] ( #private-channels )
38
+ - [ Private encrypted channels] ( #private-encrypted-channels )
39
+ - [ Presence channels] ( #presence-channels )
40
+ - [ The User object] ( #the-user-object )
41
+ - [ Client event authenticity] ( #client-event-authenticity )
42
+ - [ Binding and handling events] ( #binding-and-handling-events )
43
+ - [ ChannelEventListener] ( #channeleventlistener )
44
+ - [ SubscriptionEventListener] ( #subscriptioneventlistener )
45
+ - [ Unbinding event listeners] ( #unbinding-event-listeners )
46
+ - [ Example] ( #example )
47
+ - [ Triggering events] ( #triggering-events )
48
+ - [ Accessing the connection socket ID] ( #accessing-the-connection-socket-id )
49
+ - [ Helper Methods] ( #helper-methods )
50
+ - [ Getting a channel from string] ( #getting-a-channel-from-string )
51
+ - [ Basic channels] ( #basic-channels )
52
+ - [ Private channels] ( #private-channels-1 )
53
+ - [ Presence channels] ( #presence-channels-1 )
54
+ - [ Check if a channel has subscribed] ( #check-if-a-channel-has-subscribed )
55
+ - [ JavaDocs] ( #javadocs )
56
+ - [ Library Development Environment] ( #library-development-environment )
57
+ - [ Prerequisites] ( #prerequisites )
58
+ - [ Cloning the project] ( #cloning-the-project )
59
+ - [ Android Studio] ( #android-studio )
60
+ - [ Eclipse Project] ( #eclipse-project )
61
+ - [ Build] ( #build )
62
+ - [ Run the Example Application] ( #run-the-example-application )
50
63
51
64
## Installation
52
65
@@ -61,7 +74,7 @@ The pusher-java-client is available in Maven Central.
61
74
<dependency >
62
75
<groupId >com.pusher</groupId >
63
76
<artifactId >pusher-java-client</artifactId >
64
- <version >2.2.6 </version >
77
+ <version >2.2.7 </version >
65
78
</dependency >
66
79
</dependencies >
67
80
```
@@ -70,7 +83,7 @@ The pusher-java-client is available in Maven Central.
70
83
71
84
``` groovy
72
85
dependencies {
73
- compile 'com.pusher:pusher-java-client:2.2.6 '
86
+ compile 'com.pusher:pusher-java-client:2.2.7 '
74
87
}
75
88
```
76
89
0 commit comments