v3.14.0
·
30 commits
to main
since this release
v3.14.0 (Mar 19, 2024) with Chat SDK v4.15.6
- A feedback feature has been added to give opinions on the message.
- Added
setEmptyIcon(int)
,setEmptyIcon(int, ColorStateList)
,setEmptyText(int)
, andsetErrorText(int)
inChatNotificationChannelFragment
. - Added
setEmptyIcon(int)
,setEmptyIcon(int, ColorStateList)
,setEmptyText(int)
, andsetErrorText(int)
inFeedNotificationChannelFragment
.
- Added
- Simple example for creating
FeedNotificationChannelFragment
with empty icon and text.
val feedChannelFragment = FeedNotificationChannelFragment.Builder(channelUrl)
.withArguments(args)
.setEmptyIcon(R.drawable.icon_empty)
.setEmptyText(R.string.text_empty_notification)
.build()