I'm using PROGUARD in my application. when I decompile the APK, I still see the original names of the method parameters and also the local variables that were declared inside the method body.
I was trying to use this rule:
-keepattributes !LocalVariableTable,!LocalVariableTypeTable
but still, when I decompile the code, I still see the parameters and the local variables.