I have seen many posts about how to obfuscate an Android application (.apk file) using ProGuard in Eclipse. Also see http://developer.android.com/guide/developing/tools/proguard.html:

"When you build your application in release mode, either by running ant release or by using the Export Wizard in Eclipse, the build system automatically checks to see if the proguard.config property is set. If it is, ProGuard automatically processes the application's bytecode before packaging everything into an .apk file."

But in case of exporting an Android project in a .jar file using Eclipse Export Wizard, following the described steps (of creating a file proguard.cfg, configuring proguard.config property to proguard.cfg in the file default.properties, using Export Wizard etc.) does not seem to work - I see no obfuscation of class names, etc. in the resulting jar file. I also have the following settings in my proguard.cfg file, but I don't see any output files in my project directory or in the proguard directory (that directory is not even created).

-dump class_files.txt 
-printseeds seeds.txt 
-printusage unused.txt 
-printmapping mapping.txt

I have even created a file project.properties in my project directory with the following line but that did not seem to entice ProGuard into action:

proguard.config=proguard.cfg

There are no activities defined in this project. I am using Android 2.3.1 and Eclipse Galileo 3.5.2 on Windows. Same results with Android 3.0. Seems like the obfuscation step has to be somehow interjected explicitly in the Eclipse Export Wizard. I will appreciate any help or insight. Thanks.

link|improve this question
feedback

2 Answers

The way to invoke ProGuard is fairly straightforward:

  1. Add the line proguard.config=proguard.cfg to project.properties
  2. Export the application package

A default proguard.cfg file should have been automatically created by the new project wizard.

link|improve this answer
As mentioned, I did that. Did not work. – user1040716 Nov 11 '11 at 3:58
@user1040716 - you mention creating proguard.cfg. That should have been created for you automatically when you set up the project. If it isn't there, perhaps the project is not configured properly. Try with a brand new Android project. This should work out of the box (once you add the line to project.properties). Make sure your SDK tools are up to date. – Ted Hopp Nov 11 '11 at 4:01
I just now created a brand new project under Android 3.0. Copied src files from the old project. proguard.cfg file was automatically generated but project.properties was not auto-generated. So first I added the line 'proguard.config=proguard.cfg' in default.properties. Did the export of Java JAR file. No obfuscation noticed. Then I created a local file project.properties and added the line. Then did the export of Java JAR file. Again, no obfuscation noticed. If I 'Export Android Application' then it creates an .apk file. But I want an obfuscated .jar file. Thanks. – user1040716 Nov 11 '11 at 5:20
The idea is for this .jar file with obfuscated code to be used in other Android projects using 'Add External Jars...' option under Java Build Path/Libraries. – user1040716 Nov 11 '11 at 5:28
I think you'll have to run ProGuard outside of Eclipse for this (or at least outside the Android build process). The Android build process only invokes ProGuard when exporting .apk files. – Ted Hopp Nov 11 '11 at 16:48
show 2 more comments
feedback

Do not obfuscated your pure Java Jar. Skip that phase completely while producing the Jar (whether manually in Eclipse or via Ant build from command line).

Instead, setup and perform proper obfuscation in the client project, the one using the Jar, where you add the library as external Jar. Proguard will be able to obfuscate code within the Jar too.

I stumbled upon this issue, and ended up successfully as I described here.

link|improve this answer
Well, I would like to distribute the library (.jar file) with obfuscated code; others will use my library in their client projects. So I need to obfuscate my pure Java Jar before distributing. I have ended up running ProGuard outside Eclipse as suggested by Ted Hopp. – user1040716 Jan 20 at 2:33
a-ha. Sorry, my head must have skipped that! – superjos Jan 20 at 11:12
feedback

Your Answer

 
or
required, but never shown

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