1

This is my logcat

enter image description here

When I try to get Latest message list for android Custom UI using this method I get error in image.

ApplozicConversation.getMessageList(context, isScroll, new MessageListHandler() {
        @Override
        public void onResult(List<Message> messageList, ApplozicException e) {
            if(e == null){
            // do something
            }else{
            //Error in fetching messages. 
            e.printStrackTrace();
        }
    });
Jaymin
  • 2,879
  • 3
  • 19
  • 35
Pratik Powar
  • 251
  • 1
  • 4
  • 14

1 Answers1

1

Yes, I have solved this Using Custom Class. for now I have added manual check in MessageListTask class in onPostExecute method.

this issue will there for a users who does not have any conversations i.e. 0 conversations in List.

Pratik Powar
  • 251
  • 1
  • 4
  • 14