v3.17.0
sendbird-sdk-deployment
released this
23 May 08:04
·
18 commits
to main
since this release
v3.17.0 (May 23, 2024) with Chat SDK v4.16.3
-
Deprecated
notifyStatusUpdated(GroupChannel, StatusFrameView)
inMessageThreadInputComponent
-
Added a new interface to set the enable state of the message input field
- Added
boolean tryToChangeEnableInputView(boolean, String)
inChannelFragment
,MessageThreadFragment
,OpenChannelFragment
- Added
boolean tryToChangeEnableInputView(boolean, GroupChannel, String)
inMessageInputComponent
- Added
boolean tryToChangeEnableInputView(boolean, OpenChannel, String)
inOpenChannelMessageInputComponent
- Added
-
A new interface has been added to allow you to customise the items in the RecyclerView
- Added
String getActionContextMenuTitle(GroupChannel)
,List<DialogListItem> makeChannelContextMenu(GroupChannel)
, andboolean onChannelContextMenuItemClicked(GroupChannel, View, DialogListItem)
inChannelListFragment
- Added
-
Added a new interface to receive events when a message is clicked or long-clicked on the screen used in Sendbird Business Messaging
- Added
setOnItemClickListener(OnItemClickListener<BaseMessage>)
andsetOnItemLongClickListener(OnItemLongClickListener<BaseMessage>)
inChatNotificationChannelFragment.Builder
andFeedNotificationChannelFragment.Builder
- Added
-
Added a new feature to support markdown syntax in UserMessage
- Added
enableMarkdownForUserMessage: Boolean
inChannelConfig
. If you enable this feature, you can use markdown syntax in the UserMessage. - Currently, the following markdown syntax is supported:
- Bold:
**bold**
,__bold__
- Link:
[link](https://sendbird.com)
- Bold:
- Added
-
Options for Suggested Replies, Direction and Target, have been added.
- These two options only work when
ChannelConfig.enableSuggestedReplies
is enabled, and each flag operates independently. - Added
SuggestedRepliesDirection.VERTICAL
andSuggestedRepliesDirection.HORIZONTAL
which indicate the direction of the suggested replies inSuggestedRepliesView
. - Added
SuggestedRepliesFor.ALL_MESSAGES
andSuggestedRepliesFor.LAST_MESSAGE_ONLY
, which specify the target messages for suggested replies. - Added
suggestedRepliesFor
inChannelConfig
to set the target messages for suggested replies. - Added
suggestedRepliesDirection
inChannelConfig
to set the direction of the suggested replies.
- These two options only work when