We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Why code like this:
CoroutineScope(Dispatchers.Default).launch { throw IllegalStateException() }
doesn't crash iOS app?
But
CoroutineScope(Dispatcher.Main).launch { withContext(Dispatcher.Default) { throw IllegalStateException() } }
crashes.
Kotlin: 1.4.31 Coroutines: 1.4.2-native-mt
The text was updated successfully, but these errors were encountered:
See the following: #2398
Sorry, something went wrong.
Fixed in 1.5.1-native-mt. For an additional explanation of the behaviour see #2804 (comment)
1.5.1-native-mt
if fixed in 1.5.1-native-mt should it not happen in 1.8.0? because the issue is happening to me in 1.8.0 ??
No branches or pull requests
Hi!
Why code like this:
doesn't crash iOS app?
But
crashes.
Kotlin: 1.4.31
Coroutines: 1.4.2-native-mt
The text was updated successfully, but these errors were encountered: