Skip to content

Releases: Jackwitwicky/android-chat-ui

Check Null Messages

28 Jun 06:20
Compare
Choose a tag to compare

This release prevents the list from crashing when paged list appends null chat messages. Instead the view holder will prevent loading the view if the chat message is null

Remove reliance on submitted message list

26 Jun 15:39
Compare
Choose a tag to compare

This release comments out use of array list passed in to the adapter constructor.
To allow it to function with paged list adapter to handle list size

Make Chat Adapter accessible

26 Jun 14:54
Compare
Choose a tag to compare

allow developer to access the adapter responsible for holding chat messages

Add non-null id to Chat Messages

26 Jun 14:20
Compare
Choose a tag to compare
v0.0.2-alpha6

Merge branch 'master' into release

Add id field to Chat Messages

26 Jun 14:09
Compare
Choose a tag to compare

This is a new release similar to v0.0.2-aplha3.
Please ignore the previous release as it referenced the wrong branch.

Add id field to Chat Messages

26 Jun 13:54
Compare
Choose a tag to compare

This adds an ID field to the chat message. Creating a new message generates a random string that can be used as the ID but the developer can update it with their own custom id before saving in their local db

Make Message a Room Entity

26 Jun 13:12
Compare
Choose a tag to compare

This release adds logic to allow the developer to save the chat message directly in their local db by marking it as an entity.
The id is used as a primary key.

Set Paged List

26 Jun 11:36
Compare
Choose a tag to compare

Exposes a method to allow setting the paged list to the chat list ui

Pagination Release

26 Jun 10:27
Compare
Choose a tag to compare

This release converts the lib to use recyclerview as the view holder for chat messages
Adds support for pagination to better support large amounts of messages.

First Release

26 Jun 06:06
Compare
Choose a tag to compare

First version of the library that allows showing chat UI with sender and receiver.
Currently uses list adapter to hold list of chats.