Closed Tagakov closed 8 years ago
having the same issue. Any hint how to solve this? It doesnt seem related to the auto-value version. Pure auto-value works both 1.2r1 and 1.2. But as soon as using auto-parcel this breaks :/
Thanks to @daugeldauge for pointing out to me that this issue is connected with https://github.com/google/auto/issues/281 . So this is not the problem of AutoParcel. Workaround for this issue is to implement non-abstract toBuilder method:
public Builder toBuilder() {
return new AutoValue_<YourClass>.Builder(this);
}
With given
AutoParcel generates
Which leads to compile errors