How should I use proguard with ormlite library on Android?
Trying this:
-keep class com.j256.** -keepclassmembers class com.j256.** -keep enum com.j2
I've came up with such solution (maybe will work for somebody too).
Made such changes to proguard.cfg:
proguard.cfg
Added -dontobfuscate option
-dontobfuscate
Appended ,!code/allocation/variable to -optimization option
,!code/allocation/variable
-optimization
APK file size using such configuration reduced from 580 kB to 250 kB.
Though, no obfuscation is performed.