I need to prevent Proguard from obfuscating any classes from the package com.foo.*.

I have tried:

-keep com.foo.** {
    <fields>;
    <methods>;
    <constructors>;
}

But proguard says :

Error: Unexpected keyword 'com.sun.foo.**' in line 32 of file 'obfuscationConfig.pro', included from argument number 1

I get a similar error if I try keep name com.foo** or keep * com.foo.**.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Try to use the following:

-keep class com.foo.** {
  public protected private *;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.