Commit 3f2453b2 authored by Matheus Jardim Bernardes's avatar Matheus Jardim Bernardes Committed by GitHub

Merge branch 'develop' into fix_noti_and_round_avatar

parents 06310f5a 0d7ec7c9
......@@ -33,7 +33,7 @@ android {
applicationId "chat.rocket.android"
minSdkVersion 16
targetSdkVersion 25
versionCode 22
versionCode 23
versionName "1.0.13"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
......
......@@ -6,10 +6,12 @@ import android.text.TextUtils;
import android.util.Base64;
import android.webkit.JavascriptInterface;
import android.webkit.WebView;
import org.json.JSONException;
import org.json.JSONObject;
import java.nio.charset.Charset;
import chat.rocket.android.api.MethodCallHelper;
import chat.rocket.android.fragment.AbstractWebViewFragment;
import chat.rocket.core.models.LoginServiceConfiguration;
......@@ -61,13 +63,14 @@ public abstract class AbstractOAuthFragment extends AbstractWebViewFragment
new RealmLoginServiceConfigurationRepository(hostname),
new MethodCallHelper(getContext(), hostname)
);
presenter.loadService(getOAuthServiceName());
}
@Override
public void onResume() {
super.onResume();
presenter.bindView(this);
presenter.loadService(getOAuthServiceName());
}
@Override
......
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