Cedric Hippmann
Cedric Hippmann
@bentrengrove I'm working on the PR now but got one question; In your samples i have an issue which strangely enough i don't have in my code; `isSwipeInProgress` is set...
Simply wrapping the `state.isSwipeInProgress = true` inside ```kotlin if (available.y > 0) { state.isSwipeInProgress = true } ``` or moving it out of `onScroll` to only be executed in `onPostScroll`...
So basically the `isSwipeInProgress` is not correct with the current implementation if the user starts a pull to refresh, aborts it and starts scrolling down as `isSwipeInProgress` is only set...
I quickly made a minimal reproduction sample project ([debugProject.zip](https://github.com/Foso/MpApt/files/4176829/debugProject.zip)) After first build i get the following `libexample_api.h`: ```#ifndef KONAN_LIBEXAMPLE_H #define KONAN_LIBEXAMPLE_H #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus typedef...
That is very unfortunate. But makes sense of course. Is there any documentation regarding the compiler around? I can't seem to find something useful. What kind of a workaround are...
Maybe we find a solution in the kotlin [serialization plugin](https://github.com/JetBrains/kotlin/tree/master/plugins/kotlin-serialization/kotlin-serialization-compiler)? As far is i understand, they do also native code generation during build, but i need to check that first.
That's what i thought but didn't hope. Yes I saw that yesterday evening as well. But this is over my head I think. Especially generating that much IR. Well I...
I just updated above linked script to kotlin compiler version `1.3.61` and after passing the path to a `kt` source file we get all the classDescriptors and stuff like we...
We had the same problem on our project. We basically "solved" it by making a fake target through gradle at build time which has the same configuration like the actual...
Yes depending on the size of the project that's not feasible at all. You can directly generate the Intermediate Representation (IR) of the code you want to generate. This is...