Nicklas Ansman
Nicklas Ansman
If you have a file named `bar.png` and one named `foo-bar.png` the `foo-bar.png` file sometimes gets the incorrect hash since the regex (`\bbar.png\b`). This could potentially be solved by simply...
We've started using theme attributes for our fonts like this: ``` ?fontPathMedium ``` This works great but this does not: ``` ``` It seems the case where a string resource...
It would be great if you could mark a layer with one or more resource qualifiers such as "-night" so you can export both normal and night assets
Currently the only way to read resource files generated by a KSP symbol processor is to use `File(KotlinCompilation.kspSourcesDir, "resource")` which is only available from `KotlinCompilation` and not `KotlinCompilation.Result`. It would...
It would be great if java resource files (`src/main/resources`) could be included during compilation.
A container for the legend will have to be specified in order for it to work with leaflet maps.
Even if I explicitly write `margin-top` etc premailer combines it to `margin: XXpx XXpx` which doesn't work in hotmail sadly.
When trying to parse the kotlin metadata for a class that is annotated with Kotlinx's `@Serializable` Kotlinpoet throws an exception. Here is a class that produces the issue: ```kotlin @Serializable...
If you read the type `SomeClass` and write it you get `SomeClass` rather than `SomeClass`. The generated code compiles but complains that `Integer` should not be used.
This class: ```java public abstract class Foo { @Memoized public String someMethod() { return "foo"; } } ``` Will generate a field called `someMethod` that unfortunately isn't transient so PaperParcel...