I run the standard ant script build.xml that is created when the command runs android create project. To verify that mine is local.propertiesinstalled correctly, I added a task at the beginning of the build.xmlscript to run the command:
android update project -p .
Now I get the following message every time I run an ant script that compresses my file build.xmland creates the file proguard.cfg!
The build.xml file is too old and needs updating
So, I moved the ant script to another file that will not be dumped.
Is there a way to run a command android update project -p .that is not clobber build.xmland create proguard.cfg?
source
share