Upgraded to 2.3, now ant builds don't include the jars in my libs directory

android, android-sdk-2.3

Solution

The Ant build system now requires Ant 1.8+ Unfortunately it "works" (broken) with 1.7 because we rely on a new behavior in 1.8, not a new task or attribute that would break 1.7

Problem

I've been doing all my builds using ant on the command line (Ubuntu 10.04). I loaded up the 2.3 SDK and made the necessary path changed (platform-tools). Now my builds don't include the jars in my libs directory. Any thoughts on what I need to change?

Original source