When I create a new Java class with one or more field and attach the @AllArgsConstructor annotation from lombok to it, then i get this message
Err
Lombok generates the @ConstructorProperties by default for all generated constructors. On Android, that annotation is not available. As mentioned in the documentation it is possible to suppress the generation by either specifying suppressConstructorProperties=true for each @XxxArgsConstructor, or by using the following line in a high level lombok.config file:
lombok.anyConstructor.suppressConstructorProperties = true
Disclosure: I am a Lombok developer