-
Seeing this when creating an extension. Can anyone help discern what's wrong?
```
Caused by: java.util.ServiceConfigurationError: com.google.auto.value.extension.AutoValueExtension: Error reading con…
-
Hi I was wondering how you think about adding functionality to handle support for [HAL json](http://stateless.co/hal_specification.html), gson doesn't support it in a workable way. When you model al…
-
I'm currently in the middle of upgrading one of our pure Java libraries using AutoValue and this extension. I'm running into an issue however while trying to set the compiler options in my submodules …
-
If I add
```gradle
android {
defaultConfig {
javaCompileOptions {
annotationProcessorOptions {
arguments = ['autovaluegson.defaultCollectionsToEmpty': 'true']
}
…
-
I have a Kotlin auto-value class that implements parcelable and needs to be serialized by moshi. I'm using auto-value-parceleable and auto-value-moshi. I've followed the recommendation in issue #70 to…
-
Generated JsonAdapter skips null values. [AutoValueMoshiExtension](https://github.com/rharter/auto-value-moshi/blob/master/src/main/java/com/ryanharter/auto/value/moshi/AutoValueMoshiExtension.java#L3…
-
If you have a base class that has some properties, and then another class which extends it - you do not get any of the properties from either class in the resulting JSON output.
You can see this b…
-
It just took me 1 hour to detect a stupid bug where my project wouldn't compile.
I had method of a primitive type annotated as `@Nullable`.
The generated adapter was checking
```
if(value.primitiveF…
-
This annotation does not work when we are annotating properties in class that uses Builder to create it's instances. In generated code just getters are annotated, setters not.
-
I have a class that has both AutoValue and your AutoValue Gson Extension enabled and working well. The class uses JavaBeans-style name prefixes.
When I try to make the class Parcelable the JavaBeans-…
3flex updated
6 years ago