Has anyone tried using both AutoValue and ActiveAndroid (or Ollie) on the same class?
Right now I am trying to use a library called ActiveAndroid to save data to the sqlite database. The library is structured by adding annotation, @Column, for each member variable. The problem is using ActiveAndroid and AutoValue on the same class. With AutoValue, I'm not suppose to add member variables since the apt will created them for me. This poses a problem for me because I won't be able to add @Column annotation to the member variable since it doesn't exist yet. So I was wondering anyone ran into this problem and if there is a workaround for it.