Application starts twice or more
in
Android Processing
•
1 year ago
void setup()
{
size(320, 240);
orientation(LANDSCAPE);
println("STARTING");
}
I use this and the program starts, stops, and starts again.
Output:
Starting sketch on HT06WHJ02272
This size() method is ignored on Android.
See
http://wiki.processing.org/w/Android for more information.
This size() method is ignored on Android.
See
http://wiki.processing.org/w/Android for more information.
STARTING
STARTING
Is there something I'm missing to make it only start one time?
There is other code to the above, but if I only have,
void setup() {
size(320,240);
orientation(PORTRAIT);
println("STARTING");
}
in a sketch it will start 3 separate times.
Output:
Starting sketch on HT06WHJ02272
This size() method is ignored on Android.
See
http://wiki.processing.org/w/Android for more information.
This size() method is ignored on Android.
See
http://wiki.processing.org/w/Android for more information.
This size() method is ignored on Android.
See
http://wiki.processing.org/w/Android for more information.
STARTING
STARTING
STARTING
1