I added the following line in my proguard config:
-keep class com.mypackage.** {*;}
But now proguard doesn't remove my class com.mypackage.BuildConfig.class
from the result. And I want it to be removed.
How can I exclude a given class from being kept?
Thanks