Hi,
I am getting a strange errors when compiling sketches for Android. Because if I compile very simple sketches,like the one underneath ,everything works well:
void setup() { size(400, 400, P2D); background(255, 0, 0); fill(255, 150); }
void draw() {
ellipse(mouseX, mouseY, 100, 100);
}
But, if I try to compile any sketch that has more elements I get the "Error from inside the Android Tools".
xml:892: The following error occurred while executing this line: /development/android-sdk-macosx/tools/ant/build.xml:894: The following error occurred while executing this line: /development/android-sdk-macosx/tools/ant/build.xml:906: The following error occurred while executing this line: /development/android-sdk-macosx/tools/ant/build.xml:284: null returned: 2
The same SDK I am sing in Processing is working perfectly on Eclipse.
Any clues?
Thank you,