sbt-android , proguardConfig :
proguardConfig in Android := List("-dontobfuscate",
"-dontoptimize",
"-renamesourcefileattribute SourceFile",
"-keepattributes SourceFile,LineNumberTable",
"-verbose",
"-flattenpackagehierarchy",
"-dontusemixedcaseclassnames",
"-dontpreverify",
"-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*,!code/allocation/variable",
"-keepattributes *Annotation*",
"-dontnote android.annotation.**",
"-dontwarn android.support.**",
"-dontnote android.support.**",
"-dontnote scala.ScalaObject",
"-dontnote org.xml.sax.EntityResolver",
"-dontnote scala.concurrent.forkjoin.**",
"-dontwarn scala.beans.ScalaBeanInfo",
"-dontwarn scala.concurrent.**",
"-dontnote scala.reflect.**",
"-dontwarn scala.reflect.**",
"-dontwarn scala.sys.process.package$",
"-dontwarn **$$anonfun$*",
"-dontwarn scala.collection.immutable.RedBlack$Empty",
"-dontwarn scala.tools.**,plugintemplate.**",
"-keep class scala.collection.SeqLike { public java.lang.String toString(); }",
"-keep class android.support.v7.view.menu.ListMenuItemView { <init>(...); }",
...
)