I am using the android:onClick atribute in some of my .xml layout files for my android application, but ProGuard is removing these methods from my code when it runs
android:onClick
An a bit more greedy approach that should keep all "onClick" methods:
-keepclassmembers class * { public void * (android.view.View); }
==> so basically every public method that has an Android View as the only Paramater should survive ProGuard then.