Closed vincent-paing closed 6 years ago
This is a bug in transformer method types parsing.
You can replace List
AutoValue only support primitive arrays so using String[] with AutoValue will not work. For now, I will just use without AutoValue
This bug is fixed in version 0.17.0
Currently, I have the following field in my entity
I have added a Transformer class for List String that convert into JSON vice versa.
When I compile my project it gave out this error with no instructions to recover
EDIT: Seems like it's because of The Transformer class, when I remove it and the list field, it compile successfully.