Skip to content

blank white screen on android 6.0 #211

Closed
@jango-fx

Description

@jango-fx

i'm trying to get a simple test sketch to run on Marshmallow. But all i get is a blank white screen. The same goes for any other example sketch.

i'm on

  • OS X 10.11.4
  • javac 1.8.0_92
  • Android 6.0
  • Motorola XT1068
  • Processing 3.0.2
  • Android SDK: API 6.0 (23)

i don't get any errors. except for those warnings. and i don't seem to get any feedback from println(); either.

The import processing.data is never used
The import processing.event is never used
The import processing.opengl is never used
The import java.util.HashMap is never used
The import java.util.ArrayList is never used
The import java.io.File is never used
The import java.io.BufferedReader is never used
The import java.io.PrintWriter is never used
The import java.io.InputStream is never used
The import java.io.OutputStream is never used
The import java.io.IOException is never used

my code is really just a super basic test sketch:

void setup()
{
  background(0, 0, 255);
  rectMode(CENTER);
}

void draw()
{
  background(0, 255, 0);
  fill(255, 0, 0);
  rect(width/2, height/2, 50, 50, 50);
  println("i'm alive");
}

i'm out of ideas...

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions