Now my class Person doesn't compile. I'm using ryanharter's Parcelable extension. Any suggestions?
Person.java:8: error: Extension com.ryanharter.auto.value.parcel.AutoValueParcelExtension wants to consume a property that does not exist: writeToParcel
public abstract class Person implements Parcelable { }
^
warning: Abstract method is neither a property getter nor a Builder converter, and no extension consumed it
I bumped my project from Autovalue 1.2 to 1.3-SNAPSHOT to pickup the fix for #286.
compile 'com.google.auto.value:auto-value:1.3-SNAPSHOT'
Now my class Person doesn't compile. I'm using ryanharter's Parcelable extension. Any suggestions?