google / auto

A collection of source code generators for Java.
Apache License 2.0
10.43k stars 1.2k forks source link

AutoValue 1.3 Not Consuming Extensions #340

Closed naturalwarren closed 8 years ago

naturalwarren commented 8 years ago

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?

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
naturalwarren commented 8 years ago

This could be because ryanharter's extension hasn't picked up 1.3-SNAPSHOT.