Skip to content

Commit b0ff546

Browse files
authored
Merge pull request #495 from Kommunicate-io/release_v2.9.5
Release changes for v2.9.5
2 parents 737cf1a + b9badc9 commit b0ff546

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
The changelog for [Kommunicate-Android-Chat-SDK](https://github.com/Kommunicate-io/Kommunicate-Android-Chat-SDK). Also see the
44
[releases](https://github.com/Kommunicate-io/Kommunicate-Android-Chat-SDK/releases) on Github.
55

6-
## Unrelease
6+
## Kommunicate Android SDK 2.9.5
77
1) Added customization for image compression
8+
2) Fixed crash caused by empty form action message when submitting the form
89
## Kommunicate Android SDK 2.9.4
910
1) Added support for iframe in HTML type rich message
1011
2) Fixed location issues

kommunicate/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ android {
1818
minSdkVersion 17
1919
targetSdkVersion 34
2020
versionCode 1
21-
versionName "2.9.4"
21+
versionName "2.9.5"
2222
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2323
buildConfigField "String", "CHAT_SERVER_URL", '"https://chat.kommunicate.io"'
2424
buildConfigField "String", "API_SERVER_URL", '"https://api.kommunicate.io"'

kommunicateui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ android {
1818
minSdkVersion 17
1919
targetSdkVersion 34
2020
versionCode 1
21-
versionName "2.9.4"
21+
versionName "2.9.5"
2222
consumerProguardFiles 'proguard-rules.txt'
2323
vectorDrawables.useSupportLibrary = true
2424
}

kommunicateui/src/main/java/com/applozic/mobicomkit/uiwidgets/conversation/fragment/MobiComQuickConversationFragment.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container,
133133
View list = inflater.inflate(R.layout.mobicom_message_list, container, false);
134134
if (!alCustomizationSettings.isAgentApp()) {
135135
LinearLayout kmMessageLinearLayout = list.findViewById(R.id.km_message_linear_layout);
136-
kmMessageLinearLayout.setVisibility(View.GONE);
136+
if (kmMessageLinearLayout != null) {
137+
kmMessageLinearLayout.setVisibility(View.GONE);
138+
}
137139
}
138140
boolean isDarkMode = false;
139141
// uncomment these 4 lines for testing

0 commit comments

Comments
 (0)