0

I have some androids phones that have recently started crashing. Is there a way to help narrow down this crash information I retrieved from the Google Play Console? Thanks for any direction!

enter image description here

1 Answers1

0

If you have access to the devices/users, a device crash report would help to troubleshoot the issue further:

$ adb bugreport E:\Reports\MyBugReports

From the stack trace you provided, it looks similar to the issue described here, caused by a third-party library. In your case, it can be either your code or any third-party library which can cause the crash. I would recommend trying to identify which code created Spannable in your app and isolate/remove/replace it.

Mando
  • 11,414
  • 17
  • 86
  • 167
  • 1
    Great thanks! I am working on making sure everything is the most recent version. I will search for Spannable and see if I can isolate. Thanks for the assistance and I will report back on my findings. – HenryEgal Dec 24 '20 at 04:27