Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Changelog: Twilio Chat Android SDK


(error)

Danger

Programmable Chat has been deprecated and is no longer supported. Instead, we'll be focusing on the next generation of chat: Twilio Conversations. Find out more about the EOL process here(link takes you to an external page).

If you're starting a new project, please visit the Conversations Docs to begin. If you've already built on Programmable Chat, please visit our Migration Guide to learn about how to switch.


Latest Release: 7.0.1

latest-release-701 page anchor

We recommend referencing this release per the below. As we release backwards-compatible patches, these references will automatically include fixes in your project.

  • Gradle dependencies { implementation 'com.twilio:chat-android:7.0.1' }
  • Maven
    See the chat-android Maven Central page(link takes you to an external page) for download links.
  • SDK Documentation(link takes you to an external page)

If you need help installing these frameworks in your project, see our installation guidance.

(information)

Install the Android NDK

To enable tools like Firebase Crashalytics(link takes you to an external page), our SDKs include symbol information for native components. In order to improve SDK troubleshooting, these symbols should be part of your build process. These will be stripped automatically from your final .apk file, reducing download size.

Installing the Android SDK in your build environment also gives you the tightest possible .apk file. Simply installing the NDK reduces the Chat SDK's footprint in your .apk by as much as 20%.


Support for Previous Versions of the Chat SDKs

support-for-previous-versions-of-the-chat-sdks page anchor

Twilio Programmable Chat SDKs use Semantic Versioning(link takes you to an external page). Twilio supports version N-1 for 12 months after the first GA release of version N. We recommend that you upgrade to the latest version as soon as possible to avoid any breaking changes. Version 7.x is the latest Android version.

Support for 6.x will cease on May 17, 2022. Please upgrade to the latest version

Support for 5.x ceased on July 20, 2021.

Support for 4.x ceased on March 5, 2021.

End-of-Life for 3.x occurred on December 10, 2020.

End-of-Life for 2.x occurred on April 10, 2020.

End-of-Life for 1.x occurred on June 30, 2019.

(warning)

Upgrade to Programmable Chat Android SDK 5.1.1 or higher

The following versions of the Programmable Chat Android SDK are deprecated and cannot be downloaded using the links below.

  • 5.0.1 and 5.1.0
  • 4.2.1, 4.2.2, and 4.2.3

Please use Android SDK 5.1.1 or higher. The latest version has significant improvements and changes from the previous versions.


Links are provided to specific patch versions here. We don't recommend using these links unless you have a specific need for a certain patch.


Programmable Chat Android 7.0.1 (Aug 31, 2021)

programmable-chat-android-701-aug-31-2021 page anchor

Changes

changes page anchor
  • Fixed a bug when onChannelAdded event sometimes didn't arrive after restoring application from background

Programmable Chat Android 7.0.0 (May 17, 2021)

programmable-chat-android-700-may-17-2021 page anchor
  • Major under-the-hood improvement (the "Sessionless" protocol).
    This improvement is designed primarily for improved reliability. While this is not a breaking code change, it does carry a meaningful impact on timing:

    • SDK commands will return success or failure up to ~10% more quickly than before.
    • Real-time updates of data are now likely to arrive after the command completes .
      For example, Channel.setAttributes() will invoke completion (i.e., success) while Channel.getAttributes() still returns the old value. To see the new value, we recommend waiting for an update event via ChatClientListener#onChannelUpdated .

Programmable Chat Android 6.2.2 (Apr 27, 2021)

programmable-chat-android-622-apr-27-2021 page anchor
  • Fixed a reconnection issue after restoring application from background.

Programmable Chat Android 6.2.1 (Mar 17, 2021)

programmable-chat-android-621-mar-17-2021 page anchor
  • Reduced SDK footprint
  • Fixed a bug when user update event with reason ReachabilityOnline is not received in some cases

Starting from this release all artifacts are published on mavenCentral instead of jcenter. Root build.gradle have to be updated by adding mavenCentral() repository:


_10
allprojects {
_10
repositories {
_10
mavenCentral()
_10
}
_10
}


Programmable Chat Android 6.2.0 (Nov 20, 2020)

programmable-chat-android-620-nov-20-2020 page anchor
  • Update to v6.2.1 or newer, if you got runtime error: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/getkeepsafe/relinker/ReLinker .

Programmable Chat Android 6.1.1 (Oct 21, 2020)

programmable-chat-android-611-oct-21-2020 page anchor

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)

  • Fixed a bug that could lead to crashes when member attributes are updated.

Programmable Chat Android 6.1.0 (Jul 30, 2020)

programmable-chat-android-610-jul-30-2020 page anchor

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)

  • SDK has switched to Android's native SSLSocket implementation ( javax.net.ssl.SSLSocket ), resulting in a noticeable decrease in final application size compared to release 6.0.0.

Programmable Chat Android 6.0.0 (Jul 20, 2020)

programmable-chat-android-600-jul-20-2020 page anchor

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)

  • ChatClient can now have multiple observers.
    • Renamed setListener to addListener .
    • Changed removeListener() to removeListener(listener) .
    • Added removeAllListeners() .
  • Now Channel.getUnconsumedMessagesCount() returns null instead of 0 if the message consumption horizon was not set.
    • Messages.setNoMessagesConsumedWithResult() always returns null instead of 0 (because it resets the consumption horizon).
  • Media message body is not hardcoded to always return null anymore. Returns actual value received from the backend instead.
  • Added Member.UpdateReason.LAST_CONSUMPTION_TIMESTAMP.
    • This as a result also changed the value of Member.UpdateReason.ATTRIBUTES (potentially silently breaking change if this value was serialized).
  • Added NotificationPayload.getMessageIndex() and NotificationPayload.INVALID_MESSAGE_INDEX for retrieving the message index from push notifications.
  • Exposed Message.dateUpdated, dateUpdatedAsDate and lastUpdatedBy.
    • lastUpdatedBy will be null if messages were not edited, or it will contain the identity of the last user who edited this message.
  • Added Message.Media.getContentTemporaryUrl() to get a temporary direct link to Media content.
    • Message.Media.download(OutputStream) is deprecated.
    • To download Media by direct URL, use some external mechanism, such as Android Download Manager or java.net.URL.readText() .

Programmable Chat Android 5.1.1 (Jun 1, 2020)

programmable-chat-android-511-jun-1-2020 page anchor

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)

  • Fixed the bug when connection is dropped with message The WebSocket message exceeded the locally configured limit .

Programmable Chat Android 5.1.0 (May 20, 2020)

programmable-chat-android-510-may-20-2020 page anchor

This version has been deprecated — please use 5.1.1.

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)


Programmable Chat Android 5.0.1 (Apr 2, 2020)

programmable-chat-android-501-apr-2-2020 page anchor

This version has been deprecated June 1, please use 5.1.1.

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)

  • Improved stability, fixed crashes.

Programmable Chat Android 5.0.0 (Mar 5, 2020)

programmable-chat-android-500-mar-5-2020 page anchor

aar(link takes you to an external page) Documentation(link takes you to an external page) javadocs(link takes you to an external page)

  • Introduced a type-safe interface Attributes for Channel , Message , Member and User . Attributes type allows attributes to be represented as JSON types JSONObject , JSONArray , String , Number or NULL . You could query attributes to understand what type you've received.
  • registerGCMToken() / unregisterGCMToken() now uses GCMToken as a parameter type instead of String .
  • registerFCMToken() / unregisterFCMToken() now uses FCMToken as a parameter type instead of String .

Here are examples of how code should be changed:

For attributes:


_10
JSONObject json = channel.getAttributes();
_10
json.put("newKey", "newValue");
_10
channel.setAttributes(json);

replace with:


_10
JSONObject json = channel.getAttributes().getJSONObject();
_10
json.put("newKey", "newValue");
_10
channel.setAttributes(new Attributes(json));

For GCM tokens:


_10
String token = getToken();
_10
chatClient.registerGCMToken(token);
_10
chatClient.unregisterGCMToken(token);

replace with:


_10
String token = getToken();
_10
GCMToken gcmToken = new GCMToken(token);
_10
_10
chatClient.registerGCMToken(gcmToken);
_10
chatClient.unregisterGCMToken(gcmToken);

For FCM tokens:


_10
String token = getToken();
_10
chatClient.registerFCMToken(token);
_10
chatClient.unregisterFCMToken(token);

replace with:


_10
String token = getToken();
_10
FCMToken fcmToken = new FCMToken(token);
_10
_10
chatClient.registerFCMToken(fcmToken);
_10
chatClient.unregisterFCMToken(fcmToken);

  • Fixed incorrect behavior when user identity contained a back-tick character (`).
  • Fixed unregistering from notifications while offline.

For older changelog entries, including 4.x, please see this changelog.


Rate this page: