Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Reading the docs on proguard . . . android docs

I'm supposed to have a ProGuard.cfg as it says... "When you create an Android project, a proguard.cfg file is automatically generated in the root directory of the project. "

If I google the issue there are answers all over the place most of them saying to modify a file that starts with a warning not to modify the file.

Are the docs out of date? How to I get this enabled for release builds? thanks, Gary

share|improve this question

1 Answer

up vote 2 down vote accepted

If you're using ADT 17 or newer, the documentation is slightly inaccurate. The generated file is proguard-project.txt and will be in the root directory of your project.

To enable Proguard, you will need to ignore the "do not modify" warning in project.properties and uncomment the following line:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

The Android toolchain will sometimes make changes to project.properties, but your Proguard path will be preserved.

share|improve this answer
Thanks. How can I examine my release .apk to tell if ProGuard did it's job? – user1058647 Jan 25 at 16:06
Proguard produces a set of .txt files (e.g., usage.txt) in your project directory that tell you which files were removed, which ones were left untouched, etc. There's some helpful verification info in this post: stackoverflow.com/questions/7153048/… – acj Jan 25 at 16:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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