I have an app that uses ActiveAndroid, a database ORM library, that relies on annotations.
@Table(name=\"test\") public class DatabaseItem extends ActiveReco
Column and Table aren't existing java class file attributes. You'll at least have to specify
Column
Table
-keepattributes *Annotation*
Cfr. the ProGuard manual.