HGamble
HGamble

Reputation: 435

Error message running Processing app on Android

I'm trying to run a simple processing app on my Android. The program is below. Nothing complicated - I'm just trying to figure out how to get my processing programs to run on my phone.

void setup(){
}

void draw(){
  background(0);
  rect(mouseX, mouseY, 100, 100);
}

Could somebody please help me figure out why it isn't working. Thanks. This is the error message I get:

[taskdef] Could not load definitions from resource anttasks.properties. It could not be found. [taskdef] Could not load definitions from resource emma_ant.properties. It could not be found.

-set-mode-check:

-set-debug-files:

-check-env:

BUILD FAILED C:\Program Files (x86)\Android\android-sdk\tools\ant\build.xml:396: Problem: failed to create task or type checkenv Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been declared. Action: Check that any / declarations have taken place.

Upvotes: 0

Views: 315

Answers (1)

Dchris
Dchris

Reputation: 3067

To summarize, you need to take care of the below:

1)Choose android mode

2)Check device connectivity from Processing

3)Check if you have downloaded the correct API

4)Check SDK path from Processing

5)Check your environment variables

Upvotes: 2

Related Questions