Skip to content

Commit e646990

Browse files
author
Daniel Rees
committed
Prepare version 0.3.0
1 parent caf94bc commit e646990

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

ChatExample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ dependencies {
4040
// implementation 'com.github.dsrees:JavaPhoenixClient:0.2.3'
4141

4242

43-
compile "com.google.code.gson:gson:2.8.5"
44-
compile "com.squareup.okhttp3:okhttp:3.12.2"
43+
implementation "com.google.code.gson:gson:2.8.5"
44+
implementation "com.squareup.okhttp3:okhttp:3.12.2"
4545

4646

4747
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
-104 KB
Binary file not shown.
105 KB
Binary file not shown.

ChatExample/app/src/main/java/com/github/dsrees/chatexample/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ class MainActivity : AppCompatActivity() {
2323

2424
// Use when connecting to https://github.com/dwyl/phoenix-chat-example
2525
private val socket = Socket("https://phxchat.herokuapp.com/socket/websocket")
26-
private val topic = "rooms:lobby"
26+
private val topic = "room:lobby"
2727

2828
// Use when connecting to local server
2929
// private val socket = Socket("ws://10.0.2.2:4000/socket/websocket")
30-
// private val topic = "room:lobby"
30+
// private val topic = "rooms:lobby"
3131

3232
private var lobbyChannel: Channel? = null
3333

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ repositories {
6666
and then add the library. See [releases](https://github.com/dsrees/JavaPhoenixClient/releases) for the latest version
6767
```$xslt
6868
dependencies {
69-
implementation 'com.github.dsrees:JavaPhoenixClient:0.2.6'
69+
implementation 'com.github.dsrees:JavaPhoenixClient:0.3.0'
7070
}
7171
```
7272

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'com.github.dsrees'
12-
version '0.2.6'
12+
version '0.3.0'
1313

1414
sourceCompatibility = 1.8
1515

0 commit comments

Comments
 (0)