Skip to content

Commit

Permalink
Added v3.1.21.
Browse files Browse the repository at this point in the history
  • Loading branch information
hoon-sung committed Sep 5, 2022
1 parent 72b0d31 commit ffef3d7
Showing 14 changed files with 57 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### v3.1.21 (Sep 5, 2022)
- Improved stability

### v3.1.20 (Aug 31, 2022)
- Added MessageSearchQuery's totalCount and made it public (MessageSearchQuery.getTotalCount())
- Implemented channel membership history where clients can retrieve whether users have joined or left the channel (`MemberState.LEFT` for left members of a `GroupChannel`)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

[![Platform](https://img.shields.io/badge/platform-android-orange.svg)](https://github.com/sendbird/SendBird-SDK-Android)
[![Languages](https://img.shields.io/badge/language-java-orange.svg)](https://github.com/sendbird/SendBird-SDK-Android)
[![Maven](https://img.shields.io/badge/maven-v3.1.20-green.svg)](https://github.com/sendbird/SendBird-SDK-Android/tree/master/com/sendbird/sdk/sendbird-android-sdk/3.1.20)
[![Maven](https://img.shields.io/badge/maven-v3.1.21-green.svg)](https://github.com/sendbird/SendBird-SDK-Android/tree/master/com/sendbird/sdk/sendbird-android-sdk/3.1.21)
[![Commercial License](https://img.shields.io/badge/license-Commercial-brightgreen.svg)](https://github.com/sendbird/SendBird-SDK-Android/blob/master/LICENSE.md)

## Table of contents
@@ -94,7 +94,7 @@ Then, add the dependency to the project's top-level `build.gradle` file:
```gradle
dependencies {
...
implementation 'com.sendbird.sdk:sendbird-android-sdk:3.1.20'
implementation 'com.sendbird.sdk:sendbird-android-sdk:3.1.21'
...
}
```
@@ -111,7 +111,7 @@ TLS 1.3 support is included in version 3.0.106 of the SendBird Android SDK. TLS
```gradle
dependencies {
implementation ('com.sendbird.sdk:sendbird-android-sdk:3.1.20') {
implementation ('com.sendbird.sdk:sendbird-android-sdk:3.1.21') {
exclude group: 'org.conscrypt', module: 'conscrypt-android'
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ea067ed3015dfdedfd07cda7e3ac1d7f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1def3f54f8124501704da2ca7565c7c49bd13d8b
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
17464d2258fedb431d72cf16eee780b1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
72a097ef2754a0677293021d96741b9c8e7afe38
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sendbird.sdk</groupId>
<artifactId>sendbird-android-sdk</artifactId>
<version>3.1.21</version>
<packaging>aar</packaging>
<name>Sendbird Android SDK</name>
<description>Sendbird is simplest solution for chat and messaging. It enables your app to engage and retain your users in real-time.</description>
<url>https://www.sendbird.com/</url>
<inceptionYear>2016</inceptionYear>
<licenses>
<license>
<name>Sendbird SDK License</name>
<url>https://github.com/sendbird/Sendbird-SDK-Android/blob/master/LICENSE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>androidx.annotation</groupId>
<artifactId>annotation</artifactId>
<version>1.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.conscrypt</groupId>
<artifactId>conscrypt-android</artifactId>
<version>2.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId>
<version>1.4.31</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3ddf71d0a4da6f9481b6ba6fa47b8ec0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
af57a7becc741b00fd98606f7322c42f5b748172
5 changes: 3 additions & 2 deletions com/sendbird/sdk/sendbird-android-sdk/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<groupId>com.sendbird.sdk</groupId>
<artifactId>sendbird-android-sdk</artifactId>
<versioning>
<release>3.1.20</release>
<release>3.1.21</release>
<versions>
<version>2.0.1</version>
<version>2.0.2</version>
@@ -230,7 +230,8 @@
<version>3.1.18</version>
<version>3.1.19</version>
<version>3.1.20</version>
<version>3.1.21</version>
</versions>
<lastUpdated>20220831065730</lastUpdated>
<lastUpdated>20220905075903</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
97f66c096d35c6695228a81a59f2f24a
715287e040c5906b07862d4ccefe92dd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ff8e046777b16d4b7ba870a1680b680a0c845bb4
20edfcfb2c7d75edafd82300cf4c240124b3c463

0 comments on commit ffef3d7

Please sign in to comment.