1. Why am I seeing: java.lang.NoClassDefFoundError...
# coroutines
a
1. Why am I seeing: java.lang.NoClassDefFoundError: Could not initialize class kotlinx.coroutines.CancelledContinuation 2. On my local machine I don't get stack overflow, on our CI pipeline I get the
StackOverflowError
error
m
Regarding 1: You may have libraries in your project where the coroutines library versions don’t match. Check that all coroutine libraries have the same version and that all other libraries that use coroutines expect that version.
Check implicit and explicit dependencies :)
a
Thanks, weird that I could not reproduce this locally. Aligning versions seem to work now
Hmm... after running again the same error appeared. weird