Closed Karkoon closed 5 months ago
Thanks for raising this issue, I could reproduce and implemented a fix. It was a bug in the MapToX converter, where a String was concatenated with a kotlinpoet CodeBlock
instead of using the %L
placeholder. Without the placeholder, the CodeBlock will be converted toString and is unaware of packages, imports, etc.
Hi. I have this structure:
And the generate code is this:
The line: dev.karkoon.notes.gallery.ImageDto.dev.karkoon.notes.gallery.fromImage(image = it) generates an error.
The second "dev" in this line produces an unresolved reference. If I remove the whole second "dev.karkoon.notes.gallery" it works.
I'm using the 3.2.0 version. Thank you for creating this library.