Nicklas Ansman
Nicklas Ansman
@tompee26 Do you still see this issue?
So I've found the root cause of the issue which is that Android does not support Java 11 yet and you won't be able to target Java 11 when compiling....
The answer is no, there is no way besides not applying the processor. As you mention you would have to have a separate factory in another source set. I will...
This class: ```java @AutoValue public abstract class Foo { @Memoized public String foo() { return "foo"; } } ``` generates ```java @Generated("com.google.auto.value.processor.AutoValueProcessor") abstract class $AutoValue_Foo extends Foo { $AutoValue_Foo( )...
Yeah, that's what I did now. Ideally this issue should be fixed: https://github.com/google/auto/issues/406
I can't apply annotations to lazy properties, I get this error: `'@field: annotations could only be applied to properties with backing fields`. Is there a workaround?
Yup, worked perfectly 👍
I'd rather not override every single error. Also, it would be nice to be able to customize the format of the JSON returned. But perhaps I should just create a...
Well that's the tricky part, not sure if there is one size that fits all here. Though the format I'm currently using is ``` json { "message": "" } ```
That would be awesome!