Skip to content

Commit

Permalink
Prepare version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dsrees committed Jun 21, 2019
1 parent caf94bc commit e646990
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ChatExample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ dependencies {
// implementation 'com.github.dsrees:JavaPhoenixClient:0.2.3'


compile "com.google.code.gson:gson:2.8.5"
compile "com.squareup.okhttp3:okhttp:3.12.2"
implementation "com.google.code.gson:gson:2.8.5"
implementation "com.squareup.okhttp3:okhttp:3.12.2"


implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
Expand Down
Binary file removed ChatExample/app/libs/JavaPhoenixClient-0.2.6.jar
Binary file not shown.
Binary file added ChatExample/app/libs/JavaPhoenixClient-0.3.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ class MainActivity : AppCompatActivity() {

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

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

private var lobbyChannel: Channel? = null

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repositories {
and then add the library. See [releases](https://github.com/dsrees/JavaPhoenixClient/releases) for the latest version
```$xslt
dependencies {
implementation 'com.github.dsrees:JavaPhoenixClient:0.2.6'
implementation 'com.github.dsrees:JavaPhoenixClient:0.3.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'com.github.dsrees'
version '0.2.6'
version '0.3.0'

sourceCompatibility = 1.8

Expand Down

0 comments on commit e646990

Please sign in to comment.