Skip to content

Commit

Permalink
Merge pull request #457 from Kommunicate-io/release_v2.8.8
Browse files Browse the repository at this point in the history
Release changes for v2.8.8
  • Loading branch information
pranaysaini04 authored Nov 23, 2023
2 parents 39ef8e9 + 7028bbe commit e7efb9c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The changelog for [Kommunicate-Android-Chat-SDK](https://github.com/Kommunicate-io/Kommunicate-Android-Chat-SDK). Also see the
[releases](https://github.com/Kommunicate-io/Kommunicate-Android-Chat-SDK/releases) on Github.

## Unreleased
## Kommunicate Android SDK 2.8.8
1) Fixed crash while deleting message on agent app
## Kommunicate Android SDK 2.8.7
1) Fixed unreadCount returning wrong value
Expand Down
2 changes: 1 addition & 1 deletion kommunicate/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
minSdkVersion 16
targetSdkVersion 33
versionCode 1
versionName "2.8.7"
versionName "2.8.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "String", "CHAT_SERVER_URL", '"https://chat.kommunicate.io"'
buildConfigField "String", "API_SERVER_URL", '"https://api.kommunicate.io"'
Expand Down
2 changes: 1 addition & 1 deletion kommunicateui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
minSdkVersion 16
targetSdkVersion 33
versionCode 1
versionName "2.8.7"
versionName "2.8.8"
consumerProguardFiles 'proguard-rules.txt'
vectorDrawables.useSupportLibrary = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1114,11 +1114,6 @@ public void onMessageSent(Message message) {

@Override
public void onMessageReceived(Message message) {
if (!Message.ContentType.CHANNEL_CUSTOM_MESSAGE.getValue().equals(message.getContentType())) {
if (textToSpeech != null && !TextUtils.isEmpty(message.getMessage())) {
textToSpeech.speak(message.getMessage());
}
}
}

@Override
Expand Down

0 comments on commit e7efb9c

Please sign in to comment.