stacktrace-decoroutinator icon indicating copy to clipboard operation
stacktrace-decoroutinator copied to clipboard

Small lib for recovering stack trace in exceptions thrown in Kotlin coroutines

Results 9 stacktrace-decoroutinator issues
Sort by recently updated
recently updated
newest added

On Android API 26 got exception below. Seems it somehow related to the way SD replaces implementation of class `BaseContinuationImpl` at runtime. stack trace ``` java.lang.IncompatibleClassChangeError: The method 'java.lang.Class java.lang.Object.getClass()'...

Are there plans to provide MP version of this? Spicifically for the native target.

minSdk = 26 covers 80% of the devices according to play market stats. While it might work for some projects, it will not work for others. Is there a specific...

I've got this `IllegalStateException` although I'm using `DecoroutinatorRuntime.load()` in the `init { }` block of my `Application` class. In order to rule out that it is a general problem, I...

I am calling `DecoroutinatorRuntime.load()` at the top of my app's onCreate but it seems to be causing the app to crash I've attached a screenshot of the full stack trace....

After rolling out a version with SD to a small fraction of our users on Google Play we see crashes at startup: ![image](https://github.com/Anamorphosee/stacktrace-decoroutinator/assets/1143272/537ac28c-7c35-4c83-b28d-4ac056c5213d) The trace is always the same: ```...

With the most recent release, things mostly work fine. But it seems that there is some (gradle build?) cache invalidation issue. Sometimes, tests can only be executed after a gradle...

When applying the plugin (`2.4.5`), I can't build my app with the following error: ``` MethodHandle.invoke and MethodHandle.invokeExact are only supported starting with Android O (--min-api 26): Ldev/datlag/mimasu/tmdb/api/_CreditsImpl;details(Ldev/reformator/stacktracedecoroutinator/provider/DecoroutinatorSpec;Ljava/lang/Object;)Ljava/lang/Object; ``` This...

Our repository recently implemented Decoroutinator and I noticed that since then a lot of Jetpack Compose Previews in Android Studio would no longer compile. I went through a `git bisect`...