Releases: sendbird/sendbird-chat-sdk-android
Releases · sendbird/sendbird-chat-sdk-android
v4.15.4
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
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 messageclass BaseMessage { suspend fun markThreadAsRead() suspend fun setPushNotificationEnabled(enabled: Boolean) }
v4.15.3
Improvements
- Improved stability
v4.15.1-ktx
Improvements
- Improved stability
v4.15.2
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 withMultipleFilesMessage
v4.15.1
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 withMultipleFilesMessage
v4.15.0-ktx
Features
- Introducing new Kotlin Extension for SendbirdChat SDK
- Supported for all public interfaces
v4.15.0
Features
- Supports new SendbirdChat KTX
v4.14.2
Improvements
- Fixed a bug where
NotificationCollectionHandler.onMessagesUpdated()
is called indefinitely in some cases
v4.14.1
Improvements
- Fix intermittent
ConcurrentModificationException
inMessageCollection