I’m having issues using SendBird UIKit on Android. The version I’m using is sendbird uikit 1.2.3
Over the last few weeks I’ve received complaints from user who are not able to user the integrated chat within our Android App. Looking at the logs (Crashlytics), we’ve found that there are lots of non-fatal exceptions when trying to use SendBirdUIKit. The errors are always happening in the same spot, when calling SendBirdUIKit.connect
method. Here is the stack trace found in the logs:
Non-fatal Exception: com.feverup.fever.chat.model.SendBirdException: com.sendbird.android.SendBirdException: User doesn’t exist or has been deleted.
at com.feverup.fever.chat.SendBirdChatService$connect$1.onConnected(SendBirdChatService.java:36)
at com.sendbird.uikit.SendBirdUIKit$1.onResultForUiThread(SendBirdUIKit.java:216)
at com.sendbird.uikit.SendBirdUIKit$1.onResultForUiThread(SendBirdUIKit.java:189)
at com.sendbird.uikit.tasks.JobResultTask$1.lambda$call$0(JobResultTask.java:35)
at com.sendbird.uikit.tasks.-$$Lambda$JobResultTask$1$Y7W6dkDafjyS2A31IT22Q8Gkd_0.run(-.java:8)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6702)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:911)
We’ve checked in SendBird’s dashboard and the user does exist.
Has anyone experienced the same issue? Any tip on how to solve it?