Since today, Processing for Android doesn't show me readable error messages anymore.
I just get this:
BUILD FAILED
C:\Program Files\Android\android-sdk\tools\ant\build.xml:651: The following error occurred while executing this line:
C:\Program Files\Android\android-sdk\tools\ant\build.xml:672: Compile failed; see the compiler error output for details.
I can compile and run working apps on my phone, but if I for example put a call to a non-existing method
foo(); somewhere, it just fails at build without any explanation.
Example that works fine:
- void setup()
- {
- size(displayWidth, displayHeight);
- orientation(PORTRAIT);
- }
- void draw()
- {
- text("hello world",10,10);
- }
Example that gives build error, without telling me where to look.
- void setup()
- {
- size(displayWidth, displayHeight);
- orientation(PORTRAIT);
- foo();
- }
- void draw()
- {
- text("hello world",10,10);
- }
1