Skip to content

Commit

Permalink
Update to 4.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bensmiley committed Mar 22, 2019
1 parent b84a803 commit 268f45f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -375,7 +375,7 @@ Add the following to your `build.gradle`
*Gradle*

```
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-push:4.6.7'
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-push:4.6.9'
```

[*Manual Import*](https://github.com/chat-sdk/chat-sdk-android#adding-modules-manually)
Expand Down Expand Up @@ -418,7 +418,7 @@ Now the script is active and push notifications will be set out automatically.
Add the following to your `build.gradle`

```
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-ui:4.6.7'
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-ui:4.6.9'
```

##### Enable the module
Expand All @@ -443,7 +443,7 @@ Add the following to your `build.gradle`
*Gradle*

```
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-social-login:4.6.7'
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-social-login:4.6.9'
```

[*Manual Import*](https://github.com/chat-sdk/chat-sdk-android#adding-modules-manually)
Expand Down
Expand Up @@ -37,6 +37,11 @@ protected void setAuthStateToIdle() {
authStatus = AuthStatus.IDLE;
}

@Deprecated
public Boolean userAuthenticated() {
return isAuthenticated();
}

@Deprecated
public Boolean userAuthenticatedThisSession () {
return isAuthenticatedThisSession();
Expand Down
Expand Up @@ -145,10 +145,6 @@ public Completable authenticateWithUser(final FirebaseUser user) {
.subscribeOn(Schedulers.single());
}

public Boolean userAuthenticated() {
return isAuthenticated();
}

public Boolean isAuthenticated() {
return FirebaseAuth.getInstance().getCurrentUser() != null;
}
Expand Down

0 comments on commit 268f45f

Please sign in to comment.