Proguard Obfuscation for Android App in Eclipse problem
I'm using the android 2.3.3 sdk. I have added the proguard.config=proguard.cfg line to default.properties in my project. I have ran the Export Wizard in Eclipse successfully, however the dump, mapping, seeds and usage file have not been created. Could you tell me where does eclipse output these files, they ar开发者_开发问答e not in the root or the bin folder of my project. Am i missing something? Thanks
Did you add:
-dump proguard/class_files.txt
-printseeds proguard/seeds.txt
-printusage proguard/unused.txt
-printmapping proguard/mapping.txt
to the proguard.cfg?
The output should show in the directory
<project>/proguard/
In all projects where I used proguard, the proguard output files go to a directory named "proguard" at the project root
精彩评论