Did anybody meet the strange exception with fireba...
# android
i
Did anybody meet the strange exception with firebase crash reportiong?
Copy code
E/FirebaseCrashlytics: Error handling uncaught exception
    java.util.concurrent.TimeoutException
        at com.google.firebase.crashlytics.internal.common.Utils.awaitEvenIfOnMainThread(Utils.java:122)
        at com.google.firebase.crashlytics.internal.common.CrashlyticsController.handleUncaughtException(CrashlyticsController.java:231)
        at com.google.firebase.crashlytics.internal.common.CrashlyticsController$1.onUncaughtException(CrashlyticsController.java:153)
        at com.google.firebase.crashlytics.internal.common.CrashlyticsUncaughtExceptionHandler.uncaughtException(CrashlyticsUncaughtExceptionHandler.java:54)
        at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1073)
        at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1068)
        at java.lang.Thread.dispatchUncaughtException(Thread.java:2187)
Added with firebase bom (27.1.0) and dependency
com.google.firebase:firebase-crashlytics-ktx
. Checked that with emulator and physical device (both without internet issues on quick look). How can it be?
and looks like this really happens on main thread, because app freezes few seconds
when I downgraded bom to 26.1.0 exception gone, but i don’t see any exceptions in firebase console
Looks strange, because it worked well out-of-the-box on few projects before
Now i am implementing it in KMM project and faced this issue
Tried to google this exception, but all what i found is different sites spammed with one single person without any suitable answer
167 Views