I made the mistake of upgrading eclipse today and now can't get my a new Android project to get going.

I get the message Proguard.cfg (the file can't be found).

Where is this thing I can't seem to find it? Is it possible to get rid of it I don't need Obfuscation in this project...

Thanks

link|improve this question
feedback

4 Answers

up vote 10 down vote accepted

If you really don't need Proguard to obfuscate your release builds, you can remove the following line from the default.properties file in your project root folder:

proguard.config=proguard.cfg

If you want a proguard.cfg template, you can create a new Android project from scratch with Eclipse's project wizard, then copy proguard.cfg from the new project over to the previous one.

link|improve this answer
3  
If you are working from the command line, rather than Eclipse, run android update project on the project to create the proguard.cfg file. – CommonsWare Dec 14 '10 at 23:02
Thanks Julio; It never created the default properties file either, so I switched back to version 1.5 the proguard file appeared. Looks like some kind of bug version 2.3 upgrade...I will try as u suggest. – Tantalus Dec 14 '10 at 23:22
feedback

I just experienced the same problem.

You need to update your SDK tools to current version.

In Eclipse go into your Android SDK and AVD Manager. Select Installed Packages in the left hand tab. Click Update All. Select the SDK tools latest version. Click Install.

After it's done you should have the Proguard.cfg file in your tools/lib/ directory.

link|improve this answer
I updated my SDK to version 16 and proguard.cfg is still nowhere to be found, even after a successful signed release export. Any idea why? and how to fix? – Bill The Ape Jan 6 at 2:58
Never mind. It turns out that I should have created one myself. – Bill The Ape Jan 6 at 3:16
feedback

If you need to create the proguard.cfg, here is an example:

http://www.stanford.edu/~aigeanta/Android/proguard.cfg

If you don't want to obfuscate at all just remove the fallowing line from default.properties at the root of your project:

proguard.config=proguard.cfg (ERASE THIS LINE)

Enjoy, Adrian.

link|improve this answer
feedback

cp /android-sdk/tools/proguard/examples/android.pro /android-sdk/tools/lib/proguard.cfg

link|improve this answer
This is the solution that worked out for me. – Vincent Vettukal May 21 at 22:16
feedback

Your Answer

 
or
required, but never shown

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