I am a newbie to Android development. From the past 2 days i have stuck 
into a problem.

I'm using an Interface as shown below,

    public interface Interface1 {
       void fun1(Integer EmployeId);
    }

Progaurd-rules.pro

    -keepparameternames

    -keep public interface packagename.classname$Interface1
    -keepclassmembers interface packagename.classname$Interface1 {
      *;
     }

After code build, the interface changed as below,

     public interface Interface1 {
       void fun1(Integer var1);
      }


I want to preserve the variable name 'EmployeId' with out being obfuscate. 
Is it possible to achieve this. 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/cddc40a3-19f3-4ccd-9b4c-508869b18e22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to