I got this error
kotlinx.coroutines.TimeoutCancellationException: Timed out waiting for 1000 ms
and break point breaks in
init {
scope.launch { //here it breaks
}
And the scope code
private val scope: CoroutineScope = CoroutineScope(
SupervisorJob() + Dispatchers.Default + CoroutineExceptionHandler { _, th ->
Timber.e(th, "Error in the coroutine scope.")
}
)
1