Commit c26cb152 authored by Leonardo Aramaki's avatar Leonardo Aramaki

Bump app version to 1.0.31 (54)

parent d8da4be2
...@@ -77,10 +77,6 @@ public class DDPClientImpl { ...@@ -77,10 +77,6 @@ public class DDPClientImpl {
callback -> callback instanceof RxWebSocketCallback.Message) callback -> callback instanceof RxWebSocketCallback.Message)
.map(callback -> ((RxWebSocketCallback.Message) callback).responseBodyString) .map(callback -> ((RxWebSocketCallback.Message) callback).responseBodyString)
.map(DDPClientImpl::toJson) .map(DDPClientImpl::toJson)
.map(jsonObject -> {
if (true) throw new IllegalAccessException();
return jsonObject;
})
.timeout(7, TimeUnit.SECONDS) .timeout(7, TimeUnit.SECONDS)
.subscribe(response -> { .subscribe(response -> {
String msg = extractMsg(response); String msg = extractMsg(response);
......
...@@ -20,8 +20,8 @@ android { ...@@ -20,8 +20,8 @@ android {
applicationId "chat.rocket.android" applicationId "chat.rocket.android"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 53 versionCode 54
versionName "1.0.30" versionName "1.0.31"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
multiDexEnabled true multiDexEnabled true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment