Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KunNiu authored May 11, 2021
1 parent 741e576 commit a90418a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Assuming you already have an Android project, e.g. _MyWebexApp_, for your Androi
```groovy
dependencies {
compile('com.ciscowebex:androidsdk:2.7.0@aar', {
compile('com.ciscowebex:androidsdk:2.8.0@aar', {
transitive = true
})
}
Expand Down Expand Up @@ -361,7 +361,7 @@ Here are some examples of how to use the Android SDK in your app.
if (event instanceof MessageReceived) {
Message message = event.getMessage();
// new message arrived
if(message.getParent != null){
if(message.getParentId() != null){
// threaded message
}
} else if (event instanceof MessageDeleted) {
Expand Down

0 comments on commit a90418a

Please sign in to comment.