orbit uses `runBlocking { }` in it's `intent { }` extension function. runBlocking can throw `Interru...
k
orbit uses
runBlocking { }
in it's
intent { }
extension function. runBlocking can throw
InterruptedException
when thread being used for executing the coroutine gets interrupted for some reason. This results in a runtime crash. Is there any way to get around this crash?