I implemented crashlytics in my android project. Now wanted to test crash and while I try to crash application by throwing Runtime exception in my compose project instead of crashing UI gets frozen forever. No ANR nothing just UI freeze. Anybody having clue why its happening and how it can be fixed.
Update: Here is code that I'm using to crash app:
Button(
onclick = {
throw RuntimeException("issue test")
}
)
{
Text("Crash")
}
This is a specific dependency problem.
A library used in our projects called "Oppwa", used for payments is swallowing all the crashes and sending them to their dashboard.
This isn't just a tech problem but also a legal one in our case. After contacting the team they have informed they released a new one that removed the interceptor of the crashes.