Nicklas Ansman
Nicklas Ansman
Currently all default responses are returned as `text/plain`. I'd love to be able to have some way of rendering responses as JSON instead.
We generate a release notes file that would be great to include either as an attachment or as text in the message. I would be happy to take a stab...
I have a project where multiple modules have the same name but different path (`:feature1:sample`, `:feature2:sample`) and currently I cannot ignore just one of them since you specify the name...
Adding or removing an override function is binary compatible in Java so why are these functions included in the public API spec? I suppose they are technically public or protected...
I'm writing a library with multiple modules that depend on each other. My dependencies are set up like this: ``` groovy dependencies { debugCompile project(path: ":submodule", configuration: "debug") releaseCompile project(path:...
To avoid all the problem with `Picture` I would like to draw the SVG in my View's `onDraw`. The `renderToCanvas` method works great for this but it allocates a new...
As of version 1.8.0 `noInputPrompts` is not supported. There is a field in `DialogflowGooglePayload` declared for it but it is never used. This is important for us to be able...
To avoid having to first create an intermediary JSON string it would be great if an `InputStream`/`OutputStream` could be used to parse requests and serialize responses. Seeing as you are...
The official DynamoDB mapper (at least the 2.x one) has a `DynamoDbFlatten` that instructs it to flatten the specified property out into a single row: ```kotlin @DynamoDbBean data class BookItem(...