Running emulator on Processing in Android mode
in
Android Processing
•
2 years ago
I have followed all of the instructions here:
http://wiki.processing.org/w/Android. I installed all of the packages inside of the android SDK... Changed mode in processing to android. I put the following below into processing and clicked to run emulator. I get this message: "An error occured while running 'android create avd'. The default android emulator could not be set up... " Also says that I may have not installed SDK correctly.. I installed all packages.. what am I missing??
Test code:
void setup() {
size(480,800);
smooth();
noStroke();
fill(255);
rectMode(CENTER); //This sets all rectangles to draw from the center point
};
void draw() {
background(#FF9900);
rect(width/2, height/2, 150, 150);
};
2