Skip to content Skip to sidebar Skip to footer

How To Use Proguard.config Setting In Project.properties File?

I use eclipse and I guess ant building system. In my project root i have a project.properties file which contains proguard.config setting. This setting is said in sdk examples to e

Solution 1:

In lack of better answer....

Via a completely unrelated google search I found by coincidence this:

http://tools.android.com/recent/proguardimprovements

As of ADT 17, the proguard.config property refers to a path instead, so you can specify as many configuration files as you want. These are all joined together by ProGuard.

...

Note that ProGuard typically doesn't let you subtract flags, so if you disagree with one of the default flags, you'll need to copy the global configuration into your own files and remove the lines you want to disable. One such flag you might want to consider is the -dontoptimize

Still very vague.

flag.

Post a Comment for "How To Use Proguard.config Setting In Project.properties File?"