Ok, I'm building an android project with ant. I have built the project hundreds of times without an issue, but all of a sudden Ant is playing up, and I have no idea why (I haven't updated it in the last half hour that I have been building my project.)
It seems to be this javac statement:
<javac srcdir="./" classpath="../external-deps/OUYA/ouya-sdk.jar" />
When I remove it, it builds fine.
The error I'm getting is :
warning: 'includeantruntime' was not set defaulting to build.sysclasspath=last; set to false for repeatable builds
I have however set the includeantruntime value to false, and true , however when I do so it seems like ant is ignoring my Android libraries by throwing out this error constantly:
error: package android.content does not exist
error: package android.hardware.input does not exist
error: package android.util does not exist
etc.
So, I have no clue what's going on. Again, I haven't changed any configuration at all, it just sprung up on me.
I'm on a 32bit Ubuntu 13 machine. I have been playing with git, but I have checked all my files from a non git backup, and the files are identical.
Thanks for your time.
Here is my build.xml : http://pastebin.com/H5019R6E