My Android development process is building and debugging my application in eclipse, and when I am ready to publish, I create a signed, confused (with proguard) apk by executing the "ant release" from the shell.
Is it possible to create a signed proguard release from eclipse? I am using eclipse indigo for windows with version 13 ADK
Yes. When you enable ProGuard by adding an entry proguard.config=proguard.cfgto project.properties, Eclipse will confuse your code when exporting a signed package. More details here .
proguard.config=proguard.cfg
project.properties
By the way, you should upgrade to the latest ADT (15).