MicroOrm ProGuard rules

MicroOrm – a library for creating Data Access Objects from Android Cursors and converting them back into ContentValues.

ProGuard rules for MicroOrm

ProGuard removes calls to unused classes and methods. ProGuard obfuscates the remaining classes, fields, and methods with short names. Specify the next rules in proguard-rules.pro configuration file.

-keepclasseswithmembers,allowobfuscation class * {
     (...);
     @org.chalup.microorm.annotations.Column ;
}

-keepclasseswithmembers,allowobfuscation class * {
     (...);
     @org.chalup.microorm.annotations.Embedded ;
}

-keepattributes *Annotation*

For more information about please see MicroOrm website.

Related ProGuard rules

Static Gson ProGuard rules

Popular ProGuard rules