Skip to content

Releases: sendbird/sendbird-chat-sdk-android

v4.15.4

28 Feb 07:08
777eeeb
Compare
Choose a tag to compare

Features

  • Added ThreadedParentMessageListQuery
class GroupChannel {
	val totalUnreadReplyCount: Int

	fun createThreadedParentMessageListQuery(
		params: ThreadedParentMessageListQueryParams
	): ThreadedParentMessageListQuery
}

class BaseMessage {
	fun markThreadAsRead(handler: CompletionHandler?)
	fun setPushNotificationEnabled(enabled: Boolean, handler: CompletionHandler?)
}

class ThreadInfo {
	val unreadReplyCount: Int
	val memberCount: Int
	val isPushNotificationEnabled: Boolean
}

v4.15.2-ktx

28 Feb 07:19
0bb9429
Compare
Choose a tag to compare

Features

  • Added new Kotlin Extension for SendbirdChat SDK
     class User {
         suspend fun createMetaData(metaDataMap: Map<String, String>): Map<String, String>
         suspend fun updateMetaData(metaDataMap: Map<String, String>): Map<String, String>
         suspend fun deleteMetaData(key: String)
         suspend fun deleteAllMetaData()
     }
    
     class Poll {
         companion object {
             suspend fun create(params: PollCreateParams): Poll
             suspend fun get(params: PollRetrievalParams): Poll
         }
     }
    
     class PollOption {
         companion object {
             suspend fun get(params: PollOptionRetrievalParams): PollOption
         }
     }
  • Added extension function in BaseMessage related to threaded message
    class BaseMessage {
        suspend fun markThreadAsRead()
        suspend fun setPushNotificationEnabled(enabled: Boolean)
    }

v4.15.3

22 Feb 06:27
31cfae2
Compare
Choose a tag to compare

Improvements

  • Improved stability

v4.15.1-ktx

22 Feb 07:08
95d3fba
Compare
Choose a tag to compare

Improvements

  • Improved stability

v4.15.2

14 Feb 13:05
414dd43
Compare
Choose a tag to compare

Improvements

  • Reduced SDK Size by optimizing kotlin function usage
  • Added new property notificationPriority in BaseMessage
  • Fixed a bug where MessageMetaArray related operation doesn't work with MultipleFilesMessage

v4.15.1

14 Feb 08:14
a784186
Compare
Choose a tag to compare

Improvements

  • Reduced SDK Size by optimizing kotlin function usage
  • Added new property notificationPriority in BaseMessage
  • Fixed a bug where MessageMetaArray related operation doesn't work with MultipleFilesMessage

v4.15.0-ktx

07 Feb 07:26
bea1f8a
Compare
Choose a tag to compare

Features

  • Introducing new Kotlin Extension for SendbirdChat SDK
    • Supported for all public interfaces

v4.15.0

07 Feb 07:18
08848ea
Compare
Choose a tag to compare

Features

  • Supports new SendbirdChat KTX

v4.14.2

31 Jan 06:38
29e9209
Compare
Choose a tag to compare

Improvements

  • Fixed a bug where NotificationCollectionHandler.onMessagesUpdated() is called indefinitely in some cases

v4.14.1

17 Jan 10:16
2208c54
Compare
Choose a tag to compare

Improvements

  • Fix intermittent ConcurrentModificationException in MessageCollection