Skip to content

v3.14.0

Compare
Choose a tag to compare
@sendbird-sdk-deployment sendbird-sdk-deployment released this 19 Mar 03:18
· 30 commits to main since this release
3de1ff7

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), and setErrorText(int) in ChatNotificationChannelFragment.
    • Added setEmptyIcon(int), setEmptyIcon(int, ColorStateList), setEmptyText(int), and setErrorText(int) in FeedNotificationChannelFragment.
  • 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()